From d2be0527e97fabf2b01bb703177b20691d41083b Mon Sep 17 00:00:00 2001 From: Pedro Castro Date: Sat, 11 Jul 2026 21:15:33 -0300 Subject: [PATCH 1/2] Add `word` and `reserved` field --- grammar.js | 46 +- src/grammar.json | 112 +- src/parser.c | 380859 ++++++++++++++++++++------------------------ 3 files changed, 172641 insertions(+), 208376 deletions(-) diff --git a/grammar.js b/grammar.js index 5949c7e..61388b3 100644 --- a/grammar.js +++ b/grammar.js @@ -26,6 +26,36 @@ export default grammar({ /[\s\uFEFF\u2060\u200B\u00A0]/, ], + word: ($) => $._identifier, + + reserved: { + global: ($) => [ + "and", + "as", + "constraint", + "else", + "exception", + "external", + "false", + "for", + "if", + "in", + "include", + "let", + "module", + "mutable", + "of", + "open", + "rec", + "switch", + "true", + "try", + "type", + "when", + "while", + ], + }, + supertypes: ($) => [ $.statement, $.declaration, @@ -1120,11 +1150,7 @@ export default grammar({ ), _extension_expression_payload: ($) => - seq( - "(", - choice($._one_or_more_statements, $.type_annotation), - ")", - ), + seq("(", choice($._one_or_more_statements, $.type_annotation), ")"), variant: ($) => prec.right( @@ -1235,14 +1261,12 @@ export default grammar({ ), type_identifier: ($) => - choice(/[a-z_'][a-zA-Z0-9_']*/, $._escape_identifier), + choice($._identifier, /'[a-zA-Z0-9_']*/, $._escape_identifier), + + _identifier: (_) => /[a-z_][a-zA-Z0-9_']*/, value_identifier: ($) => - choice( - /[a-z_][a-zA-Z0-9_']*/, - $._reserved_identifier, - $._escape_identifier, - ), + choice($._identifier, $._reserved_identifier, $._escape_identifier), _escape_identifier: ($) => token(seq('\\"', /[^"]+/, '"')), diff --git a/src/grammar.json b/src/grammar.json index 91ef8ab..8ec8e34 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,6 +1,7 @@ { "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "rescript", + "word": "_identifier", "rules": { "source_file": { "type": "REPEAT", @@ -7910,9 +7911,13 @@ "type_identifier": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "_identifier" + }, { "type": "PATTERN", - "value": "[a-z_'][a-zA-Z0-9_']*" + "value": "'[a-zA-Z0-9_']*" }, { "type": "SYMBOL", @@ -7920,12 +7925,16 @@ } ] }, + "_identifier": { + "type": "PATTERN", + "value": "[a-z_][a-zA-Z0-9_']*" + }, "value_identifier": { "type": "CHOICE", "members": [ { - "type": "PATTERN", - "value": "[a-z_][a-zA-Z0-9_']*" + "type": "SYMBOL", + "name": "_identifier" }, { "type": "SYMBOL", @@ -9513,5 +9522,100 @@ "module_expression", "module_primary_expression" ], - "reserved": {} + "reserved": { + "global": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "STRING", + "value": "constraint" + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "STRING", + "value": "exception" + }, + { + "type": "STRING", + "value": "external" + }, + { + "type": "STRING", + "value": "false" + }, + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "if" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "include" + }, + { + "type": "STRING", + "value": "let" + }, + { + "type": "STRING", + "value": "module" + }, + { + "type": "STRING", + "value": "mutable" + }, + { + "type": "STRING", + "value": "of" + }, + { + "type": "STRING", + "value": "open" + }, + { + "type": "STRING", + "value": "rec" + }, + { + "type": "STRING", + "value": "switch" + }, + { + "type": "STRING", + "value": "true" + }, + { + "type": "STRING", + "value": "try" + }, + { + "type": "STRING", + "value": "type" + }, + { + "type": "STRING", + "value": "when" + }, + { + "type": "STRING", + "value": "while" + } + ] + } } \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index 0c45d69..ccaa69a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,120 +6,112 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5089 -#define LARGE_STATE_COUNT 786 +#define STATE_COUNT 4406 +#define LARGE_STATE_COUNT 750 #define SYMBOL_COUNT 349 #define ALIAS_COUNT 3 #define TOKEN_COUNT 123 #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 32 #define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define MAX_RESERVED_WORD_SET_SIZE 0 +#define MAX_RESERVED_WORD_SET_SIZE 23 #define PRODUCTION_ID_COUNT 56 #define SUPERTYPE_COUNT 7 enum ts_symbol_identifiers { - anon_sym_SEMI = 1, - sym_line_comment = 2, - anon_sym_LBRACE = 3, - anon_sym_RBRACE = 4, - anon_sym_open = 5, - anon_sym_BANG = 6, - anon_sym_include = 7, - anon_sym_LPAREN = 8, - anon_sym_RPAREN = 9, - anon_sym_COLON = 10, - anon_sym_EQ = 11, - anon_sym_await = 12, - anon_sym_module = 13, - anon_sym_rec = 14, - anon_sym_type = 15, - anon_sym_and = 16, - anon_sym_unpack = 17, - anon_sym_EQ_GT = 18, - anon_sym_COMMA = 19, - anon_sym_external = 20, - anon_sym_exception = 21, - anon_sym_export = 22, - anon_sym_PLUS_EQ = 23, - anon_sym_private = 24, - anon_sym_DOT_DOT = 25, - anon_sym_LT = 26, - anon_sym_PLUS = 27, - anon_sym_DASH = 28, - anon_sym_GT = 29, - anon_sym_DOT = 30, - anon_sym_constraint = 31, - anon_sym_PIPE = 32, - anon_sym_DOT_DOT_DOT = 33, - anon_sym_LBRACK = 34, - anon_sym_LBRACK_GT = 35, - anon_sym_LBRACK_LT = 36, - anon_sym_RBRACK = 37, - anon_sym_mutable = 38, - anon_sym_QMARK = 39, - anon_sym_let = 40, - anon_sym_async = 41, - anon_sym_if = 42, - anon_sym_else = 43, - anon_sym_switch = 44, - anon_sym_when = 45, - anon_sym_POUND = 46, - anon_sym_try = 47, - anon_sym_catch = 48, - anon_sym_as = 49, - anon_sym_assert = 50, - anon_sym_DASH_GT = 51, - anon_sym_PIPE_GT = 52, - anon_sym_TILDE = 53, - anon_sym_lazy = 54, - anon_sym_SLASH = 55, - anon_sym_COLON_EQ = 56, - anon_sym_for = 57, - anon_sym_in = 58, - anon_sym_to = 59, - anon_sym_downto = 60, - anon_sym_while = 61, - anon_sym_AMP_AMP_AMP = 62, - anon_sym_AMP_AMP = 63, - anon_sym_PIPE_PIPE_PIPE = 64, - anon_sym_PIPE_PIPE = 65, - anon_sym_CARET_CARET_CARET = 66, - anon_sym_PLUS_PLUS = 67, - anon_sym_PLUS_DOT = 68, - anon_sym_DASH_DOT = 69, - anon_sym_STAR = 70, - anon_sym_STAR_DOT = 71, - anon_sym_PERCENT = 72, - anon_sym_STAR_STAR = 73, - anon_sym_SLASH_DOT = 74, - anon_sym_LT_LT = 75, - anon_sym_GT_GT_GT = 76, - anon_sym_GT_GT = 77, - anon_sym_LT_EQ = 78, - anon_sym_EQ_EQ = 79, - anon_sym_EQ_EQ_EQ = 80, - anon_sym_BANG_EQ = 81, - anon_sym_BANG_EQ_EQ = 82, - anon_sym_GT_EQ = 83, - anon_sym_COLON_GT = 84, - anon_sym_TILDE_TILDE_TILDE = 85, - anon_sym_of = 86, - anon_sym_with = 87, - aux_sym_variant_identifier_token1 = 88, - aux_sym_polyvar_identifier_token1 = 89, - anon_sym_BSLASH = 90, - aux_sym_type_identifier_token1 = 91, - aux_sym_value_identifier_token1 = 92, + sym__identifier = 1, + anon_sym_SEMI = 2, + sym_line_comment = 3, + anon_sym_LBRACE = 4, + anon_sym_RBRACE = 5, + anon_sym_open = 6, + anon_sym_BANG = 7, + anon_sym_include = 8, + anon_sym_LPAREN = 9, + anon_sym_RPAREN = 10, + anon_sym_COLON = 11, + anon_sym_EQ = 12, + anon_sym_await = 13, + anon_sym_module = 14, + anon_sym_rec = 15, + anon_sym_type = 16, + anon_sym_and = 17, + anon_sym_unpack = 18, + anon_sym_EQ_GT = 19, + anon_sym_COMMA = 20, + anon_sym_external = 21, + anon_sym_exception = 22, + anon_sym_export = 23, + anon_sym_PLUS_EQ = 24, + anon_sym_private = 25, + anon_sym_DOT_DOT = 26, + anon_sym_LT = 27, + anon_sym_PLUS = 28, + anon_sym_DASH = 29, + anon_sym_GT = 30, + anon_sym_DOT = 31, + anon_sym_constraint = 32, + anon_sym_PIPE = 33, + anon_sym_DOT_DOT_DOT = 34, + anon_sym_LBRACK = 35, + anon_sym_LBRACK_GT = 36, + anon_sym_LBRACK_LT = 37, + anon_sym_RBRACK = 38, + anon_sym_mutable = 39, + anon_sym_QMARK = 40, + anon_sym_let = 41, + anon_sym_async = 42, + anon_sym_if = 43, + anon_sym_else = 44, + anon_sym_switch = 45, + anon_sym_when = 46, + anon_sym_POUND = 47, + anon_sym_try = 48, + anon_sym_catch = 49, + anon_sym_as = 50, + anon_sym_assert = 51, + anon_sym_DASH_GT = 52, + anon_sym_PIPE_GT = 53, + anon_sym_TILDE = 54, + anon_sym_lazy = 55, + anon_sym_SLASH = 56, + anon_sym_COLON_EQ = 57, + anon_sym_for = 58, + anon_sym_in = 59, + anon_sym_to = 60, + anon_sym_downto = 61, + anon_sym_while = 62, + anon_sym_AMP_AMP_AMP = 63, + anon_sym_AMP_AMP = 64, + anon_sym_PIPE_PIPE_PIPE = 65, + anon_sym_PIPE_PIPE = 66, + anon_sym_CARET_CARET_CARET = 67, + anon_sym_PLUS_PLUS = 68, + anon_sym_PLUS_DOT = 69, + anon_sym_DASH_DOT = 70, + anon_sym_STAR = 71, + anon_sym_STAR_DOT = 72, + anon_sym_PERCENT = 73, + anon_sym_STAR_STAR = 74, + anon_sym_SLASH_DOT = 75, + anon_sym_LT_LT = 76, + anon_sym_GT_GT_GT = 77, + anon_sym_GT_GT = 78, + anon_sym_LT_EQ = 79, + anon_sym_EQ_EQ = 80, + anon_sym_EQ_EQ_EQ = 81, + anon_sym_BANG_EQ = 82, + anon_sym_BANG_EQ_EQ = 83, + anon_sym_GT_EQ = 84, + anon_sym_COLON_GT = 85, + anon_sym_TILDE_TILDE_TILDE = 86, + anon_sym_of = 87, + anon_sym_with = 88, + aux_sym_variant_identifier_token1 = 89, + aux_sym_polyvar_identifier_token1 = 90, + anon_sym_BSLASH = 91, + aux_sym_type_identifier_token1 = 92, sym__escape_identifier = 93, sym_extension_identifier = 94, anon_sym_SLASH2 = 95, @@ -383,6 +375,7 @@ enum ts_symbol_identifiers { static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", + [sym__identifier] = "_identifier", [anon_sym_SEMI] = ";", [sym_line_comment] = "line_comment", [anon_sym_LBRACE] = "{", @@ -474,7 +467,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_polyvar_identifier_token1] = "polyvar_identifier_token1", [anon_sym_BSLASH] = "\\", [aux_sym_type_identifier_token1] = "type_identifier_token1", - [aux_sym_value_identifier_token1] = "value_identifier_token1", [sym__escape_identifier] = "_escape_identifier", [sym_extension_identifier] = "extension_identifier", [anon_sym_SLASH2] = "/", @@ -738,6 +730,7 @@ static const char * const ts_symbol_names[] = { static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym__identifier] = sym__identifier, [anon_sym_SEMI] = anon_sym_SEMI, [sym_line_comment] = sym_line_comment, [anon_sym_LBRACE] = anon_sym_LBRACE, @@ -829,7 +822,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_polyvar_identifier_token1] = aux_sym_polyvar_identifier_token1, [anon_sym_BSLASH] = anon_sym_BSLASH, [aux_sym_type_identifier_token1] = aux_sym_type_identifier_token1, - [aux_sym_value_identifier_token1] = aux_sym_value_identifier_token1, [sym__escape_identifier] = sym__escape_identifier, [sym_extension_identifier] = sym_extension_identifier, [anon_sym_SLASH2] = anon_sym_SLASH, @@ -1096,6 +1088,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__identifier] = { + .visible = false, + .named = true, + }, [anon_sym_SEMI] = { .visible = true, .named = false, @@ -1460,10 +1456,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_value_identifier_token1] = { - .visible = false, - .named = false, - }, [sym__escape_identifier] = { .visible = false, .named = true, @@ -2841,761 +2833,761 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 2, - [5] = 2, - [6] = 6, + [5] = 5, + [6] = 2, [7] = 2, [8] = 2, [9] = 2, - [10] = 2, - [11] = 11, + [10] = 10, + [11] = 10, [12] = 12, - [13] = 11, + [13] = 13, [14] = 14, - [15] = 15, - [16] = 15, - [17] = 15, + [15] = 14, + [16] = 13, + [17] = 14, [18] = 14, - [19] = 15, + [19] = 13, [20] = 14, - [21] = 14, - [22] = 15, - [23] = 14, + [21] = 13, + [22] = 14, + [23] = 13, [24] = 14, - [25] = 15, + [25] = 13, [26] = 14, - [27] = 15, - [28] = 15, + [27] = 13, + [28] = 28, [29] = 29, [30] = 30, [31] = 31, - [32] = 32, - [33] = 32, - [34] = 32, - [35] = 32, - [36] = 32, - [37] = 32, - [38] = 38, - [39] = 38, - [40] = 38, - [41] = 38, - [42] = 38, - [43] = 38, - [44] = 38, - [45] = 38, - [46] = 38, + [32] = 31, + [33] = 31, + [34] = 31, + [35] = 31, + [36] = 36, + [37] = 36, + [38] = 36, + [39] = 36, + [40] = 36, + [41] = 41, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 45, + [46] = 46, [47] = 47, [48] = 48, - [49] = 49, + [49] = 48, [50] = 50, [51] = 51, - [52] = 52, - [53] = 53, - [54] = 54, - [55] = 55, - [56] = 55, + [52] = 51, + [53] = 51, + [54] = 51, + [55] = 51, + [56] = 56, [57] = 57, - [58] = 57, - [59] = 57, + [58] = 58, + [59] = 59, [60] = 57, - [61] = 57, - [62] = 57, - [63] = 63, - [64] = 63, - [65] = 65, - [66] = 66, - [67] = 67, - [68] = 65, - [69] = 63, - [70] = 67, - [71] = 65, - [72] = 63, - [73] = 66, - [74] = 67, - [75] = 65, - [76] = 66, - [77] = 66, - [78] = 66, - [79] = 67, - [80] = 63, - [81] = 65, - [82] = 66, - [83] = 67, - [84] = 63, - [85] = 67, - [86] = 65, - [87] = 87, - [88] = 88, - [89] = 87, - [90] = 90, - [91] = 90, - [92] = 87, - [93] = 88, - [94] = 88, - [95] = 90, - [96] = 90, - [97] = 87, - [98] = 87, - [99] = 88, - [100] = 88, - [101] = 90, - [102] = 88, - [103] = 90, - [104] = 87, - [105] = 105, - [106] = 106, - [107] = 106, - [108] = 108, + [61] = 58, + [62] = 59, + [63] = 56, + [64] = 59, + [65] = 57, + [66] = 58, + [67] = 59, + [68] = 56, + [69] = 56, + [70] = 57, + [71] = 58, + [72] = 59, + [73] = 56, + [74] = 57, + [75] = 58, + [76] = 76, + [77] = 76, + [78] = 76, + [79] = 79, + [80] = 79, + [81] = 79, + [82] = 76, + [83] = 83, + [84] = 79, + [85] = 76, + [86] = 83, + [87] = 83, + [88] = 83, + [89] = 83, + [90] = 79, + [91] = 91, + [92] = 92, + [93] = 93, + [94] = 92, + [95] = 91, + [96] = 96, + [97] = 97, + [98] = 96, + [99] = 92, + [100] = 96, + [101] = 101, + [102] = 91, + [103] = 92, + [104] = 91, + [105] = 96, + [106] = 91, + [107] = 96, + [108] = 92, [109] = 109, - [110] = 105, - [111] = 105, - [112] = 109, - [113] = 106, - [114] = 106, - [115] = 105, - [116] = 105, - [117] = 109, - [118] = 118, - [119] = 106, - [120] = 109, - [121] = 105, - [122] = 122, - [123] = 109, - [124] = 106, - [125] = 109, + [110] = 110, + [111] = 111, + [112] = 112, + [113] = 113, + [114] = 114, + [115] = 112, + [116] = 114, + [117] = 117, + [118] = 112, + [119] = 119, + [120] = 111, + [121] = 114, + [122] = 114, + [123] = 113, + [124] = 111, + [125] = 125, [126] = 126, - [127] = 127, - [128] = 128, - [129] = 129, - [130] = 130, - [131] = 131, - [132] = 132, - [133] = 133, - [134] = 134, - [135] = 128, - [136] = 130, - [137] = 130, - [138] = 132, - [139] = 131, - [140] = 134, - [141] = 133, - [142] = 132, - [143] = 134, - [144] = 130, - [145] = 128, - [146] = 146, - [147] = 131, - [148] = 128, - [149] = 131, + [127] = 113, + [128] = 125, + [129] = 125, + [130] = 126, + [131] = 126, + [132] = 112, + [133] = 113, + [134] = 125, + [135] = 111, + [136] = 111, + [137] = 137, + [138] = 125, + [139] = 126, + [140] = 140, + [141] = 126, + [142] = 142, + [143] = 113, + [144] = 112, + [145] = 142, + [146] = 114, + [147] = 147, + [148] = 148, + [149] = 149, [150] = 150, - [151] = 130, - [152] = 134, - [153] = 132, - [154] = 133, - [155] = 132, - [156] = 128, - [157] = 133, - [158] = 134, - [159] = 131, - [160] = 134, - [161] = 133, - [162] = 128, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 147, + [160] = 160, + [161] = 161, + [162] = 162, [163] = 163, - [164] = 163, - [165] = 130, - [166] = 166, - [167] = 131, - [168] = 132, - [169] = 133, - [170] = 170, - [171] = 171, - [172] = 172, - [173] = 173, - [174] = 174, - [175] = 170, + [164] = 164, + [165] = 165, + [166] = 149, + [167] = 150, + [168] = 153, + [169] = 154, + [170] = 157, + [171] = 158, + [172] = 147, + [173] = 161, + [174] = 162, + [175] = 165, [176] = 176, [177] = 177, [178] = 178, [179] = 179, [180] = 180, [181] = 181, - [182] = 182, - [183] = 183, - [184] = 184, - [185] = 185, - [186] = 186, - [187] = 187, - [188] = 188, - [189] = 171, - [190] = 174, - [191] = 170, - [192] = 176, - [193] = 177, - [194] = 178, - [195] = 179, - [196] = 180, - [197] = 181, - [198] = 182, - [199] = 183, - [200] = 184, - [201] = 185, - [202] = 186, - [203] = 187, - [204] = 188, - [205] = 171, - [206] = 174, - [207] = 170, - [208] = 176, - [209] = 177, - [210] = 178, - [211] = 179, - [212] = 180, - [213] = 181, - [214] = 182, - [215] = 183, - [216] = 184, - [217] = 185, - [218] = 186, - [219] = 187, - [220] = 188, - [221] = 171, - [222] = 174, - [223] = 170, - [224] = 176, - [225] = 177, - [226] = 178, - [227] = 179, - [228] = 180, - [229] = 181, - [230] = 182, - [231] = 183, - [232] = 184, - [233] = 185, - [234] = 186, - [235] = 187, - [236] = 188, - [237] = 171, - [238] = 174, - [239] = 170, - [240] = 176, - [241] = 177, - [242] = 178, - [243] = 179, - [244] = 180, - [245] = 181, - [246] = 182, - [247] = 183, - [248] = 184, - [249] = 185, - [250] = 186, - [251] = 187, - [252] = 188, - [253] = 171, - [254] = 174, - [255] = 170, - [256] = 176, - [257] = 177, - [258] = 178, - [259] = 179, - [260] = 180, - [261] = 181, - [262] = 182, - [263] = 183, - [264] = 184, - [265] = 185, - [266] = 186, - [267] = 187, - [268] = 188, - [269] = 171, - [270] = 270, - [271] = 271, - [272] = 272, + [182] = 163, + [183] = 164, + [184] = 164, + [185] = 149, + [186] = 150, + [187] = 153, + [188] = 154, + [189] = 157, + [190] = 158, + [191] = 147, + [192] = 161, + [193] = 162, + [194] = 165, + [195] = 176, + [196] = 177, + [197] = 178, + [198] = 179, + [199] = 180, + [200] = 181, + [201] = 163, + [202] = 164, + [203] = 149, + [204] = 150, + [205] = 153, + [206] = 154, + [207] = 157, + [208] = 158, + [209] = 147, + [210] = 161, + [211] = 162, + [212] = 165, + [213] = 176, + [214] = 177, + [215] = 178, + [216] = 179, + [217] = 180, + [218] = 181, + [219] = 149, + [220] = 150, + [221] = 153, + [222] = 154, + [223] = 157, + [224] = 158, + [225] = 147, + [226] = 161, + [227] = 162, + [228] = 165, + [229] = 176, + [230] = 177, + [231] = 178, + [232] = 179, + [233] = 180, + [234] = 181, + [235] = 149, + [236] = 150, + [237] = 153, + [238] = 154, + [239] = 157, + [240] = 158, + [241] = 147, + [242] = 161, + [243] = 162, + [244] = 165, + [245] = 176, + [246] = 177, + [247] = 178, + [248] = 179, + [249] = 180, + [250] = 181, + [251] = 251, + [252] = 252, + [253] = 176, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 163, + [258] = 255, + [259] = 259, + [260] = 177, + [261] = 149, + [262] = 150, + [263] = 153, + [264] = 154, + [265] = 157, + [266] = 158, + [267] = 147, + [268] = 161, + [269] = 162, + [270] = 165, + [271] = 178, + [272] = 177, [273] = 273, - [274] = 274, - [275] = 275, - [276] = 172, + [274] = 254, + [275] = 259, + [276] = 181, [277] = 277, [278] = 278, - [279] = 270, - [280] = 172, - [281] = 174, - [282] = 170, - [283] = 176, - [284] = 177, - [285] = 178, - [286] = 179, - [287] = 180, - [288] = 181, - [289] = 182, - [290] = 183, - [291] = 291, - [292] = 185, - [293] = 173, - [294] = 277, - [295] = 295, - [296] = 171, - [297] = 297, - [298] = 298, - [299] = 187, - [300] = 188, - [301] = 301, - [302] = 172, - [303] = 173, - [304] = 174, - [305] = 170, + [279] = 148, + [280] = 163, + [281] = 164, + [282] = 149, + [283] = 150, + [284] = 153, + [285] = 154, + [286] = 157, + [287] = 158, + [288] = 147, + [289] = 161, + [290] = 162, + [291] = 165, + [292] = 177, + [293] = 181, + [294] = 163, + [295] = 164, + [296] = 149, + [297] = 150, + [298] = 153, + [299] = 154, + [300] = 157, + [301] = 158, + [302] = 147, + [303] = 161, + [304] = 162, + [305] = 165, [306] = 176, [307] = 177, - [308] = 178, - [309] = 179, - [310] = 180, - [311] = 181, - [312] = 182, - [313] = 183, - [314] = 185, - [315] = 171, - [316] = 172, - [317] = 173, - [318] = 174, - [319] = 170, - [320] = 176, - [321] = 177, - [322] = 178, - [323] = 179, - [324] = 180, - [325] = 181, - [326] = 182, - [327] = 183, - [328] = 184, - [329] = 185, - [330] = 187, - [331] = 188, - [332] = 171, - [333] = 172, - [334] = 174, - [335] = 170, - [336] = 176, - [337] = 177, - [338] = 178, - [339] = 179, - [340] = 180, - [341] = 181, - [342] = 182, - [343] = 183, - [344] = 185, - [345] = 171, - [346] = 174, - [347] = 170, - [348] = 176, - [349] = 177, - [350] = 178, - [351] = 179, - [352] = 180, - [353] = 181, - [354] = 182, - [355] = 183, - [356] = 185, - [357] = 171, - [358] = 174, - [359] = 170, - [360] = 176, - [361] = 177, - [362] = 178, - [363] = 179, - [364] = 180, - [365] = 181, - [366] = 182, - [367] = 183, - [368] = 185, - [369] = 171, - [370] = 174, - [371] = 170, - [372] = 176, - [373] = 177, - [374] = 178, - [375] = 179, - [376] = 180, - [377] = 181, - [378] = 182, - [379] = 183, - [380] = 185, - [381] = 171, - [382] = 174, - [383] = 170, - [384] = 176, - [385] = 177, - [386] = 178, - [387] = 179, - [388] = 180, - [389] = 181, - [390] = 182, - [391] = 183, - [392] = 185, - [393] = 171, - [394] = 271, - [395] = 273, - [396] = 396, - [397] = 275, - [398] = 277, - [399] = 399, - [400] = 185, - [401] = 401, - [402] = 171, - [403] = 171, - [404] = 404, - [405] = 297, - [406] = 298, - [407] = 174, - [408] = 170, - [409] = 409, - [410] = 172, - [411] = 173, - [412] = 174, - [413] = 170, - [414] = 176, - [415] = 177, - [416] = 178, - [417] = 179, - [418] = 180, - [419] = 181, - [420] = 182, - [421] = 183, - [422] = 185, - [423] = 171, - [424] = 172, - [425] = 173, - [426] = 176, - [427] = 174, - [428] = 271, - [429] = 176, - [430] = 177, - [431] = 178, - [432] = 179, - [433] = 180, - [434] = 181, - [435] = 182, - [436] = 183, - [437] = 185, - [438] = 171, - [439] = 271, - [440] = 273, - [441] = 275, - [442] = 277, + [308] = 179, + [309] = 180, + [310] = 181, + [311] = 164, + [312] = 149, + [313] = 150, + [314] = 153, + [315] = 154, + [316] = 157, + [317] = 158, + [318] = 147, + [319] = 161, + [320] = 162, + [321] = 165, + [322] = 177, + [323] = 252, + [324] = 149, + [325] = 150, + [326] = 153, + [327] = 154, + [328] = 157, + [329] = 158, + [330] = 161, + [331] = 162, + [332] = 165, + [333] = 177, + [334] = 181, + [335] = 252, + [336] = 336, + [337] = 254, + [338] = 256, + [339] = 255, + [340] = 256, + [341] = 177, + [342] = 179, + [343] = 180, + [344] = 344, + [345] = 345, + [346] = 181, + [347] = 278, + [348] = 148, + [349] = 349, + [350] = 163, + [351] = 164, + [352] = 149, + [353] = 150, + [354] = 153, + [355] = 154, + [356] = 157, + [357] = 158, + [358] = 147, + [359] = 161, + [360] = 162, + [361] = 165, + [362] = 177, + [363] = 181, + [364] = 163, + [365] = 149, + [366] = 150, + [367] = 153, + [368] = 154, + [369] = 157, + [370] = 158, + [371] = 147, + [372] = 161, + [373] = 162, + [374] = 165, + [375] = 177, + [376] = 181, + [377] = 163, + [378] = 252, + [379] = 254, + [380] = 380, + [381] = 256, + [382] = 255, + [383] = 383, + [384] = 278, + [385] = 148, + [386] = 386, + [387] = 181, + [388] = 163, + [389] = 164, + [390] = 163, + [391] = 149, + [392] = 150, + [393] = 153, + [394] = 154, + [395] = 157, + [396] = 158, + [397] = 147, + [398] = 161, + [399] = 162, + [400] = 165, + [401] = 177, + [402] = 181, + [403] = 252, + [404] = 254, + [405] = 256, + [406] = 278, + [407] = 163, + [408] = 164, + [409] = 252, + [410] = 254, + [411] = 163, + [412] = 252, + [413] = 254, + [414] = 163, + [415] = 252, + [416] = 254, + [417] = 252, + [418] = 254, + [419] = 252, + [420] = 254, + [421] = 252, + [422] = 254, + [423] = 252, + [424] = 254, + [425] = 252, + [426] = 254, + [427] = 252, + [428] = 254, + [429] = 254, + [430] = 149, + [431] = 150, + [432] = 152, + [433] = 153, + [434] = 154, + [435] = 157, + [436] = 158, + [437] = 147, + [438] = 161, + [439] = 162, + [440] = 165, + [441] = 251, + [442] = 176, [443] = 177, [444] = 178, - [445] = 297, - [446] = 298, + [445] = 277, + [446] = 336, [447] = 179, [448] = 180, - [449] = 181, - [450] = 450, - [451] = 182, - [452] = 298, - [453] = 183, - [454] = 172, - [455] = 173, - [456] = 172, - [457] = 173, - [458] = 458, - [459] = 174, - [460] = 170, - [461] = 176, - [462] = 177, - [463] = 178, - [464] = 179, - [465] = 180, - [466] = 181, - [467] = 182, - [468] = 183, - [469] = 185, - [470] = 171, - [471] = 471, - [472] = 271, - [473] = 473, - [474] = 273, - [475] = 184, - [476] = 275, - [477] = 277, - [478] = 273, - [479] = 479, - [480] = 185, - [481] = 172, - [482] = 173, - [483] = 174, - [484] = 297, - [485] = 298, - [486] = 170, - [487] = 176, - [488] = 177, - [489] = 178, - [490] = 179, - [491] = 172, - [492] = 173, - [493] = 172, - [494] = 180, - [495] = 181, - [496] = 271, - [497] = 182, - [498] = 273, - [499] = 183, - [500] = 275, - [501] = 184, - [502] = 186, - [503] = 185, - [504] = 186, - [505] = 187, - [506] = 188, - [507] = 171, - [508] = 172, - [509] = 173, - [510] = 275, - [511] = 174, - [512] = 297, - [513] = 170, - [514] = 176, - [515] = 177, - [516] = 178, - [517] = 179, - [518] = 172, - [519] = 173, - [520] = 180, - [521] = 181, - [522] = 271, - [523] = 182, - [524] = 273, - [525] = 183, - [526] = 172, - [527] = 173, - [528] = 184, - [529] = 271, - [530] = 273, - [531] = 172, - [532] = 271, - [533] = 273, - [534] = 172, - [535] = 271, - [536] = 273, - [537] = 172, - [538] = 271, - [539] = 273, - [540] = 172, - [541] = 271, - [542] = 273, - [543] = 271, - [544] = 273, - [545] = 271, - [546] = 273, - [547] = 271, - [548] = 273, - [549] = 271, - [550] = 273, - [551] = 271, - [552] = 273, - [553] = 271, - [554] = 273, - [555] = 271, - [556] = 273, - [557] = 271, - [558] = 273, - [559] = 273, - [560] = 409, - [561] = 473, - [562] = 185, - [563] = 291, - [564] = 185, - [565] = 186, - [566] = 171, - [567] = 172, - [568] = 174, - [569] = 170, - [570] = 176, - [571] = 177, - [572] = 178, - [573] = 179, - [574] = 180, + [449] = 386, + [450] = 181, + [451] = 163, + [452] = 149, + [453] = 150, + [454] = 153, + [455] = 154, + [456] = 157, + [457] = 158, + [458] = 147, + [459] = 161, + [460] = 162, + [461] = 165, + [462] = 176, + [463] = 177, + [464] = 178, + [465] = 179, + [466] = 180, + [467] = 181, + [468] = 252, + [469] = 163, + [470] = 149, + [471] = 150, + [472] = 153, + [473] = 154, + [474] = 157, + [475] = 158, + [476] = 147, + [477] = 161, + [478] = 162, + [479] = 165, + [480] = 177, + [481] = 181, + [482] = 177, + [483] = 181, + [484] = 252, + [485] = 254, + [486] = 152, + [487] = 251, + [488] = 176, + [489] = 177, + [490] = 178, + [491] = 277, + [492] = 179, + [493] = 180, + [494] = 181, + [495] = 152, + [496] = 251, + [497] = 177, + [498] = 277, + [499] = 181, + [500] = 152, + [501] = 251, + [502] = 277, + [503] = 503, + [504] = 152, + [505] = 152, + [506] = 152, + [507] = 152, + [508] = 152, + [509] = 152, + [510] = 152, + [511] = 152, + [512] = 152, + [513] = 252, + [514] = 254, + [515] = 344, + [516] = 163, + [517] = 164, + [518] = 149, + [519] = 150, + [520] = 152, + [521] = 153, + [522] = 154, + [523] = 157, + [524] = 158, + [525] = 147, + [526] = 161, + [527] = 162, + [528] = 165, + [529] = 176, + [530] = 178, + [531] = 179, + [532] = 180, + [533] = 345, + [534] = 278, + [535] = 164, + [536] = 149, + [537] = 150, + [538] = 153, + [539] = 154, + [540] = 157, + [541] = 158, + [542] = 147, + [543] = 161, + [544] = 162, + [545] = 165, + [546] = 176, + [547] = 177, + [548] = 178, + [549] = 179, + [550] = 180, + [551] = 181, + [552] = 163, + [553] = 149, + [554] = 150, + [555] = 153, + [556] = 154, + [557] = 157, + [558] = 158, + [559] = 147, + [560] = 161, + [561] = 162, + [562] = 165, + [563] = 163, + [564] = 149, + [565] = 150, + [566] = 153, + [567] = 154, + [568] = 157, + [569] = 158, + [570] = 147, + [571] = 161, + [572] = 162, + [573] = 165, + [574] = 177, [575] = 181, - [576] = 182, - [577] = 183, - [578] = 184, - [579] = 185, - [580] = 186, - [581] = 187, - [582] = 188, - [583] = 171, - [584] = 271, - [585] = 185, - [586] = 171, - [587] = 271, - [588] = 273, - [589] = 409, - [590] = 473, - [591] = 291, - [592] = 187, - [593] = 409, - [594] = 473, - [595] = 291, - [596] = 188, - [597] = 409, - [598] = 473, - [599] = 291, - [600] = 409, - [601] = 473, - [602] = 291, - [603] = 409, - [604] = 409, - [605] = 409, - [606] = 409, - [607] = 409, - [608] = 409, - [609] = 409, - [610] = 409, - [611] = 409, - [612] = 409, - [613] = 409, - [614] = 409, - [615] = 409, - [616] = 409, - [617] = 409, - [618] = 274, - [619] = 173, - [620] = 174, - [621] = 170, - [622] = 409, - [623] = 176, - [624] = 177, - [625] = 178, - [626] = 179, - [627] = 180, - [628] = 181, - [629] = 182, - [630] = 183, - [631] = 184, - [632] = 186, - [633] = 295, - [634] = 187, - [635] = 188, - [636] = 301, - [637] = 401, - [638] = 173, - [639] = 174, - [640] = 170, - [641] = 176, - [642] = 177, - [643] = 178, - [644] = 179, - [645] = 180, - [646] = 181, - [647] = 182, - [648] = 183, - [649] = 184, - [650] = 185, - [651] = 186, - [652] = 187, - [653] = 188, - [654] = 171, - [655] = 172, - [656] = 174, - [657] = 170, - [658] = 176, - [659] = 177, - [660] = 178, - [661] = 179, - [662] = 180, - [663] = 181, - [664] = 182, - [665] = 183, - [666] = 172, - [667] = 174, - [668] = 170, - [669] = 176, - [670] = 177, - [671] = 178, - [672] = 179, - [673] = 180, - [674] = 181, - [675] = 182, - [676] = 183, - [677] = 271, - [678] = 273, - [679] = 271, - [680] = 273, - [681] = 409, - [682] = 274, - [683] = 409, - [684] = 301, - [685] = 274, - [686] = 301, - [687] = 274, - [688] = 301, - [689] = 274, - [690] = 271, - [691] = 273, - [692] = 278, - [693] = 172, - [694] = 409, - [695] = 172, - [696] = 278, - [697] = 278, - [698] = 278, - [699] = 278, - [700] = 297, - [701] = 701, - [702] = 702, - [703] = 702, - [704] = 701, - [705] = 702, - [706] = 701, - [707] = 701, - [708] = 702, - [709] = 701, - [710] = 702, - [711] = 701, - [712] = 702, - [713] = 701, - [714] = 702, + [576] = 252, + [577] = 254, + [578] = 252, + [579] = 254, + [580] = 163, + [581] = 252, + [582] = 254, + [583] = 163, + [584] = 149, + [585] = 150, + [586] = 153, + [587] = 154, + [588] = 157, + [589] = 158, + [590] = 147, + [591] = 161, + [592] = 162, + [593] = 165, + [594] = 252, + [595] = 254, + [596] = 152, + [597] = 152, + [598] = 344, + [599] = 164, + [600] = 152, + [601] = 345, + [602] = 164, + [603] = 149, + [604] = 150, + [605] = 153, + [606] = 154, + [607] = 157, + [608] = 158, + [609] = 147, + [610] = 161, + [611] = 162, + [612] = 165, + [613] = 176, + [614] = 177, + [615] = 178, + [616] = 179, + [617] = 180, + [618] = 181, + [619] = 163, + [620] = 149, + [621] = 150, + [622] = 153, + [623] = 154, + [624] = 157, + [625] = 158, + [626] = 147, + [627] = 161, + [628] = 162, + [629] = 165, + [630] = 177, + [631] = 181, + [632] = 252, + [633] = 254, + [634] = 163, + [635] = 252, + [636] = 254, + [637] = 152, + [638] = 152, + [639] = 344, + [640] = 164, + [641] = 152, + [642] = 345, + [643] = 344, + [644] = 152, + [645] = 252, + [646] = 254, + [647] = 349, + [648] = 163, + [649] = 152, + [650] = 149, + [651] = 150, + [652] = 153, + [653] = 154, + [654] = 157, + [655] = 158, + [656] = 147, + [657] = 161, + [658] = 162, + [659] = 165, + [660] = 252, + [661] = 254, + [662] = 163, + [663] = 349, + [664] = 152, + [665] = 349, + [666] = 152, + [667] = 349, + [668] = 181, + [669] = 669, + [670] = 669, + [671] = 669, + [672] = 672, + [673] = 672, + [674] = 672, + [675] = 669, + [676] = 669, + [677] = 672, + [678] = 672, + [679] = 672, + [680] = 669, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 682, + [685] = 683, + [686] = 682, + [687] = 682, + [688] = 683, + [689] = 683, + [690] = 683, + [691] = 682, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 695, + [696] = 696, + [697] = 696, + [698] = 696, + [699] = 696, + [700] = 696, + [701] = 696, + [702] = 696, + [703] = 696, + [704] = 696, + [705] = 696, + [706] = 696, + [707] = 707, + [708] = 696, + [709] = 696, + [710] = 696, + [711] = 707, + [712] = 696, + [713] = 713, + [714] = 714, [715] = 715, [716] = 716, [717] = 717, - [718] = 715, - [719] = 716, - [720] = 715, - [721] = 715, - [722] = 716, - [723] = 715, - [724] = 716, - [725] = 716, - [726] = 715, - [727] = 716, + [718] = 718, + [719] = 719, + [720] = 718, + [721] = 721, + [722] = 722, + [723] = 723, + [724] = 724, + [725] = 725, + [726] = 726, + [727] = 719, [728] = 728, [729] = 729, [730] = 730, [731] = 731, - [732] = 732, - [733] = 732, - [734] = 732, - [735] = 732, - [736] = 732, - [737] = 732, - [738] = 732, - [739] = 732, - [740] = 732, - [741] = 732, + [732] = 729, + [733] = 730, + [734] = 734, + [735] = 735, + [736] = 736, + [737] = 737, + [738] = 738, + [739] = 739, + [740] = 740, + [741] = 741, [742] = 742, - [743] = 732, - [744] = 732, - [745] = 742, - [746] = 732, - [747] = 732, - [748] = 732, + [743] = 743, + [744] = 744, + [745] = 745, + [746] = 746, + [747] = 745, + [748] = 746, [749] = 749, - [750] = 750, + [750] = 745, [751] = 751, - [752] = 752, - [753] = 753, - [754] = 754, - [755] = 754, - [756] = 756, + [752] = 729, + [753] = 730, + [754] = 731, + [755] = 729, + [756] = 730, [757] = 757, [758] = 758, - [759] = 759, + [759] = 718, [760] = 760, [761] = 761, [762] = 762, @@ -3603,7 +3595,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [764] = 764, [765] = 765, [766] = 766, - [767] = 758, + [767] = 767, [768] = 768, [769] = 769, [770] = 770, @@ -3614,118 +3606,118 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [775] = 775, [776] = 776, [777] = 777, - [778] = 759, - [779] = 777, + [778] = 778, + [779] = 779, [780] = 780, - [781] = 781, - [782] = 782, - [783] = 776, - [784] = 780, - [785] = 785, + [781] = 745, + [782] = 746, + [783] = 783, + [784] = 784, + [785] = 769, [786] = 786, [787] = 787, [788] = 788, [789] = 789, [790] = 790, [791] = 791, - [792] = 780, - [793] = 781, - [794] = 776, - [795] = 780, + [792] = 792, + [793] = 793, + [794] = 794, + [795] = 795, [796] = 796, - [797] = 797, + [797] = 742, [798] = 798, - [799] = 777, - [800] = 759, + [799] = 799, + [800] = 800, [801] = 801, [802] = 802, [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, + [804] = 786, + [805] = 760, + [806] = 746, [807] = 807, - [808] = 754, - [809] = 777, - [810] = 759, + [808] = 808, + [809] = 809, + [810] = 810, [811] = 811, - [812] = 812, + [812] = 718, [813] = 813, [814] = 814, [815] = 815, [816] = 816, - [817] = 788, - [818] = 818, + [817] = 817, + [818] = 719, [819] = 819, [820] = 820, - [821] = 821, + [821] = 811, [822] = 822, - [823] = 823, - [824] = 824, + [823] = 724, + [824] = 749, [825] = 825, - [826] = 826, - [827] = 827, - [828] = 828, + [826] = 746, + [827] = 745, + [828] = 746, [829] = 829, [830] = 830, - [831] = 791, + [831] = 831, [832] = 832, [833] = 833, - [834] = 813, + [834] = 834, [835] = 835, [836] = 836, [837] = 837, - [838] = 782, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 776, + [838] = 838, + [839] = 729, + [840] = 719, + [841] = 730, + [842] = 842, [843] = 843, - [844] = 844, + [844] = 731, [845] = 845, - [846] = 754, + [846] = 729, [847] = 847, [848] = 848, - [849] = 849, - [850] = 850, - [851] = 758, + [849] = 845, + [850] = 730, + [851] = 842, [852] = 852, - [853] = 853, + [853] = 745, [854] = 854, - [855] = 785, + [855] = 855, [856] = 856, [857] = 857, [858] = 858, - [859] = 760, - [860] = 858, - [861] = 776, + [859] = 859, + [860] = 860, + [861] = 861, [862] = 862, [863] = 863, [864] = 864, - [865] = 776, + [865] = 865, [866] = 866, [867] = 867, - [868] = 780, + [868] = 868, [869] = 869, [870] = 870, [871] = 871, [872] = 872, - [873] = 873, + [873] = 745, [874] = 874, [875] = 875, - [876] = 777, - [877] = 781, - [878] = 759, - [879] = 879, - [880] = 777, - [881] = 879, - [882] = 759, - [883] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 874, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, [884] = 884, [885] = 885, [886] = 886, - [887] = 758, + [887] = 887, [888] = 888, - [889] = 780, + [889] = 746, [890] = 890, [891] = 891, [892] = 892, @@ -3741,56 +3733,56 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [902] = 902, [903] = 903, [904] = 904, - [905] = 905, + [905] = 874, [906] = 906, - [907] = 907, - [908] = 908, + [907] = 874, + [908] = 877, [909] = 909, - [910] = 776, - [911] = 780, - [912] = 781, + [910] = 910, + [911] = 911, + [912] = 912, [913] = 913, - [914] = 785, - [915] = 899, + [914] = 914, + [915] = 915, [916] = 916, - [917] = 777, - [918] = 759, - [919] = 919, - [920] = 890, + [917] = 917, + [918] = 918, + [919] = 893, + [920] = 920, [921] = 921, - [922] = 776, - [923] = 780, - [924] = 916, + [922] = 922, + [923] = 923, + [924] = 924, [925] = 925, [926] = 926, [927] = 927, [928] = 928, - [929] = 929, + [929] = 730, [930] = 930, [931] = 931, - [932] = 932, + [932] = 874, [933] = 933, - [934] = 934, - [935] = 935, - [936] = 916, + [934] = 874, + [935] = 877, + [936] = 936, [937] = 937, - [938] = 938, - [939] = 916, - [940] = 940, + [938] = 874, + [939] = 939, + [940] = 874, [941] = 941, [942] = 942, [943] = 943, - [944] = 916, + [944] = 944, [945] = 945, - [946] = 946, - [947] = 916, - [948] = 916, - [949] = 916, + [946] = 892, + [947] = 893, + [948] = 874, + [949] = 906, [950] = 950, [951] = 951, [952] = 952, [953] = 953, - [954] = 864, + [954] = 954, [955] = 955, [956] = 956, [957] = 957, @@ -3801,4130 +3793,3447 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [962] = 962, [963] = 963, [964] = 964, - [965] = 884, + [965] = 965, [966] = 966, [967] = 967, [968] = 968, - [969] = 969, + [969] = 877, [970] = 970, - [971] = 777, + [971] = 971, [972] = 972, [973] = 973, [974] = 974, - [975] = 975, - [976] = 976, - [977] = 977, + [975] = 892, + [976] = 893, + [977] = 906, [978] = 978, - [979] = 979, - [980] = 790, - [981] = 958, - [982] = 890, - [983] = 983, - [984] = 984, + [979] = 874, + [980] = 729, + [981] = 874, + [982] = 730, + [983] = 877, + [984] = 731, [985] = 985, - [986] = 759, - [987] = 916, - [988] = 919, - [989] = 989, - [990] = 990, - [991] = 991, - [992] = 992, - [993] = 993, + [986] = 877, + [987] = 987, + [988] = 892, + [989] = 962, + [990] = 745, + [991] = 746, + [992] = 906, + [993] = 729, [994] = 994, - [995] = 995, - [996] = 996, - [997] = 997, - [998] = 998, - [999] = 999, - [1000] = 1000, - [1001] = 1001, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 1007, - [1008] = 1008, - [1009] = 916, - [1010] = 1010, - [1011] = 1011, - [1012] = 1012, - [1013] = 1013, - [1014] = 1014, + [995] = 791, + [996] = 716, + [997] = 800, + [998] = 960, + [999] = 961, + [1000] = 966, + [1001] = 762, + [1002] = 775, + [1003] = 792, + [1004] = 772, + [1005] = 764, + [1006] = 779, + [1007] = 794, + [1008] = 770, + [1009] = 795, + [1010] = 771, + [1011] = 741, + [1012] = 766, + [1013] = 773, + [1014] = 788, [1015] = 1015, - [1016] = 1016, - [1017] = 958, - [1018] = 919, - [1019] = 1019, - [1020] = 1020, - [1021] = 958, - [1022] = 890, + [1016] = 763, + [1017] = 758, + [1018] = 723, + [1019] = 734, + [1020] = 777, + [1021] = 737, + [1022] = 801, [1023] = 1023, - [1024] = 919, - [1025] = 1025, - [1026] = 1026, - [1027] = 916, - [1028] = 1028, - [1029] = 1029, - [1030] = 1029, - [1031] = 1029, - [1032] = 1029, - [1033] = 1029, - [1034] = 1029, - [1035] = 798, - [1036] = 813, - [1037] = 821, - [1038] = 837, - [1039] = 824, - [1040] = 804, - [1041] = 805, - [1042] = 806, - [1043] = 766, - [1044] = 787, - [1045] = 772, - [1046] = 1046, - [1047] = 840, - [1048] = 833, - [1049] = 832, - [1050] = 823, - [1051] = 790, - [1052] = 935, - [1053] = 786, - [1054] = 933, - [1055] = 788, - [1056] = 828, - [1057] = 925, - [1058] = 836, - [1059] = 796, - [1060] = 835, - [1061] = 927, - [1062] = 928, - [1063] = 929, - [1064] = 930, - [1065] = 807, - [1066] = 811, - [1067] = 931, - [1068] = 826, - [1069] = 932, - [1070] = 814, - [1071] = 839, - [1072] = 763, - [1073] = 815, - [1074] = 816, - [1075] = 819, - [1076] = 934, - [1077] = 769, - [1078] = 822, - [1079] = 829, - [1080] = 825, - [1081] = 789, + [1024] = 774, + [1025] = 784, + [1026] = 778, + [1027] = 751, + [1028] = 765, + [1029] = 799, + [1030] = 760, + [1031] = 761, + [1032] = 780, + [1033] = 967, + [1034] = 768, + [1035] = 789, + [1036] = 1036, + [1037] = 968, + [1038] = 726, + [1039] = 939, + [1040] = 941, + [1041] = 950, + [1042] = 803, + [1043] = 953, + [1044] = 956, + [1045] = 958, + [1046] = 740, + [1047] = 757, + [1048] = 783, + [1049] = 1049, + [1050] = 776, + [1051] = 716, + [1052] = 807, + [1053] = 802, + [1054] = 1054, + [1055] = 716, + [1056] = 813, + [1057] = 1057, + [1058] = 809, + [1059] = 815, + [1060] = 814, + [1061] = 760, + [1062] = 838, + [1063] = 716, + [1064] = 836, + [1065] = 816, + [1066] = 716, + [1067] = 1067, + [1068] = 716, + [1069] = 1067, + [1070] = 857, + [1071] = 856, + [1072] = 848, + [1073] = 724, + [1074] = 837, + [1075] = 716, + [1076] = 867, + [1077] = 1077, + [1078] = 1077, + [1079] = 854, + [1080] = 742, + [1081] = 749, [1082] = 830, - [1083] = 782, - [1084] = 841, - [1085] = 926, - [1086] = 752, - [1087] = 752, - [1088] = 844, - [1089] = 1089, - [1090] = 1090, - [1091] = 797, - [1092] = 788, - [1093] = 813, - [1094] = 752, - [1095] = 752, - [1096] = 752, - [1097] = 752, - [1098] = 1098, - [1099] = 969, - [1100] = 752, - [1101] = 974, - [1102] = 785, - [1103] = 1103, - [1104] = 752, - [1105] = 1105, - [1106] = 956, - [1107] = 957, - [1108] = 774, - [1109] = 761, - [1110] = 1110, - [1111] = 1111, - [1112] = 752, - [1113] = 820, - [1114] = 1110, - [1115] = 1111, - [1116] = 773, - [1117] = 772, - [1118] = 766, - [1119] = 763, - [1120] = 752, - [1121] = 769, - [1122] = 752, - [1123] = 785, - [1124] = 827, - [1125] = 752, - [1126] = 1126, - [1127] = 1127, - [1128] = 787, - [1129] = 848, - [1130] = 833, - [1131] = 786, - [1132] = 1132, - [1133] = 829, - [1134] = 798, - [1135] = 828, - [1136] = 825, - [1137] = 847, - [1138] = 1126, - [1139] = 1139, - [1140] = 1140, - [1141] = 836, - [1142] = 830, - [1143] = 840, - [1144] = 852, - [1145] = 1126, - [1146] = 801, - [1147] = 1139, - [1148] = 900, - [1149] = 1127, - [1150] = 1132, - [1151] = 1140, - [1152] = 1152, - [1153] = 832, - [1154] = 813, - [1155] = 823, - [1156] = 818, - [1157] = 815, - [1158] = 903, - [1159] = 1159, - [1160] = 1126, - [1161] = 1139, - [1162] = 904, - [1163] = 818, - [1164] = 1127, - [1165] = 1132, - [1166] = 1140, - [1167] = 1152, - [1168] = 1127, - [1169] = 1126, - [1170] = 1139, - [1171] = 1127, - [1172] = 1132, - [1173] = 1140, - [1174] = 1152, - [1175] = 1175, - [1176] = 884, - [1177] = 822, - [1178] = 785, - [1179] = 896, - [1180] = 790, - [1181] = 816, - [1182] = 1182, - [1183] = 789, - [1184] = 1132, - [1185] = 796, - [1186] = 821, - [1187] = 837, - [1188] = 841, - [1189] = 824, - [1190] = 1190, - [1191] = 804, - [1192] = 1152, - [1193] = 805, - [1194] = 807, - [1195] = 1195, - [1196] = 811, - [1197] = 806, - [1198] = 835, - [1199] = 849, - [1200] = 905, - [1201] = 1140, - [1202] = 826, - [1203] = 1152, - [1204] = 798, - [1205] = 843, - [1206] = 819, - [1207] = 1159, - [1208] = 813, - [1209] = 1139, - [1210] = 814, - [1211] = 1182, - [1212] = 864, - [1213] = 839, - [1214] = 1175, - [1215] = 1126, - [1216] = 1139, - [1217] = 1217, - [1218] = 1217, - [1219] = 1127, - [1220] = 1132, - [1221] = 1140, - [1222] = 845, - [1223] = 1152, - [1224] = 900, - [1225] = 901, - [1226] = 902, - [1227] = 903, - [1228] = 752, + [1083] = 825, + [1084] = 835, + [1085] = 858, + [1086] = 915, + [1087] = 917, + [1088] = 962, + [1089] = 859, + [1090] = 875, + [1091] = 918, + [1092] = 970, + [1093] = 943, + [1094] = 920, + [1095] = 921, + [1096] = 876, + [1097] = 944, + [1098] = 880, + [1099] = 922, + [1100] = 923, + [1101] = 924, + [1102] = 925, + [1103] = 881, + [1104] = 882, + [1105] = 978, + [1106] = 790, + [1107] = 860, + [1108] = 883, + [1109] = 884, + [1110] = 928, + [1111] = 994, + [1112] = 951, + [1113] = 885, + [1114] = 930, + [1115] = 887, + [1116] = 888, + [1117] = 861, + [1118] = 718, + [1119] = 862, + [1120] = 927, + [1121] = 863, + [1122] = 894, + [1123] = 895, + [1124] = 896, + [1125] = 897, + [1126] = 898, + [1127] = 899, + [1128] = 900, + [1129] = 964, + [1130] = 965, + [1131] = 901, + [1132] = 957, + [1133] = 902, + [1134] = 903, + [1135] = 904, + [1136] = 909, + [1137] = 910, + [1138] = 987, + [1139] = 870, + [1140] = 931, + [1141] = 937, + [1142] = 864, + [1143] = 871, + [1144] = 878, + [1145] = 855, + [1146] = 868, + [1147] = 865, + [1148] = 973, + [1149] = 974, + [1150] = 866, + [1151] = 886, + [1152] = 933, + [1153] = 955, + [1154] = 911, + [1155] = 936, + [1156] = 959, + [1157] = 912, + [1158] = 913, + [1159] = 914, + [1160] = 916, + [1161] = 737, + [1162] = 1162, + [1163] = 1163, + [1164] = 749, + [1165] = 718, + [1166] = 1163, + [1167] = 1167, + [1168] = 726, + [1169] = 1169, + [1170] = 1170, + [1171] = 1162, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1167, + [1176] = 1170, + [1177] = 1167, + [1178] = 1174, + [1179] = 1174, + [1180] = 1180, + [1181] = 1181, + [1182] = 1170, + [1183] = 1162, + [1184] = 1180, + [1185] = 1172, + [1186] = 1181, + [1187] = 1180, + [1188] = 1188, + [1189] = 1173, + [1190] = 1167, + [1191] = 1170, + [1192] = 1174, + [1193] = 1180, + [1194] = 1181, + [1195] = 1162, + [1196] = 1167, + [1197] = 1170, + [1198] = 1167, + [1199] = 743, + [1200] = 1162, + [1201] = 1181, + [1202] = 716, + [1203] = 729, + [1204] = 730, + [1205] = 729, + [1206] = 745, + [1207] = 746, + [1208] = 741, + [1209] = 1174, + [1210] = 1180, + [1211] = 1181, + [1212] = 1170, + [1213] = 1180, + [1214] = 1162, + [1215] = 745, + [1216] = 746, + [1217] = 719, + [1218] = 1174, + [1219] = 716, + [1220] = 1181, + [1221] = 730, + [1222] = 731, + [1223] = 740, + [1224] = 1224, + [1225] = 1224, + [1226] = 770, + [1227] = 1227, + [1228] = 963, [1229] = 1229, - [1230] = 1229, - [1231] = 1229, - [1232] = 1229, - [1233] = 1229, - [1234] = 1229, - [1235] = 1229, - [1236] = 1229, - [1237] = 1229, - [1238] = 1229, - [1239] = 1229, - [1240] = 870, - [1241] = 1229, - [1242] = 1242, - [1243] = 1229, - [1244] = 1229, - [1245] = 1245, - [1246] = 1229, - [1247] = 866, - [1248] = 1229, - [1249] = 1229, - [1250] = 1250, - [1251] = 1229, - [1252] = 1242, - [1253] = 1229, - [1254] = 1229, - [1255] = 1229, - [1256] = 1229, - [1257] = 1229, - [1258] = 1229, - [1259] = 1229, - [1260] = 1229, - [1261] = 1229, - [1262] = 1229, - [1263] = 1229, - [1264] = 1242, - [1265] = 1265, - [1266] = 1229, - [1267] = 1229, - [1268] = 1268, - [1269] = 1229, - [1270] = 1270, + [1230] = 1230, + [1231] = 1231, + [1232] = 973, + [1233] = 762, + [1234] = 773, + [1235] = 1235, + [1236] = 768, + [1237] = 774, + [1238] = 763, + [1239] = 745, + [1240] = 746, + [1241] = 1231, + [1242] = 764, + [1243] = 783, + [1244] = 1244, + [1245] = 777, + [1246] = 784, + [1247] = 778, + [1248] = 1231, + [1249] = 1231, + [1250] = 1231, + [1251] = 1231, + [1252] = 1231, + [1253] = 1231, + [1254] = 1231, + [1255] = 1231, + [1256] = 1231, + [1257] = 1231, + [1258] = 1231, + [1259] = 792, + [1260] = 1231, + [1261] = 1231, + [1262] = 1231, + [1263] = 794, + [1264] = 1231, + [1265] = 729, + [1266] = 1231, + [1267] = 1227, + [1268] = 1231, + [1269] = 1231, + [1270] = 730, [1271] = 1229, - [1272] = 1229, - [1273] = 1229, - [1274] = 1229, - [1275] = 1229, - [1276] = 1242, - [1277] = 1229, - [1278] = 1229, - [1279] = 1229, - [1280] = 1242, - [1281] = 1250, - [1282] = 1229, - [1283] = 1229, + [1272] = 1231, + [1273] = 795, + [1274] = 974, + [1275] = 1231, + [1276] = 771, + [1277] = 1231, + [1278] = 1231, + [1279] = 1279, + [1280] = 1227, + [1281] = 1231, + [1282] = 1282, + [1283] = 1231, [1284] = 1229, - [1285] = 1242, - [1286] = 1229, - [1287] = 1229, - [1288] = 1229, - [1289] = 1229, - [1290] = 1229, - [1291] = 1242, - [1292] = 1229, - [1293] = 1229, - [1294] = 1229, - [1295] = 1229, - [1296] = 1242, - [1297] = 1229, - [1298] = 1229, - [1299] = 1242, - [1300] = 1229, - [1301] = 1229, - [1302] = 1242, - [1303] = 1229, - [1304] = 1229, - [1305] = 1229, - [1306] = 1242, - [1307] = 1229, - [1308] = 1229, - [1309] = 1242, + [1285] = 799, + [1286] = 745, + [1287] = 1287, + [1288] = 1231, + [1289] = 746, + [1290] = 1290, + [1291] = 1291, + [1292] = 1292, + [1293] = 716, + [1294] = 757, + [1295] = 786, + [1296] = 1229, + [1297] = 1297, + [1298] = 772, + [1299] = 955, + [1300] = 760, + [1301] = 791, + [1302] = 775, + [1303] = 972, + [1304] = 1231, + [1305] = 1231, + [1306] = 1231, + [1307] = 1279, + [1308] = 761, + [1309] = 1287, [1310] = 1229, - [1311] = 1229, - [1312] = 1312, - [1313] = 1242, - [1314] = 1229, - [1315] = 1229, - [1316] = 1242, - [1317] = 1229, - [1318] = 1229, - [1319] = 1242, - [1320] = 1229, - [1321] = 1229, - [1322] = 1322, - [1323] = 1242, - [1324] = 1229, - [1325] = 873, - [1326] = 1326, - [1327] = 820, - [1328] = 1229, - [1329] = 1229, - [1330] = 1229, - [1331] = 1229, - [1332] = 1229, - [1333] = 1229, - [1334] = 1229, - [1335] = 1229, - [1336] = 1229, - [1337] = 1229, - [1338] = 1229, - [1339] = 1229, - [1340] = 1229, - [1341] = 1229, - [1342] = 1229, - [1343] = 1229, - [1344] = 1229, - [1345] = 1229, - [1346] = 1229, - [1347] = 1229, - [1348] = 1326, - [1349] = 1349, - [1350] = 1312, - [1351] = 1349, - [1352] = 1352, - [1353] = 1229, - [1354] = 1229, - [1355] = 1355, - [1356] = 1229, - [1357] = 1357, - [1358] = 754, - [1359] = 1242, - [1360] = 1326, - [1361] = 1312, - [1362] = 1349, - [1363] = 1352, - [1364] = 1250, - [1365] = 1326, - [1366] = 797, - [1367] = 1349, - [1368] = 1352, - [1369] = 752, - [1370] = 1326, - [1371] = 1349, - [1372] = 1352, - [1373] = 1326, - [1374] = 1352, - [1375] = 1250, - [1376] = 754, - [1377] = 1242, - [1378] = 754, - [1379] = 1379, - [1380] = 867, - [1381] = 1229, - [1382] = 869, - [1383] = 1355, - [1384] = 1352, - [1385] = 782, - [1386] = 1386, - [1387] = 1242, - [1388] = 1268, - [1389] = 1229, - [1390] = 1312, - [1391] = 1229, - [1392] = 1392, - [1393] = 1265, - [1394] = 1229, - [1395] = 1250, - [1396] = 1379, - [1397] = 871, - [1398] = 1392, - [1399] = 1270, - [1400] = 1322, - [1401] = 862, + [1311] = 729, + [1312] = 767, + [1313] = 1227, + [1314] = 1292, + [1315] = 1315, + [1316] = 1235, + [1317] = 791, + [1318] = 1231, + [1319] = 719, + [1320] = 779, + [1321] = 749, + [1322] = 1231, + [1323] = 1227, + [1324] = 1279, + [1325] = 1229, + [1326] = 1297, + [1327] = 1231, + [1328] = 1231, + [1329] = 1231, + [1330] = 1235, + [1331] = 731, + [1332] = 1227, + [1333] = 1231, + [1334] = 1231, + [1335] = 1231, + [1336] = 1231, + [1337] = 1231, + [1338] = 1338, + [1339] = 787, + [1340] = 1231, + [1341] = 1231, + [1342] = 963, + [1343] = 964, + [1344] = 965, + [1345] = 1227, + [1346] = 800, + [1347] = 1347, + [1348] = 803, + [1349] = 1315, + [1350] = 1231, + [1351] = 1231, + [1352] = 1231, + [1353] = 1231, + [1354] = 1227, + [1355] = 1231, + [1356] = 1231, + [1357] = 1315, + [1358] = 780, + [1359] = 1282, + [1360] = 786, + [1361] = 1231, + [1362] = 1231, + [1363] = 1227, + [1364] = 1231, + [1365] = 1231, + [1366] = 1227, + [1367] = 1231, + [1368] = 766, + [1369] = 1338, + [1370] = 972, + [1371] = 1315, + [1372] = 1235, + [1373] = 1230, + [1374] = 1279, + [1375] = 1290, + [1376] = 1227, + [1377] = 1377, + [1378] = 820, + [1379] = 1231, + [1380] = 1227, + [1381] = 1315, + [1382] = 787, + [1383] = 1227, + [1384] = 1315, + [1385] = 1279, + [1386] = 751, + [1387] = 716, + [1388] = 1231, + [1389] = 765, + [1390] = 1231, + [1391] = 1235, + [1392] = 1282, + [1393] = 1231, + [1394] = 788, + [1395] = 1279, + [1396] = 1231, + [1397] = 758, + [1398] = 1231, + [1399] = 1377, + [1400] = 801, + [1401] = 1231, [1402] = 760, - [1403] = 1242, - [1404] = 1312, - [1405] = 1229, - [1406] = 1250, - [1407] = 1242, - [1408] = 1312, - [1409] = 1229, - [1410] = 782, - [1411] = 758, - [1412] = 760, - [1413] = 945, - [1414] = 774, - [1415] = 872, - [1416] = 901, - [1417] = 985, - [1418] = 1418, - [1419] = 754, - [1420] = 1002, - [1421] = 975, - [1422] = 966, - [1423] = 898, - [1424] = 976, - [1425] = 1003, - [1426] = 1004, - [1427] = 989, - [1428] = 902, - [1429] = 990, - [1430] = 904, - [1431] = 1005, - [1432] = 977, - [1433] = 978, - [1434] = 979, - [1435] = 1006, - [1436] = 1007, - [1437] = 785, - [1438] = 905, - [1439] = 1008, - [1440] = 1023, - [1441] = 991, - [1442] = 754, - [1443] = 1010, - [1444] = 950, - [1445] = 754, - [1446] = 776, - [1447] = 758, - [1448] = 780, - [1449] = 781, - [1450] = 953, - [1451] = 992, - [1452] = 994, - [1453] = 758, - [1454] = 938, - [1455] = 899, - [1456] = 1025, - [1457] = 1011, - [1458] = 1012, - [1459] = 895, - [1460] = 983, - [1461] = 967, - [1462] = 964, - [1463] = 996, - [1464] = 897, - [1465] = 997, - [1466] = 998, - [1467] = 993, - [1468] = 1013, - [1469] = 940, - [1470] = 893, - [1471] = 844, - [1472] = 968, - [1473] = 999, - [1474] = 973, - [1475] = 941, - [1476] = 1014, - [1477] = 754, - [1478] = 955, - [1479] = 896, - [1480] = 1015, - [1481] = 963, - [1482] = 1016, - [1483] = 970, - [1484] = 951, - [1485] = 1485, - [1486] = 942, - [1487] = 899, - [1488] = 1026, - [1489] = 972, - [1490] = 943, - [1491] = 761, - [1492] = 984, - [1493] = 1000, - [1494] = 959, - [1495] = 891, - [1496] = 894, - [1497] = 960, - [1498] = 776, - [1499] = 780, - [1500] = 777, - [1501] = 759, - [1502] = 777, - [1503] = 759, - [1504] = 961, - [1505] = 1001, - [1506] = 1019, - [1507] = 962, - [1508] = 1020, - [1509] = 995, - [1510] = 759, - [1511] = 782, - [1512] = 758, - [1513] = 777, - [1514] = 759, - [1515] = 777, - [1516] = 759, - [1517] = 776, - [1518] = 777, - [1519] = 763, - [1520] = 761, - [1521] = 759, - [1522] = 760, - [1523] = 758, - [1524] = 766, - [1525] = 827, - [1526] = 884, - [1527] = 1527, - [1528] = 774, - [1529] = 1529, - [1530] = 780, - [1531] = 758, - [1532] = 1532, - [1533] = 781, - [1534] = 760, - [1535] = 760, - [1536] = 777, - [1537] = 776, - [1538] = 785, - [1539] = 785, - [1540] = 773, - [1541] = 782, - [1542] = 773, - [1543] = 780, - [1544] = 864, - [1545] = 782, - [1546] = 758, - [1547] = 1547, - [1548] = 754, - [1549] = 754, - [1550] = 776, - [1551] = 780, - [1552] = 781, - [1553] = 777, - [1554] = 759, - [1555] = 781, - [1556] = 769, - [1557] = 776, - [1558] = 1558, - [1559] = 772, - [1560] = 776, - [1561] = 1529, - [1562] = 1529, - [1563] = 780, - [1564] = 776, - [1565] = 780, - [1566] = 777, - [1567] = 759, - [1568] = 780, - [1569] = 1569, - [1570] = 777, - [1571] = 845, - [1572] = 761, - [1573] = 872, - [1574] = 827, - [1575] = 788, - [1576] = 873, - [1577] = 829, - [1578] = 801, - [1579] = 774, - [1580] = 894, - [1581] = 1581, - [1582] = 830, - [1583] = 835, - [1584] = 847, - [1585] = 843, - [1586] = 777, - [1587] = 813, - [1588] = 773, - [1589] = 852, - [1590] = 759, - [1591] = 781, - [1592] = 796, - [1593] = 820, - [1594] = 754, - [1595] = 797, - [1596] = 758, - [1597] = 798, - [1598] = 832, - [1599] = 758, - [1600] = 788, - [1601] = 840, - [1602] = 812, - [1603] = 848, - [1604] = 754, + [1403] = 1235, + [1404] = 1231, + [1405] = 789, + [1406] = 1282, + [1407] = 730, + [1408] = 802, + [1409] = 790, + [1410] = 742, + [1411] = 724, + [1412] = 724, + [1413] = 718, + [1414] = 716, + [1415] = 831, + [1416] = 829, + [1417] = 718, + [1418] = 723, + [1419] = 833, + [1420] = 1420, + [1421] = 807, + [1422] = 1422, + [1423] = 749, + [1424] = 962, + [1425] = 734, + [1426] = 718, + [1427] = 718, + [1428] = 719, + [1429] = 742, + [1430] = 724, + [1431] = 719, + [1432] = 718, + [1433] = 730, + [1434] = 1434, + [1435] = 1435, + [1436] = 1436, + [1437] = 743, + [1438] = 1436, + [1439] = 719, + [1440] = 1440, + [1441] = 836, + [1442] = 719, + [1443] = 743, + [1444] = 731, + [1445] = 729, + [1446] = 746, + [1447] = 729, + [1448] = 730, + [1449] = 737, + [1450] = 742, + [1451] = 838, + [1452] = 729, + [1453] = 1453, + [1454] = 730, + [1455] = 731, + [1456] = 741, + [1457] = 724, + [1458] = 718, + [1459] = 729, + [1460] = 730, + [1461] = 749, + [1462] = 745, + [1463] = 746, + [1464] = 745, + [1465] = 746, + [1466] = 1466, + [1467] = 1436, + [1468] = 749, + [1469] = 726, + [1470] = 776, + [1471] = 718, + [1472] = 745, + [1473] = 746, + [1474] = 745, + [1475] = 740, + [1476] = 800, + [1477] = 777, + [1478] = 778, + [1479] = 780, + [1480] = 796, + [1481] = 799, + [1482] = 746, + [1483] = 803, + [1484] = 783, + [1485] = 723, + [1486] = 833, + [1487] = 784, + [1488] = 787, + [1489] = 751, + [1490] = 767, + [1491] = 813, + [1492] = 1492, + [1493] = 729, + [1494] = 757, + [1495] = 730, + [1496] = 731, + [1497] = 745, + [1498] = 760, + [1499] = 743, + [1500] = 761, + [1501] = 766, + [1502] = 718, + [1503] = 762, + [1504] = 729, + [1505] = 730, + [1506] = 763, + [1507] = 764, + [1508] = 746, + [1509] = 944, + [1510] = 765, + [1511] = 731, + [1512] = 801, + [1513] = 790, + [1514] = 1514, + [1515] = 802, + [1516] = 768, + [1517] = 786, + [1518] = 786, + [1519] = 1492, + [1520] = 772, + [1521] = 786, + [1522] = 745, + [1523] = 760, + [1524] = 746, + [1525] = 729, + [1526] = 730, + [1527] = 773, + [1528] = 1492, + [1529] = 729, + [1530] = 730, + [1531] = 774, + [1532] = 771, + [1533] = 779, + [1534] = 729, + [1535] = 719, + [1536] = 730, + [1537] = 731, + [1538] = 816, + [1539] = 719, + [1540] = 795, + [1541] = 1492, + [1542] = 767, + [1543] = 734, + [1544] = 1492, + [1545] = 1436, + [1546] = 796, + [1547] = 745, + [1548] = 746, + [1549] = 814, + [1550] = 745, + [1551] = 746, + [1552] = 835, + [1553] = 758, + [1554] = 820, + [1555] = 789, + [1556] = 809, + [1557] = 1557, + [1558] = 729, + [1559] = 730, + [1560] = 745, + [1561] = 746, + [1562] = 796, + [1563] = 786, + [1564] = 791, + [1565] = 792, + [1566] = 745, + [1567] = 746, + [1568] = 729, + [1569] = 730, + [1570] = 731, + [1571] = 794, + [1572] = 770, + [1573] = 745, + [1574] = 746, + [1575] = 729, + [1576] = 730, + [1577] = 788, + [1578] = 815, + [1579] = 1492, + [1580] = 745, + [1581] = 775, + [1582] = 796, + [1583] = 757, + [1584] = 761, + [1585] = 786, + [1586] = 760, + [1587] = 762, + [1588] = 763, + [1589] = 764, + [1590] = 1590, + [1591] = 741, + [1592] = 765, + [1593] = 768, + [1594] = 880, + [1595] = 790, + [1596] = 772, + [1597] = 773, + [1598] = 774, + [1599] = 775, + [1600] = 779, + [1601] = 786, + [1602] = 760, + [1603] = 796, + [1604] = 749, [1605] = 807, - [1606] = 811, - [1607] = 788, - [1608] = 777, - [1609] = 813, - [1610] = 814, - [1611] = 790, - [1612] = 759, - [1613] = 776, - [1614] = 818, - [1615] = 780, - [1616] = 1616, - [1617] = 849, - [1618] = 826, - [1619] = 815, - [1620] = 816, - [1621] = 819, - [1622] = 1529, - [1623] = 825, - [1624] = 823, - [1625] = 841, - [1626] = 812, - [1627] = 776, - [1628] = 780, - [1629] = 787, - [1630] = 833, - [1631] = 786, - [1632] = 828, - [1633] = 836, - [1634] = 789, - [1635] = 821, - [1636] = 837, - [1637] = 824, - [1638] = 804, - [1639] = 805, - [1640] = 776, - [1641] = 780, - [1642] = 781, - [1643] = 806, - [1644] = 777, - [1645] = 801, - [1646] = 759, - [1647] = 776, - [1648] = 780, - [1649] = 781, - [1650] = 777, - [1651] = 759, - [1652] = 776, - [1653] = 780, - [1654] = 776, - [1655] = 780, - [1656] = 781, - [1657] = 777, - [1658] = 759, - [1659] = 839, - [1660] = 782, - [1661] = 782, - [1662] = 776, - [1663] = 780, - [1664] = 777, - [1665] = 759, - [1666] = 776, - [1667] = 780, - [1668] = 759, - [1669] = 788, - [1670] = 777, - [1671] = 759, - [1672] = 812, - [1673] = 822, - [1674] = 777, - [1675] = 754, - [1676] = 840, - [1677] = 832, - [1678] = 812, - [1679] = 758, - [1680] = 823, - [1681] = 769, - [1682] = 789, - [1683] = 821, - [1684] = 900, - [1685] = 837, - [1686] = 824, - [1687] = 804, - [1688] = 777, - [1689] = 759, - [1690] = 805, - [1691] = 806, - [1692] = 776, - [1693] = 780, - [1694] = 781, - [1695] = 839, - [1696] = 759, - [1697] = 903, - [1698] = 822, - [1699] = 785, - [1700] = 760, - [1701] = 844, - [1702] = 829, - [1703] = 862, - [1704] = 1704, - [1705] = 1705, - [1706] = 1004, - [1707] = 825, - [1708] = 777, - [1709] = 759, - [1710] = 776, - [1711] = 780, - [1712] = 1712, - [1713] = 872, - [1714] = 788, - [1715] = 813, - [1716] = 830, - [1717] = 849, - [1718] = 871, - [1719] = 815, - [1720] = 818, - [1721] = 845, - [1722] = 1722, - [1723] = 801, - [1724] = 1722, - [1725] = 788, - [1726] = 776, - [1727] = 780, - [1728] = 813, - [1729] = 781, - [1730] = 754, - [1731] = 1731, - [1732] = 816, - [1733] = 841, - [1734] = 835, - [1735] = 847, - [1736] = 848, - [1737] = 812, - [1738] = 782, - [1739] = 820, - [1740] = 819, - [1741] = 814, - [1742] = 758, - [1743] = 776, - [1744] = 780, - [1745] = 763, - [1746] = 852, - [1747] = 870, - [1748] = 1722, - [1749] = 766, - [1750] = 843, - [1751] = 867, - [1752] = 1752, - [1753] = 1722, - [1754] = 869, - [1755] = 787, - [1756] = 833, - [1757] = 786, - [1758] = 760, - [1759] = 797, - [1760] = 782, - [1761] = 807, - [1762] = 811, - [1763] = 826, - [1764] = 866, - [1765] = 812, - [1766] = 777, - [1767] = 759, - [1768] = 827, - [1769] = 1722, - [1770] = 828, - [1771] = 1722, - [1772] = 796, - [1773] = 754, - [1774] = 754, - [1775] = 975, - [1776] = 812, - [1777] = 772, - [1778] = 836, - [1779] = 790, - [1780] = 974, - [1781] = 984, - [1782] = 844, - [1783] = 985, - [1784] = 957, - [1785] = 1785, - [1786] = 1025, - [1787] = 977, - [1788] = 950, - [1789] = 896, - [1790] = 959, - [1791] = 1026, - [1792] = 999, - [1793] = 1011, - [1794] = 967, - [1795] = 901, - [1796] = 1785, - [1797] = 754, - [1798] = 1012, - [1799] = 968, - [1800] = 953, - [1801] = 962, - [1802] = 902, - [1803] = 888, - [1804] = 969, - [1805] = 872, - [1806] = 754, - [1807] = 862, - [1808] = 1785, - [1809] = 866, - [1810] = 996, - [1811] = 867, - [1812] = 1785, - [1813] = 943, - [1814] = 869, - [1815] = 864, - [1816] = 758, - [1817] = 782, - [1818] = 754, - [1819] = 1785, - [1820] = 942, - [1821] = 845, - [1822] = 964, - [1823] = 852, - [1824] = 1013, - [1825] = 1825, - [1826] = 978, - [1827] = 1014, - [1828] = 940, - [1829] = 904, - [1830] = 758, - [1831] = 1015, - [1832] = 905, - [1833] = 776, - [1834] = 780, - [1835] = 781, - [1836] = 884, - [1837] = 1016, - [1838] = 970, - [1839] = 998, - [1840] = 760, - [1841] = 1002, - [1842] = 966, - [1843] = 989, - [1844] = 898, - [1845] = 1003, - [1846] = 941, - [1847] = 888, - [1848] = 1005, - [1849] = 1006, - [1850] = 1007, - [1851] = 1008, - [1852] = 990, - [1853] = 888, - [1854] = 1854, - [1855] = 1825, - [1856] = 1856, - [1857] = 963, - [1858] = 874, - [1859] = 891, - [1860] = 872, - [1861] = 847, - [1862] = 754, - [1863] = 849, - [1864] = 991, - [1865] = 938, - [1866] = 979, - [1867] = 848, - [1868] = 955, - [1869] = 992, - [1870] = 873, - [1871] = 899, - [1872] = 760, - [1873] = 843, - [1874] = 1785, - [1875] = 1825, - [1876] = 951, - [1877] = 972, - [1878] = 893, - [1879] = 874, - [1880] = 1010, - [1881] = 1023, - [1882] = 993, - [1883] = 973, - [1884] = 994, - [1885] = 1000, - [1886] = 870, - [1887] = 956, - [1888] = 1001, - [1889] = 895, - [1890] = 776, - [1891] = 780, - [1892] = 777, - [1893] = 759, - [1894] = 777, - [1895] = 759, - [1896] = 897, - [1897] = 997, - [1898] = 976, - [1899] = 1899, - [1900] = 983, - [1901] = 945, - [1902] = 899, - [1903] = 961, - [1904] = 960, - [1905] = 874, - [1906] = 1019, - [1907] = 812, - [1908] = 995, - [1909] = 1020, - [1910] = 871, - [1911] = 776, - [1912] = 908, - [1913] = 888, - [1914] = 870, - [1915] = 909, - [1916] = 995, - [1917] = 871, - [1918] = 1026, - [1919] = 993, - [1920] = 999, - [1921] = 931, - [1922] = 989, - [1923] = 1002, - [1924] = 888, - [1925] = 932, - [1926] = 1003, - [1927] = 1000, - [1928] = 864, - [1929] = 1004, - [1930] = 972, - [1931] = 884, - [1932] = 933, - [1933] = 934, - [1934] = 899, - [1935] = 959, - [1936] = 973, - [1937] = 969, - [1938] = 891, - [1939] = 1019, - [1940] = 776, - [1941] = 935, - [1942] = 901, - [1943] = 974, - [1944] = 780, - [1945] = 781, - [1946] = 758, - [1947] = 902, - [1948] = 975, - [1949] = 862, - [1950] = 900, - [1951] = 960, - [1952] = 1005, - [1953] = 1006, - [1954] = 937, - [1955] = 1020, - [1956] = 1956, - [1957] = 776, - [1958] = 758, - [1959] = 780, - [1960] = 781, - [1961] = 1007, - [1962] = 760, - [1963] = 934, - [1964] = 961, - [1965] = 976, - [1966] = 935, - [1967] = 926, - [1968] = 950, - [1969] = 884, - [1970] = 977, - [1971] = 906, - [1972] = 1825, - [1973] = 874, - [1974] = 754, - [1975] = 893, - [1976] = 927, - [1977] = 978, - [1978] = 925, - [1979] = 926, - [1980] = 927, - [1981] = 928, - [1982] = 929, - [1983] = 930, - [1984] = 931, - [1985] = 932, - [1986] = 933, - [1987] = 994, - [1988] = 903, - [1989] = 872, - [1990] = 979, - [1991] = 1008, - [1992] = 955, - [1993] = 874, - [1994] = 951, - [1995] = 894, - [1996] = 907, - [1997] = 943, - [1998] = 1010, - [1999] = 895, - [2000] = 904, - [2001] = 905, - [2002] = 758, - [2003] = 928, - [2004] = 867, - [2005] = 869, - [2006] = 1001, - [2007] = 908, - [2008] = 1012, - [2009] = 888, - [2010] = 866, - [2011] = 930, - [2012] = 777, - [2013] = 759, - [2014] = 909, - [2015] = 937, - [2016] = 776, - [2017] = 785, - [2018] = 925, - [2019] = 780, - [2020] = 938, - [2021] = 896, - [2022] = 781, - [2023] = 956, - [2024] = 1023, - [2025] = 970, - [2026] = 962, - [2027] = 897, - [2028] = 940, - [2029] = 852, - [2030] = 941, - [2031] = 983, - [2032] = 963, - [2033] = 929, - [2034] = 990, - [2035] = 991, - [2036] = 760, - [2037] = 968, - [2038] = 898, - [2039] = 942, - [2040] = 1013, - [2041] = 873, - [2042] = 1014, - [2043] = 945, - [2044] = 777, - [2045] = 759, - [2046] = 1011, - [2047] = 1015, - [2048] = 984, - [2049] = 964, - [2050] = 957, - [2051] = 777, - [2052] = 759, - [2053] = 776, - [2054] = 780, - [2055] = 777, - [2056] = 759, - [2057] = 776, - [2058] = 780, - [2059] = 777, - [2060] = 759, - [2061] = 985, - [2062] = 992, - [2063] = 777, - [2064] = 759, - [2065] = 888, - [2066] = 790, - [2067] = 925, - [2068] = 926, - [2069] = 927, - [2070] = 928, - [2071] = 906, - [2072] = 907, - [2073] = 929, - [2074] = 908, - [2075] = 874, - [2076] = 909, - [2077] = 930, - [2078] = 966, - [2079] = 812, - [2080] = 1016, - [2081] = 996, - [2082] = 967, - [2083] = 934, - [2084] = 937, - [2085] = 864, - [2086] = 935, - [2087] = 931, - [2088] = 932, - [2089] = 874, - [2090] = 933, - [2091] = 997, - [2092] = 1025, - [2093] = 998, - [2094] = 812, - [2095] = 1026, - [2096] = 953, - [2097] = 754, - [2098] = 906, - [2099] = 907, - [2100] = 780, - [2101] = 776, - [2102] = 899, - [2103] = 908, - [2104] = 909, - [2105] = 962, - [2106] = 963, - [2107] = 964, - [2108] = 966, - [2109] = 967, - [2110] = 891, - [2111] = 968, - [2112] = 906, - [2113] = 969, - [2114] = 1011, - [2115] = 945, - [2116] = 925, - [2117] = 926, - [2118] = 927, - [2119] = 970, - [2120] = 928, - [2121] = 929, - [2122] = 930, - [2123] = 931, - [2124] = 932, - [2125] = 933, - [2126] = 925, - [2127] = 926, - [2128] = 927, - [2129] = 928, - [2130] = 929, - [2131] = 930, - [2132] = 776, - [2133] = 931, - [2134] = 780, - [2135] = 781, - [2136] = 932, - [2137] = 933, - [2138] = 972, - [2139] = 906, - [2140] = 780, - [2141] = 973, - [2142] = 974, - [2143] = 934, - [2144] = 907, - [2145] = 975, - [2146] = 908, - [2147] = 976, - [2148] = 758, - [2149] = 977, - [2150] = 978, - [2151] = 979, - [2152] = 935, - [2153] = 983, - [2154] = 908, - [2155] = 909, - [2156] = 984, - [2157] = 781, - [2158] = 985, - [2159] = 758, - [2160] = 909, - [2161] = 907, - [2162] = 888, - [2163] = 989, - [2164] = 990, - [2165] = 893, - [2166] = 991, - [2167] = 992, - [2168] = 993, - [2169] = 994, - [2170] = 995, - [2171] = 754, - [2172] = 997, - [2173] = 894, - [2174] = 998, - [2175] = 999, - [2176] = 1000, - [2177] = 1001, - [2178] = 2178, - [2179] = 895, - [2180] = 896, - [2181] = 2181, - [2182] = 777, - [2183] = 754, - [2184] = 1002, - [2185] = 1003, - [2186] = 1004, - [2187] = 1005, - [2188] = 1006, - [2189] = 1007, - [2190] = 1008, - [2191] = 1010, - [2192] = 950, - [2193] = 897, - [2194] = 906, - [2195] = 1012, - [2196] = 937, - [2197] = 996, - [2198] = 926, - [2199] = 927, - [2200] = 928, - [2201] = 929, - [2202] = 930, - [2203] = 931, - [2204] = 932, + [1606] = 913, + [1607] = 848, + [1608] = 833, + [1609] = 766, + [1610] = 1590, + [1611] = 730, + [1612] = 745, + [1613] = 825, + [1614] = 1590, + [1615] = 746, + [1616] = 796, + [1617] = 776, + [1618] = 787, + [1619] = 724, + [1620] = 792, + [1621] = 963, + [1622] = 729, + [1623] = 730, + [1624] = 731, + [1625] = 794, + [1626] = 719, + [1627] = 719, + [1628] = 1628, + [1629] = 1629, + [1630] = 770, + [1631] = 745, + [1632] = 746, + [1633] = 729, + [1634] = 740, + [1635] = 1635, + [1636] = 795, + [1637] = 771, + [1638] = 802, + [1639] = 1639, + [1640] = 737, + [1641] = 837, + [1642] = 796, + [1643] = 767, + [1644] = 799, + [1645] = 800, + [1646] = 803, + [1647] = 731, + [1648] = 783, + [1649] = 972, + [1650] = 745, + [1651] = 1651, + [1652] = 831, + [1653] = 829, + [1654] = 1654, + [1655] = 830, + [1656] = 777, + [1657] = 820, + [1658] = 784, + [1659] = 778, + [1660] = 751, + [1661] = 1661, + [1662] = 801, + [1663] = 1590, + [1664] = 718, + [1665] = 726, + [1666] = 780, + [1667] = 788, + [1668] = 758, + [1669] = 729, + [1670] = 729, + [1671] = 730, + [1672] = 1590, + [1673] = 745, + [1674] = 746, + [1675] = 1590, + [1676] = 746, + [1677] = 789, + [1678] = 730, + [1679] = 831, + [1680] = 834, + [1681] = 978, + [1682] = 914, + [1683] = 876, + [1684] = 1684, + [1685] = 816, + [1686] = 833, + [1687] = 884, + [1688] = 928, + [1689] = 994, + [1690] = 861, + [1691] = 854, + [1692] = 962, + [1693] = 809, + [1694] = 959, + [1695] = 834, + [1696] = 937, + [1697] = 862, + [1698] = 875, + [1699] = 863, + [1700] = 930, + [1701] = 858, + [1702] = 918, + [1703] = 1703, + [1704] = 922, + [1705] = 815, + [1706] = 864, + [1707] = 1707, + [1708] = 847, + [1709] = 951, + [1710] = 856, + [1711] = 857, + [1712] = 814, + [1713] = 847, + [1714] = 920, + [1715] = 915, + [1716] = 894, + [1717] = 886, + [1718] = 878, + [1719] = 921, + [1720] = 923, + [1721] = 895, + [1722] = 933, + [1723] = 943, + [1724] = 896, + [1725] = 964, + [1726] = 897, + [1727] = 898, + [1728] = 899, + [1729] = 965, + [1730] = 885, + [1731] = 912, + [1732] = 718, + [1733] = 924, + [1734] = 987, + [1735] = 834, + [1736] = 882, + [1737] = 925, + [1738] = 887, + [1739] = 859, + [1740] = 871, + [1741] = 900, + [1742] = 870, + [1743] = 888, + [1744] = 962, + [1745] = 931, + [1746] = 866, + [1747] = 820, + [1748] = 1707, + [1749] = 901, + [1750] = 867, + [1751] = 833, + [1752] = 883, + [1753] = 860, + [1754] = 970, + [1755] = 829, + [1756] = 957, + [1757] = 847, + [1758] = 902, + [1759] = 927, + [1760] = 903, + [1761] = 904, + [1762] = 909, + [1763] = 910, + [1764] = 973, + [1765] = 974, + [1766] = 868, + [1767] = 936, + [1768] = 855, + [1769] = 807, + [1770] = 1707, + [1771] = 796, + [1772] = 916, + [1773] = 813, + [1774] = 917, + [1775] = 955, + [1776] = 911, + [1777] = 724, + [1778] = 865, + [1779] = 881, + [1780] = 958, + [1781] = 796, + [1782] = 942, + [1783] = 945, + [1784] = 952, + [1785] = 967, + [1786] = 835, + [1787] = 954, + [1788] = 836, + [1789] = 945, + [1790] = 833, + [1791] = 867, + [1792] = 834, + [1793] = 942, + [1794] = 869, + [1795] = 834, + [1796] = 939, + [1797] = 941, + [1798] = 950, + [1799] = 953, + [1800] = 956, + [1801] = 958, + [1802] = 960, + [1803] = 961, + [1804] = 966, + [1805] = 952, + [1806] = 954, + [1807] = 820, + [1808] = 825, + [1809] = 1809, + [1810] = 847, + [1811] = 869, + [1812] = 847, + [1813] = 939, + [1814] = 967, + [1815] = 854, + [1816] = 941, + [1817] = 968, + [1818] = 968, + [1819] = 831, + [1820] = 847, + [1821] = 953, + [1822] = 1707, + [1823] = 945, + [1824] = 719, + [1825] = 838, + [1826] = 942, + [1827] = 956, + [1828] = 834, + [1829] = 856, + [1830] = 958, + [1831] = 960, + [1832] = 869, + [1833] = 961, + [1834] = 966, + [1835] = 857, + [1836] = 939, + [1837] = 941, + [1838] = 950, + [1839] = 953, + [1840] = 956, + [1841] = 933, + [1842] = 960, + [1843] = 961, + [1844] = 966, + [1845] = 963, + [1846] = 952, + [1847] = 967, + [1848] = 847, + [1849] = 968, + [1850] = 972, + [1851] = 837, + [1852] = 830, + [1853] = 848, + [1854] = 796, + [1855] = 954, + [1856] = 718, + [1857] = 834, + [1858] = 829, + [1859] = 950, + [1860] = 952, + [1861] = 1861, + [1862] = 1861, + [1863] = 1861, + [1864] = 1864, + [1865] = 1861, + [1866] = 1861, + [1867] = 1861, + [1868] = 868, + [1869] = 1861, + [1870] = 1861, + [1871] = 729, + [1872] = 1861, + [1873] = 1861, + [1874] = 730, + [1875] = 731, + [1876] = 1861, + [1877] = 1861, + [1878] = 1861, + [1879] = 875, + [1880] = 1864, + [1881] = 1861, + [1882] = 1861, + [1883] = 729, + [1884] = 730, + [1885] = 1861, + [1886] = 942, + [1887] = 1861, + [1888] = 876, + [1889] = 749, + [1890] = 1861, + [1891] = 1861, + [1892] = 854, + [1893] = 945, + [1894] = 955, + [1895] = 959, + [1896] = 880, + [1897] = 954, + [1898] = 968, + [1899] = 1861, + [1900] = 1861, + [1901] = 962, + [1902] = 1864, + [1903] = 942, + [1904] = 1861, + [1905] = 855, + [1906] = 881, + [1907] = 856, + [1908] = 882, + [1909] = 883, + [1910] = 884, + [1911] = 857, + [1912] = 885, + [1913] = 952, + [1914] = 954, + [1915] = 887, + [1916] = 888, + [1917] = 1864, + [1918] = 1918, + [1919] = 1864, + [1920] = 719, + [1921] = 894, + [1922] = 895, + [1923] = 896, + [1924] = 897, + [1925] = 898, + [1926] = 899, + [1927] = 900, + [1928] = 902, + [1929] = 1861, + [1930] = 903, + [1931] = 904, + [1932] = 942, + [1933] = 909, + [1934] = 910, + [1935] = 939, + [1936] = 941, + [1937] = 950, + [1938] = 953, + [1939] = 956, + [1940] = 958, + [1941] = 960, + [1942] = 961, + [1943] = 966, + [1944] = 945, + [1945] = 1861, + [1946] = 952, + [1947] = 954, + [1948] = 1864, + [1949] = 1864, + [1950] = 911, + [1951] = 1864, + [1952] = 912, + [1953] = 913, + [1954] = 914, + [1955] = 915, + [1956] = 916, + [1957] = 917, + [1958] = 918, + [1959] = 921, + [1960] = 957, + [1961] = 901, + [1962] = 970, + [1963] = 963, + [1964] = 964, + [1965] = 965, + [1966] = 1864, + [1967] = 922, + [1968] = 923, + [1969] = 920, + [1970] = 847, + [1971] = 924, + [1972] = 925, + [1973] = 1861, + [1974] = 1861, + [1975] = 962, + [1976] = 928, + [1977] = 994, + [1978] = 869, + [1979] = 939, + [1980] = 941, + [1981] = 950, + [1982] = 953, + [1983] = 956, + [1984] = 958, + [1985] = 960, + [1986] = 961, + [1987] = 966, + [1988] = 1861, + [1989] = 1864, + [1990] = 869, + [1991] = 870, + [1992] = 931, + [1993] = 1861, + [1994] = 1864, + [1995] = 1864, + [1996] = 1864, + [1997] = 952, + [1998] = 954, + [1999] = 718, + [2000] = 1864, + [2001] = 869, + [2002] = 871, + [2003] = 878, + [2004] = 858, + [2005] = 1861, + [2006] = 1864, + [2007] = 834, + [2008] = 945, + [2009] = 1861, + [2010] = 859, + [2011] = 1864, + [2012] = 886, + [2013] = 933, + [2014] = 745, + [2015] = 746, + [2016] = 939, + [2017] = 941, + [2018] = 950, + [2019] = 953, + [2020] = 956, + [2021] = 958, + [2022] = 960, + [2023] = 961, + [2024] = 966, + [2025] = 967, + [2026] = 860, + [2027] = 1864, + [2028] = 968, + [2029] = 1864, + [2030] = 861, + [2031] = 745, + [2032] = 746, + [2033] = 862, + [2034] = 937, + [2035] = 863, + [2036] = 864, + [2037] = 1864, + [2038] = 939, + [2039] = 941, + [2040] = 950, + [2041] = 953, + [2042] = 956, + [2043] = 958, + [2044] = 960, + [2045] = 961, + [2046] = 966, + [2047] = 967, + [2048] = 968, + [2049] = 865, + [2050] = 866, + [2051] = 927, + [2052] = 972, + [2053] = 936, + [2054] = 973, + [2055] = 1861, + [2056] = 974, + [2057] = 867, + [2058] = 978, + [2059] = 1861, + [2060] = 987, + [2061] = 1864, + [2062] = 967, + [2063] = 968, + [2064] = 1864, + [2065] = 1864, + [2066] = 869, + [2067] = 1864, + [2068] = 796, + [2069] = 1864, + [2070] = 1861, + [2071] = 942, + [2072] = 943, + [2073] = 967, + [2074] = 944, + [2075] = 945, + [2076] = 1864, + [2077] = 1864, + [2078] = 1861, + [2079] = 951, + [2080] = 930, + [2081] = 730, + [2082] = 941, + [2083] = 950, + [2084] = 953, + [2085] = 956, + [2086] = 958, + [2087] = 960, + [2088] = 961, + [2089] = 966, + [2090] = 967, + [2091] = 968, + [2092] = 745, + [2093] = 834, + [2094] = 729, + [2095] = 730, + [2096] = 731, + [2097] = 745, + [2098] = 746, + [2099] = 729, + [2100] = 745, + [2101] = 939, + [2102] = 942, + [2103] = 719, + [2104] = 847, + [2105] = 729, + [2106] = 730, + [2107] = 945, + [2108] = 869, + [2109] = 730, + [2110] = 746, + [2111] = 746, + [2112] = 952, + [2113] = 834, + [2114] = 954, + [2115] = 729, + [2116] = 796, + [2117] = 731, + [2118] = 745, + [2119] = 746, + [2120] = 833, + [2121] = 847, + [2122] = 953, + [2123] = 730, + [2124] = 953, + [2125] = 956, + [2126] = 958, + [2127] = 960, + [2128] = 729, + [2129] = 745, + [2130] = 847, + [2131] = 869, + [2132] = 834, + [2133] = 869, + [2134] = 939, + [2135] = 941, + [2136] = 950, + [2137] = 956, + [2138] = 958, + [2139] = 960, + [2140] = 961, + [2141] = 966, + [2142] = 967, + [2143] = 950, + [2144] = 968, + [2145] = 820, + [2146] = 731, + [2147] = 719, + [2148] = 961, + [2149] = 833, + [2150] = 847, + [2151] = 746, + [2152] = 966, + [2153] = 967, + [2154] = 939, + [2155] = 942, + [2156] = 945, + [2157] = 952, + [2158] = 745, + [2159] = 746, + [2160] = 954, + [2161] = 968, + [2162] = 941, + [2163] = 729, + [2164] = 942, + [2165] = 945, + [2166] = 952, + [2167] = 954, + [2168] = 730, + [2169] = 967, + [2170] = 941, + [2171] = 968, + [2172] = 950, + [2173] = 953, + [2174] = 956, + [2175] = 939, + [2176] = 941, + [2177] = 958, + [2178] = 950, + [2179] = 960, + [2180] = 954, + [2181] = 942, + [2182] = 945, + [2183] = 952, + [2184] = 954, + [2185] = 952, + [2186] = 961, + [2187] = 953, + [2188] = 966, + [2189] = 869, + [2190] = 967, + [2191] = 960, + [2192] = 968, + [2193] = 942, + [2194] = 961, + [2195] = 939, + [2196] = 966, + [2197] = 869, + [2198] = 956, + [2199] = 834, + [2200] = 945, + [2201] = 958, + [2202] = 960, + [2203] = 2203, + [2204] = 958, [2205] = 933, - [2206] = 934, - [2207] = 1013, - [2208] = 1014, - [2209] = 943, - [2210] = 935, - [2211] = 1015, - [2212] = 898, - [2213] = 1016, - [2214] = 934, - [2215] = 925, - [2216] = 926, - [2217] = 927, - [2218] = 928, - [2219] = 929, - [2220] = 930, - [2221] = 931, - [2222] = 932, - [2223] = 933, - [2224] = 951, - [2225] = 903, - [2226] = 937, - [2227] = 1019, - [2228] = 953, - [2229] = 1020, - [2230] = 812, - [2231] = 776, - [2232] = 780, - [2233] = 777, - [2234] = 759, - [2235] = 934, - [2236] = 935, - [2237] = 785, - [2238] = 777, - [2239] = 759, - [2240] = 937, - [2241] = 938, - [2242] = 899, - [2243] = 1023, - [2244] = 955, - [2245] = 956, - [2246] = 957, - [2247] = 906, - [2248] = 907, - [2249] = 940, - [2250] = 907, - [2251] = 941, - [2252] = 759, - [2253] = 776, - [2254] = 780, - [2255] = 781, - [2256] = 908, - [2257] = 909, - [2258] = 777, - [2259] = 759, - [2260] = 904, - [2261] = 1025, - [2262] = 776, - [2263] = 780, - [2264] = 776, - [2265] = 874, - [2266] = 905, - [2267] = 942, - [2268] = 937, - [2269] = 900, - [2270] = 901, - [2271] = 902, - [2272] = 758, - [2273] = 959, - [2274] = 1026, - [2275] = 777, - [2276] = 935, - [2277] = 759, - [2278] = 960, - [2279] = 780, - [2280] = 777, - [2281] = 759, - [2282] = 961, - [2283] = 925, - [2284] = 888, - [2285] = 2285, - [2286] = 2286, - [2287] = 760, - [2288] = 2285, - [2289] = 2285, - [2290] = 2285, - [2291] = 2286, - [2292] = 2285, - [2293] = 2285, - [2294] = 2285, - [2295] = 872, - [2296] = 2285, - [2297] = 2286, - [2298] = 2285, - [2299] = 2285, - [2300] = 2285, - [2301] = 758, - [2302] = 2285, - [2303] = 2285, - [2304] = 2286, - [2305] = 2285, - [2306] = 2285, - [2307] = 2285, - [2308] = 2285, - [2309] = 2286, - [2310] = 2286, - [2311] = 2285, - [2312] = 2285, - [2313] = 2286, - [2314] = 2286, - [2315] = 2286, - [2316] = 2285, - [2317] = 906, - [2318] = 2286, - [2319] = 2285, - [2320] = 2286, - [2321] = 2286, - [2322] = 2285, - [2323] = 2286, - [2324] = 2286, - [2325] = 2286, - [2326] = 754, - [2327] = 2286, - [2328] = 2285, - [2329] = 907, - [2330] = 2285, - [2331] = 2285, - [2332] = 2286, - [2333] = 2285, - [2334] = 2286, - [2335] = 2286, - [2336] = 2286, - [2337] = 2286, - [2338] = 2286, - [2339] = 2286, - [2340] = 2286, - [2341] = 2285, - [2342] = 2286, - [2343] = 776, - [2344] = 780, - [2345] = 781, - [2346] = 776, - [2347] = 780, - [2348] = 888, - [2349] = 2286, - [2350] = 2286, - [2351] = 2286, - [2352] = 2286, - [2353] = 2286, - [2354] = 777, - [2355] = 759, - [2356] = 2286, - [2357] = 2286, - [2358] = 2286, - [2359] = 2286, - [2360] = 776, - [2361] = 780, - [2362] = 781, - [2363] = 777, - [2364] = 759, - [2365] = 2286, - [2366] = 908, - [2367] = 777, - [2368] = 2286, - [2369] = 776, - [2370] = 780, - [2371] = 2286, - [2372] = 909, - [2373] = 2286, - [2374] = 776, - [2375] = 780, - [2376] = 2286, - [2377] = 2286, - [2378] = 2286, - [2379] = 2286, - [2380] = 2285, - [2381] = 2286, - [2382] = 2286, - [2383] = 2286, - [2384] = 2286, - [2385] = 2286, - [2386] = 2286, - [2387] = 2286, - [2388] = 2285, - [2389] = 777, - [2390] = 759, - [2391] = 2285, - [2392] = 2285, - [2393] = 754, - [2394] = 776, - [2395] = 780, - [2396] = 781, - [2397] = 2286, - [2398] = 812, - [2399] = 777, - [2400] = 759, - [2401] = 2286, - [2402] = 2285, - [2403] = 2285, - [2404] = 925, - [2405] = 758, - [2406] = 2285, - [2407] = 926, - [2408] = 927, - [2409] = 928, - [2410] = 929, - [2411] = 930, - [2412] = 931, - [2413] = 932, - [2414] = 933, - [2415] = 874, - [2416] = 934, - [2417] = 874, - [2418] = 2285, - [2419] = 937, - [2420] = 2285, - [2421] = 2285, - [2422] = 2285, - [2423] = 935, - [2424] = 2285, - [2425] = 2285, - [2426] = 2286, - [2427] = 2285, - [2428] = 2286, - [2429] = 777, - [2430] = 759, - [2431] = 2285, - [2432] = 2285, - [2433] = 2285, - [2434] = 2285, - [2435] = 2285, - [2436] = 759, - [2437] = 927, + [2206] = 967, + [2207] = 2207, + [2208] = 2207, + [2209] = 2203, + [2210] = 961, + [2211] = 939, + [2212] = 716, + [2213] = 2213, + [2214] = 941, + [2215] = 966, + [2216] = 2207, + [2217] = 967, + [2218] = 2207, + [2219] = 2219, + [2220] = 950, + [2221] = 968, + [2222] = 953, + [2223] = 2223, + [2224] = 956, + [2225] = 968, + [2226] = 2226, + [2227] = 939, + [2228] = 941, + [2229] = 950, + [2230] = 953, + [2231] = 956, + [2232] = 958, + [2233] = 960, + [2234] = 961, + [2235] = 966, + [2236] = 2226, + [2237] = 2237, + [2238] = 2207, + [2239] = 950, + [2240] = 966, + [2241] = 967, + [2242] = 2242, + [2243] = 953, + [2244] = 956, + [2245] = 2245, + [2246] = 2246, + [2247] = 958, + [2248] = 960, + [2249] = 956, + [2250] = 2246, + [2251] = 961, + [2252] = 966, + [2253] = 2246, + [2254] = 967, + [2255] = 961, + [2256] = 968, + [2257] = 953, + [2258] = 958, + [2259] = 968, + [2260] = 950, + [2261] = 939, + [2262] = 939, + [2263] = 950, + [2264] = 2264, + [2265] = 2245, + [2266] = 968, + [2267] = 967, + [2268] = 950, + [2269] = 953, + [2270] = 956, + [2271] = 958, + [2272] = 956, + [2273] = 960, + [2274] = 939, + [2275] = 941, + [2276] = 2246, + [2277] = 2264, + [2278] = 939, + [2279] = 941, + [2280] = 961, + [2281] = 966, + [2282] = 2264, + [2283] = 2264, + [2284] = 958, + [2285] = 967, + [2286] = 960, + [2287] = 966, + [2288] = 960, + [2289] = 2246, + [2290] = 941, + [2291] = 968, + [2292] = 953, + [2293] = 961, + [2294] = 941, + [2295] = 966, + [2296] = 950, + [2297] = 968, + [2298] = 967, + [2299] = 2299, + [2300] = 2300, + [2301] = 960, + [2302] = 2302, + [2303] = 958, + [2304] = 2304, + [2305] = 2304, + [2306] = 2300, + [2307] = 1036, + [2308] = 2304, + [2309] = 2300, + [2310] = 939, + [2311] = 961, + [2312] = 2304, + [2313] = 956, + [2314] = 941, + [2315] = 2304, + [2316] = 953, + [2317] = 2300, + [2318] = 2300, + [2319] = 2302, + [2320] = 2320, + [2321] = 2321, + [2322] = 2322, + [2323] = 2323, + [2324] = 2320, + [2325] = 2321, + [2326] = 2326, + [2327] = 2322, + [2328] = 2323, + [2329] = 2329, + [2330] = 2330, + [2331] = 2331, + [2332] = 2332, + [2333] = 2333, + [2334] = 2322, + [2335] = 2320, + [2336] = 2320, + [2337] = 2321, + [2338] = 2329, + [2339] = 2320, + [2340] = 2321, + [2341] = 939, + [2342] = 941, + [2343] = 950, + [2344] = 953, + [2345] = 958, + [2346] = 960, + [2347] = 961, + [2348] = 966, + [2349] = 967, + [2350] = 968, + [2351] = 2329, + [2352] = 2329, + [2353] = 2322, + [2354] = 2323, + [2355] = 2322, + [2356] = 2323, + [2357] = 2357, + [2358] = 2358, + [2359] = 939, + [2360] = 941, + [2361] = 950, + [2362] = 953, + [2363] = 956, + [2364] = 958, + [2365] = 960, + [2366] = 961, + [2367] = 966, + [2368] = 967, + [2369] = 968, + [2370] = 956, + [2371] = 958, + [2372] = 956, + [2373] = 958, + [2374] = 960, + [2375] = 2375, + [2376] = 961, + [2377] = 966, + [2378] = 967, + [2379] = 968, + [2380] = 2380, + [2381] = 2381, + [2382] = 2380, + [2383] = 2383, + [2384] = 2380, + [2385] = 2385, + [2386] = 2383, + [2387] = 2380, + [2388] = 2380, + [2389] = 2389, + [2390] = 2383, + [2391] = 2380, + [2392] = 2375, + [2393] = 2393, + [2394] = 2380, + [2395] = 2380, + [2396] = 2381, + [2397] = 790, + [2398] = 802, + [2399] = 2383, + [2400] = 2375, + [2401] = 939, + [2402] = 941, + [2403] = 950, + [2404] = 953, + [2405] = 956, + [2406] = 950, + [2407] = 953, + [2408] = 961, + [2409] = 966, + [2410] = 967, + [2411] = 968, + [2412] = 2380, + [2413] = 2381, + [2414] = 2380, + [2415] = 2380, + [2416] = 2381, + [2417] = 2380, + [2418] = 2375, + [2419] = 2380, + [2420] = 2380, + [2421] = 2380, + [2422] = 2380, + [2423] = 2380, + [2424] = 2380, + [2425] = 2380, + [2426] = 2380, + [2427] = 2383, + [2428] = 2380, + [2429] = 939, + [2430] = 941, + [2431] = 2380, + [2432] = 2380, + [2433] = 2380, + [2434] = 2375, + [2435] = 2380, + [2436] = 2381, + [2437] = 960, [2438] = 931, - [2439] = 776, - [2440] = 932, - [2441] = 926, - [2442] = 906, - [2443] = 933, - [2444] = 934, - [2445] = 907, - [2446] = 929, - [2447] = 759, - [2448] = 781, - [2449] = 935, - [2450] = 776, - [2451] = 780, - [2452] = 932, - [2453] = 933, - [2454] = 908, - [2455] = 930, - [2456] = 909, - [2457] = 852, - [2458] = 776, - [2459] = 776, - [2460] = 928, - [2461] = 925, - [2462] = 780, - [2463] = 759, - [2464] = 935, - [2465] = 777, - [2466] = 926, - [2467] = 759, - [2468] = 872, - [2469] = 780, - [2470] = 777, - [2471] = 929, - [2472] = 760, - [2473] = 758, - [2474] = 777, - [2475] = 874, - [2476] = 937, - [2477] = 937, - [2478] = 934, - [2479] = 781, - [2480] = 777, - [2481] = 759, - [2482] = 754, - [2483] = 906, - [2484] = 907, - [2485] = 758, - [2486] = 908, - [2487] = 909, - [2488] = 927, - [2489] = 931, - [2490] = 928, - [2491] = 925, - [2492] = 930, - [2493] = 874, - [2494] = 888, - [2495] = 780, - [2496] = 932, - [2497] = 776, - [2498] = 780, - [2499] = 777, - [2500] = 759, - [2501] = 758, - [2502] = 930, - [2503] = 925, - [2504] = 929, - [2505] = 777, - [2506] = 759, - [2507] = 926, - [2508] = 929, - [2509] = 934, - [2510] = 927, - [2511] = 776, - [2512] = 909, - [2513] = 933, - [2514] = 937, - [2515] = 758, - [2516] = 906, - [2517] = 781, - [2518] = 930, - [2519] = 931, - [2520] = 908, - [2521] = 906, - [2522] = 907, - [2523] = 908, - [2524] = 909, - [2525] = 888, - [2526] = 932, - [2527] = 931, - [2528] = 935, - [2529] = 933, - [2530] = 937, - [2531] = 907, - [2532] = 935, - [2533] = 934, - [2534] = 928, - [2535] = 925, - [2536] = 926, - [2537] = 927, - [2538] = 928, - [2539] = 780, - [2540] = 935, - [2541] = 759, - [2542] = 780, - [2543] = 781, - [2544] = 934, - [2545] = 2545, - [2546] = 776, - [2547] = 780, - [2548] = 777, - [2549] = 929, - [2550] = 930, - [2551] = 927, - [2552] = 759, - [2553] = 2545, - [2554] = 931, - [2555] = 752, - [2556] = 930, - [2557] = 776, - [2558] = 1026, - [2559] = 933, - [2560] = 2560, - [2561] = 2545, - [2562] = 776, - [2563] = 2563, - [2564] = 777, - [2565] = 2545, - [2566] = 2566, - [2567] = 931, - [2568] = 932, - [2569] = 758, - [2570] = 776, - [2571] = 780, - [2572] = 777, - [2573] = 926, + [2439] = 951, + [2440] = 965, + [2441] = 974, + [2442] = 807, + [2443] = 963, + [2444] = 964, + [2445] = 957, + [2446] = 972, + [2447] = 973, + [2448] = 815, + [2449] = 959, + [2450] = 2450, + [2451] = 937, + [2452] = 813, + [2453] = 816, + [2454] = 944, + [2455] = 943, + [2456] = 838, + [2457] = 2457, + [2458] = 836, + [2459] = 2459, + [2460] = 2460, + [2461] = 2461, + [2462] = 901, + [2463] = 2463, + [2464] = 920, + [2465] = 2465, + [2466] = 2466, + [2467] = 2465, + [2468] = 2466, + [2469] = 2466, + [2470] = 2465, + [2471] = 2466, + [2472] = 2465, + [2473] = 2473, + [2474] = 2465, + [2475] = 2466, + [2476] = 2476, + [2477] = 2477, + [2478] = 2477, + [2479] = 2479, + [2480] = 2477, + [2481] = 2477, + [2482] = 2479, + [2483] = 2477, + [2484] = 2479, + [2485] = 2477, + [2486] = 2477, + [2487] = 2479, + [2488] = 2479, + [2489] = 2489, + [2490] = 724, + [2491] = 2491, + [2492] = 742, + [2493] = 2491, + [2494] = 2489, + [2495] = 2495, + [2496] = 2495, + [2497] = 2497, + [2498] = 2498, + [2499] = 2495, + [2500] = 2500, + [2501] = 2495, + [2502] = 2500, + [2503] = 2500, + [2504] = 2495, + [2505] = 2505, + [2506] = 2500, + [2507] = 2500, + [2508] = 2498, + [2509] = 2497, + [2510] = 2505, + [2511] = 742, + [2512] = 716, + [2513] = 718, + [2514] = 2514, + [2515] = 2514, + [2516] = 2516, + [2517] = 767, + [2518] = 787, + [2519] = 2514, + [2520] = 2514, + [2521] = 2514, + [2522] = 2514, + [2523] = 2523, + [2524] = 2524, + [2525] = 2525, + [2526] = 723, + [2527] = 2523, + [2528] = 2524, + [2529] = 2529, + [2530] = 734, + [2531] = 2525, + [2532] = 724, + [2533] = 2533, + [2534] = 2534, + [2535] = 2535, + [2536] = 2529, + [2537] = 743, + [2538] = 2538, + [2539] = 2539, + [2540] = 1639, + [2541] = 2541, + [2542] = 2542, + [2543] = 2543, + [2544] = 2544, + [2545] = 2541, + [2546] = 2546, + [2547] = 729, + [2548] = 730, + [2549] = 2549, + [2550] = 776, + [2551] = 2542, + [2552] = 718, + [2553] = 729, + [2554] = 2554, + [2555] = 719, + [2556] = 730, + [2557] = 2541, + [2558] = 731, + [2559] = 745, + [2560] = 745, + [2561] = 746, + [2562] = 2541, + [2563] = 746, + [2564] = 2541, + [2565] = 2565, + [2566] = 2541, + [2567] = 2567, + [2568] = 2541, + [2569] = 2565, + [2570] = 2570, + [2571] = 2541, + [2572] = 802, + [2573] = 2573, [2574] = 2574, - [2575] = 933, - [2576] = 928, - [2577] = 759, + [2575] = 2575, + [2576] = 2576, + [2577] = 2577, [2578] = 2578, - [2579] = 2574, - [2580] = 925, - [2581] = 929, - [2582] = 780, - [2583] = 932, - [2584] = 781, - [2585] = 925, - [2586] = 926, - [2587] = 935, - [2588] = 777, - [2589] = 2563, - [2590] = 759, - [2591] = 2545, - [2592] = 927, - [2593] = 928, - [2594] = 934, - [2595] = 2545, - [2596] = 2596, - [2597] = 926, - [2598] = 927, - [2599] = 2599, - [2600] = 928, - [2601] = 929, - [2602] = 930, - [2603] = 925, - [2604] = 932, - [2605] = 933, - [2606] = 2606, - [2607] = 934, - [2608] = 935, - [2609] = 925, - [2610] = 926, - [2611] = 927, - [2612] = 928, - [2613] = 929, - [2614] = 2596, - [2615] = 930, - [2616] = 931, - [2617] = 932, - [2618] = 933, - [2619] = 776, - [2620] = 780, - [2621] = 781, - [2622] = 934, - [2623] = 776, - [2624] = 780, - [2625] = 935, - [2626] = 934, - [2627] = 777, - [2628] = 759, - [2629] = 2629, - [2630] = 935, - [2631] = 2599, - [2632] = 2606, - [2633] = 925, - [2634] = 2606, - [2635] = 926, - [2636] = 927, - [2637] = 928, - [2638] = 929, - [2639] = 930, - [2640] = 931, - [2641] = 925, - [2642] = 926, - [2643] = 927, - [2644] = 928, - [2645] = 929, - [2646] = 930, - [2647] = 931, - [2648] = 932, - [2649] = 933, - [2650] = 777, - [2651] = 759, - [2652] = 932, - [2653] = 933, - [2654] = 2599, - [2655] = 935, - [2656] = 2606, - [2657] = 2599, - [2658] = 2606, - [2659] = 934, - [2660] = 2660, - [2661] = 2599, - [2662] = 2606, - [2663] = 931, - [2664] = 2664, - [2665] = 926, + [2579] = 2579, + [2580] = 2575, + [2581] = 2575, + [2582] = 2576, + [2583] = 2583, + [2584] = 786, + [2585] = 2583, + [2586] = 2583, + [2587] = 2577, + [2588] = 2588, + [2589] = 2589, + [2590] = 2589, + [2591] = 820, + [2592] = 2592, + [2593] = 2592, + [2594] = 2583, + [2595] = 2575, + [2596] = 2575, + [2597] = 2589, + [2598] = 2589, + [2599] = 2575, + [2600] = 2583, + [2601] = 2601, + [2602] = 2589, + [2603] = 2583, + [2604] = 2573, + [2605] = 2575, + [2606] = 2589, + [2607] = 2588, + [2608] = 2575, + [2609] = 2574, + [2610] = 2610, + [2611] = 2575, + [2612] = 2612, + [2613] = 718, + [2614] = 848, + [2615] = 825, + [2616] = 833, + [2617] = 829, + [2618] = 790, + [2619] = 837, + [2620] = 834, + [2621] = 835, + [2622] = 807, + [2623] = 830, + [2624] = 2624, + [2625] = 743, + [2626] = 2626, + [2627] = 836, + [2628] = 838, + [2629] = 2626, + [2630] = 719, + [2631] = 2631, + [2632] = 745, + [2633] = 867, + [2634] = 868, + [2635] = 746, + [2636] = 718, + [2637] = 745, + [2638] = 2638, + [2639] = 875, + [2640] = 876, + [2641] = 854, + [2642] = 880, + [2643] = 881, + [2644] = 882, + [2645] = 883, + [2646] = 884, + [2647] = 766, + [2648] = 885, + [2649] = 887, + [2650] = 888, + [2651] = 746, + [2652] = 894, + [2653] = 814, + [2654] = 895, + [2655] = 896, + [2656] = 897, + [2657] = 898, + [2658] = 899, + [2659] = 900, + [2660] = 902, + [2661] = 903, + [2662] = 904, + [2663] = 745, + [2664] = 909, + [2665] = 910, [2666] = 2666, - [2667] = 925, - [2668] = 928, - [2669] = 929, - [2670] = 930, - [2671] = 931, - [2672] = 932, - [2673] = 933, - [2674] = 934, - [2675] = 2664, - [2676] = 2676, - [2677] = 2676, - [2678] = 2676, - [2679] = 2679, - [2680] = 2664, - [2681] = 1046, - [2682] = 935, - [2683] = 2676, - [2684] = 2676, - [2685] = 2664, - [2686] = 2676, - [2687] = 2664, - [2688] = 2664, - [2689] = 927, - [2690] = 2690, - [2691] = 2691, - [2692] = 927, - [2693] = 2690, - [2694] = 2694, - [2695] = 2666, - [2696] = 928, - [2697] = 929, - [2698] = 2698, - [2699] = 2699, - [2700] = 2698, - [2701] = 2699, + [2667] = 911, + [2668] = 2631, + [2669] = 912, + [2670] = 913, + [2671] = 914, + [2672] = 915, + [2673] = 916, + [2674] = 917, + [2675] = 918, + [2676] = 2666, + [2677] = 921, + [2678] = 745, + [2679] = 746, + [2680] = 922, + [2681] = 923, + [2682] = 924, + [2683] = 925, + [2684] = 746, + [2685] = 2631, + [2686] = 2686, + [2687] = 928, + [2688] = 994, + [2689] = 2666, + [2690] = 930, + [2691] = 931, + [2692] = 937, + [2693] = 2666, + [2694] = 787, + [2695] = 2695, + [2696] = 729, + [2697] = 813, + [2698] = 943, + [2699] = 944, + [2700] = 951, + [2701] = 955, [2702] = 2702, - [2703] = 2699, - [2704] = 930, - [2705] = 933, - [2706] = 2691, - [2707] = 2707, - [2708] = 2691, - [2709] = 2690, - [2710] = 935, - [2711] = 2694, - [2712] = 2712, - [2713] = 2713, - [2714] = 931, - [2715] = 2690, - [2716] = 2694, - [2717] = 925, - [2718] = 926, - [2719] = 926, - [2720] = 927, - [2721] = 928, - [2722] = 929, - [2723] = 930, - [2724] = 2691, - [2725] = 931, - [2726] = 932, - [2727] = 933, - [2728] = 2698, - [2729] = 2698, - [2730] = 2699, - [2731] = 2731, - [2732] = 2732, - [2733] = 932, - [2734] = 934, - [2735] = 2691, - [2736] = 2694, - [2737] = 934, - [2738] = 935, - [2739] = 2698, - [2740] = 2699, - [2741] = 2741, - [2742] = 2690, - [2743] = 2691, - [2744] = 2698, - [2745] = 2694, - [2746] = 925, - [2747] = 2747, - [2748] = 2748, - [2749] = 2748, - [2750] = 2748, - [2751] = 2748, - [2752] = 2747, - [2753] = 2753, - [2754] = 925, - [2755] = 926, - [2756] = 2748, - [2757] = 927, - [2758] = 928, - [2759] = 929, - [2760] = 930, - [2761] = 931, - [2762] = 932, - [2763] = 933, - [2764] = 2748, - [2765] = 2748, - [2766] = 2766, - [2767] = 2748, - [2768] = 2748, - [2769] = 925, - [2770] = 926, - [2771] = 2748, - [2772] = 2753, - [2773] = 927, - [2774] = 928, - [2775] = 929, - [2776] = 930, - [2777] = 931, - [2778] = 932, - [2779] = 933, - [2780] = 934, - [2781] = 935, - [2782] = 2748, - [2783] = 2748, - [2784] = 934, - [2785] = 2748, - [2786] = 2748, - [2787] = 2748, + [2703] = 2703, + [2704] = 957, + [2705] = 2705, + [2706] = 815, + [2707] = 959, + [2708] = 816, + [2709] = 730, + [2710] = 731, + [2711] = 2702, + [2712] = 718, + [2713] = 963, + [2714] = 964, + [2715] = 965, + [2716] = 972, + [2717] = 973, + [2718] = 974, + [2719] = 2719, + [2720] = 729, + [2721] = 730, + [2722] = 729, + [2723] = 749, + [2724] = 2695, + [2725] = 2719, + [2726] = 786, + [2727] = 729, + [2728] = 2702, + [2729] = 730, + [2730] = 2638, + [2731] = 2666, + [2732] = 719, + [2733] = 987, + [2734] = 730, + [2735] = 731, + [2736] = 855, + [2737] = 856, + [2738] = 857, + [2739] = 2631, + [2740] = 2702, + [2741] = 767, + [2742] = 858, + [2743] = 2702, + [2744] = 2702, + [2745] = 859, + [2746] = 860, + [2747] = 861, + [2748] = 862, + [2749] = 863, + [2750] = 864, + [2751] = 865, + [2752] = 866, + [2753] = 2631, + [2754] = 2754, + [2755] = 2755, + [2756] = 2756, + [2757] = 801, + [2758] = 2758, + [2759] = 2754, + [2760] = 2760, + [2761] = 2758, + [2762] = 2758, + [2763] = 2755, + [2764] = 2764, + [2765] = 2756, + [2766] = 2758, + [2767] = 2755, + [2768] = 2768, + [2769] = 2755, + [2770] = 2755, + [2771] = 2771, + [2772] = 786, + [2773] = 2768, + [2774] = 2760, + [2775] = 2768, + [2776] = 2768, + [2777] = 2768, + [2778] = 2755, + [2779] = 2758, + [2780] = 2771, + [2781] = 2781, + [2782] = 790, + [2783] = 2758, + [2784] = 2784, + [2785] = 2785, + [2786] = 2786, + [2787] = 2787, [2788] = 2788, - [2789] = 2748, - [2790] = 2753, - [2791] = 2788, - [2792] = 820, - [2793] = 2747, - [2794] = 2788, - [2795] = 2753, - [2796] = 797, - [2797] = 2748, - [2798] = 2753, - [2799] = 2748, - [2800] = 2748, + [2789] = 742, + [2790] = 2790, + [2791] = 2791, + [2792] = 2516, + [2793] = 2785, + [2794] = 2794, + [2795] = 2795, + [2796] = 2796, + [2797] = 2797, + [2798] = 2798, + [2799] = 2799, + [2800] = 2800, [2801] = 2801, - [2802] = 2802, - [2803] = 935, - [2804] = 2747, - [2805] = 2748, - [2806] = 2753, - [2807] = 2788, - [2808] = 2747, - [2809] = 2748, - [2810] = 2788, - [2811] = 2747, - [2812] = 2748, - [2813] = 2748, - [2814] = 2788, - [2815] = 2748, - [2816] = 2748, - [2817] = 891, - [2818] = 847, - [2819] = 898, - [2820] = 844, - [2821] = 904, - [2822] = 903, - [2823] = 845, - [2824] = 848, - [2825] = 905, + [2802] = 2801, + [2803] = 2803, + [2804] = 2804, + [2805] = 2805, + [2806] = 2785, + [2807] = 2807, + [2808] = 2808, + [2809] = 2809, + [2810] = 2785, + [2811] = 2801, + [2812] = 2785, + [2813] = 719, + [2814] = 2814, + [2815] = 2815, + [2816] = 2816, + [2817] = 2785, + [2818] = 2818, + [2819] = 2819, + [2820] = 2820, + [2821] = 2821, + [2822] = 2801, + [2823] = 2823, + [2824] = 786, + [2825] = 2825, [2826] = 2826, - [2827] = 893, - [2828] = 1025, - [2829] = 895, - [2830] = 902, - [2831] = 894, - [2832] = 900, - [2833] = 901, - [2834] = 897, + [2827] = 2827, + [2828] = 2828, + [2829] = 2829, + [2830] = 2830, + [2831] = 2831, + [2832] = 2832, + [2833] = 2833, + [2834] = 2834, [2835] = 2835, - [2836] = 884, - [2837] = 864, + [2836] = 2836, + [2837] = 2837, [2838] = 2838, - [2839] = 1011, - [2840] = 2840, - [2841] = 2841, - [2842] = 2842, - [2843] = 996, - [2844] = 2178, + [2839] = 2839, + [2840] = 2801, + [2841] = 724, + [2842] = 719, + [2843] = 2843, + [2844] = 2844, [2845] = 2845, [2846] = 2846, - [2847] = 2846, + [2847] = 2847, [2848] = 2848, - [2849] = 2848, - [2850] = 2846, - [2851] = 2848, - [2852] = 2848, - [2853] = 2848, - [2854] = 2846, - [2855] = 2846, - [2856] = 2846, - [2857] = 2848, + [2849] = 2849, + [2850] = 731, + [2851] = 729, + [2852] = 745, + [2853] = 2853, + [2854] = 729, + [2855] = 2845, + [2856] = 730, + [2857] = 731, [2858] = 2858, - [2859] = 2858, - [2860] = 2858, - [2861] = 2858, - [2862] = 2862, - [2863] = 2862, - [2864] = 2858, - [2865] = 2862, - [2866] = 2858, - [2867] = 2858, - [2868] = 2862, - [2869] = 2862, - [2870] = 2862, - [2871] = 2871, - [2872] = 2858, - [2873] = 2858, - [2874] = 2874, - [2875] = 2874, - [2876] = 2876, - [2877] = 2876, + [2859] = 2859, + [2860] = 2860, + [2861] = 746, + [2862] = 745, + [2863] = 746, + [2864] = 2864, + [2865] = 2865, + [2866] = 2866, + [2867] = 2847, + [2868] = 2868, + [2869] = 729, + [2870] = 730, + [2871] = 730, + [2872] = 760, + [2873] = 2847, + [2874] = 2860, + [2875] = 745, + [2876] = 746, + [2877] = 2877, [2878] = 2878, - [2879] = 2878, - [2880] = 2880, - [2881] = 2881, - [2882] = 2882, - [2883] = 2878, - [2884] = 2882, - [2885] = 2885, - [2886] = 2882, - [2887] = 2880, - [2888] = 2882, - [2889] = 2881, - [2890] = 2878, - [2891] = 2878, - [2892] = 2882, - [2893] = 2885, - [2894] = 2894, - [2895] = 818, - [2896] = 2894, - [2897] = 2894, - [2898] = 2894, - [2899] = 2894, - [2900] = 752, - [2901] = 2894, - [2902] = 782, - [2903] = 801, - [2904] = 2904, - [2905] = 774, - [2906] = 2904, + [2879] = 2865, + [2880] = 2866, + [2881] = 2846, + [2882] = 2847, + [2883] = 2883, + [2884] = 2878, + [2885] = 2848, + [2886] = 2847, + [2887] = 2864, + [2888] = 2853, + [2889] = 2877, + [2890] = 2890, + [2891] = 2891, + [2892] = 2892, + [2893] = 2891, + [2894] = 2847, + [2895] = 745, + [2896] = 2890, + [2897] = 2868, + [2898] = 730, + [2899] = 746, + [2900] = 2847, + [2901] = 2883, + [2902] = 718, + [2903] = 2859, + [2904] = 729, + [2905] = 2905, + [2906] = 2906, [2907] = 2907, - [2908] = 2907, + [2908] = 2906, [2909] = 2909, [2910] = 2910, - [2911] = 2911, - [2912] = 2912, + [2911] = 718, + [2912] = 2827, [2913] = 2913, - [2914] = 773, - [2915] = 761, - [2916] = 2911, + [2914] = 2914, + [2915] = 2910, + [2916] = 2916, [2917] = 2917, - [2918] = 2909, - [2919] = 2919, + [2918] = 718, + [2919] = 2906, [2920] = 2920, - [2921] = 2921, - [2922] = 782, + [2921] = 2906, + [2922] = 2922, [2923] = 2923, - [2924] = 2923, - [2925] = 2925, - [2926] = 827, - [2927] = 2923, - [2928] = 2923, - [2929] = 2923, - [2930] = 2178, + [2924] = 2924, + [2925] = 2916, + [2926] = 2916, + [2927] = 2927, + [2928] = 2928, + [2929] = 743, + [2930] = 2917, [2931] = 2931, - [2932] = 2923, - [2933] = 2923, + [2932] = 2932, + [2933] = 2916, [2934] = 2934, - [2935] = 760, + [2935] = 2932, [2936] = 2936, - [2937] = 2923, + [2937] = 2937, [2938] = 2938, - [2939] = 2939, - [2940] = 2938, - [2941] = 2941, + [2939] = 2916, + [2940] = 2906, + [2941] = 2916, [2942] = 2942, - [2943] = 2939, - [2944] = 2938, + [2943] = 726, + [2944] = 2934, [2945] = 2945, - [2946] = 2945, + [2946] = 2946, [2947] = 2947, - [2948] = 2948, - [2949] = 2938, - [2950] = 797, - [2951] = 2947, - [2952] = 2938, - [2953] = 2953, - [2954] = 852, - [2955] = 2947, - [2956] = 760, - [2957] = 754, - [2958] = 2947, - [2959] = 2959, - [2960] = 2953, - [2961] = 2947, - [2962] = 2942, - [2963] = 782, - [2964] = 2948, + [2948] = 2928, + [2949] = 2949, + [2950] = 2937, + [2951] = 2949, + [2952] = 2952, + [2953] = 2906, + [2954] = 2923, + [2955] = 2913, + [2956] = 2906, + [2957] = 2906, + [2958] = 2922, + [2959] = 2916, + [2960] = 2960, + [2961] = 2961, + [2962] = 2962, + [2963] = 2963, + [2964] = 2964, [2965] = 2965, - [2966] = 2947, - [2967] = 2947, + [2966] = 2966, + [2967] = 2967, [2968] = 2968, - [2969] = 2938, + [2969] = 2969, [2970] = 2970, - [2971] = 2938, + [2971] = 2971, [2972] = 2972, - [2973] = 754, - [2974] = 2972, - [2975] = 888, - [2976] = 862, - [2977] = 2972, + [2973] = 2966, + [2974] = 2974, + [2975] = 737, + [2976] = 718, + [2977] = 2977, [2978] = 2978, - [2979] = 871, - [2980] = 870, - [2981] = 864, + [2979] = 2859, + [2980] = 2980, + [2981] = 2967, [2982] = 2982, - [2983] = 2972, - [2984] = 2972, - [2985] = 820, - [2986] = 873, - [2987] = 782, - [2988] = 2988, - [2989] = 872, - [2990] = 2972, + [2983] = 2983, + [2984] = 2969, + [2985] = 2795, + [2986] = 2986, + [2987] = 2987, + [2988] = 749, + [2989] = 2964, + [2990] = 740, [2991] = 2991, - [2992] = 773, - [2993] = 867, - [2994] = 869, - [2995] = 2972, + [2992] = 2992, + [2993] = 2993, + [2994] = 2859, + [2995] = 2995, [2996] = 2996, - [2997] = 2978, - [2998] = 2998, - [2999] = 782, + [2997] = 2997, + [2998] = 2968, + [2999] = 749, [3000] = 3000, - [3001] = 844, - [3002] = 884, - [3003] = 2982, - [3004] = 3000, - [3005] = 2998, - [3006] = 2972, - [3007] = 754, - [3008] = 760, - [3009] = 818, - [3010] = 3010, - [3011] = 3011, - [3012] = 847, - [3013] = 898, - [3014] = 1013, - [3015] = 3010, - [3016] = 1014, - [3017] = 3011, - [3018] = 3011, - [3019] = 983, - [3020] = 760, - [3021] = 1015, - [3022] = 1016, - [3023] = 972, - [3024] = 3024, - [3025] = 1019, - [3026] = 758, - [3027] = 848, - [3028] = 1020, - [3029] = 754, - [3030] = 1023, + [3001] = 3001, + [3002] = 3002, + [3003] = 3003, + [3004] = 3004, + [3005] = 719, + [3006] = 2995, + [3007] = 3007, + [3008] = 2997, + [3009] = 3009, + [3010] = 2982, + [3011] = 3000, + [3012] = 2980, + [3013] = 833, + [3014] = 3014, + [3015] = 2996, + [3016] = 741, + [3017] = 2960, + [3018] = 2983, + [3019] = 2971, + [3020] = 3020, + [3021] = 3021, + [3022] = 801, + [3023] = 3002, + [3024] = 3014, + [3025] = 3021, + [3026] = 3026, + [3027] = 3007, + [3028] = 3028, + [3029] = 3029, + [3030] = 758, [3031] = 3031, - [3032] = 1025, - [3033] = 754, - [3034] = 984, - [3035] = 3035, - [3036] = 970, - [3037] = 864, - [3038] = 985, - [3039] = 900, - [3040] = 901, - [3041] = 902, - [3042] = 884, - [3043] = 903, - [3044] = 904, - [3045] = 905, - [3046] = 3031, - [3047] = 973, + [3032] = 3032, + [3033] = 3033, + [3034] = 3029, + [3035] = 3031, + [3036] = 760, + [3037] = 3032, + [3038] = 3028, + [3039] = 3039, + [3040] = 3040, + [3041] = 3041, + [3042] = 3039, + [3043] = 3029, + [3044] = 3032, + [3045] = 2983, + [3046] = 3028, + [3047] = 3047, [3048] = 3048, - [3049] = 974, - [3050] = 3011, - [3051] = 989, - [3052] = 849, - [3053] = 990, - [3054] = 891, - [3055] = 991, - [3056] = 992, - [3057] = 993, - [3058] = 994, - [3059] = 995, - [3060] = 975, - [3061] = 997, - [3062] = 998, - [3063] = 782, - [3064] = 999, - [3065] = 969, - [3066] = 1000, - [3067] = 1001, - [3068] = 3010, - [3069] = 845, + [3049] = 3049, + [3050] = 3028, + [3051] = 3051, + [3052] = 802, + [3053] = 3033, + [3054] = 2859, + [3055] = 3031, + [3056] = 3029, + [3057] = 3057, + [3058] = 719, + [3059] = 788, + [3060] = 3031, + [3061] = 3032, + [3062] = 770, + [3063] = 792, + [3064] = 794, + [3065] = 771, + [3066] = 795, + [3067] = 3039, + [3068] = 2982, + [3069] = 2859, [3070] = 3070, - [3071] = 893, - [3072] = 3010, - [3073] = 894, - [3074] = 3011, - [3075] = 801, - [3076] = 3076, - [3077] = 3048, - [3078] = 3078, - [3079] = 895, - [3080] = 3010, - [3081] = 3048, - [3082] = 976, - [3083] = 1002, - [3084] = 896, - [3085] = 977, - [3086] = 1003, - [3087] = 1004, - [3088] = 1005, - [3089] = 3048, - [3090] = 953, - [3091] = 1006, - [3092] = 785, - [3093] = 1007, - [3094] = 1008, - [3095] = 3048, - [3096] = 1010, - [3097] = 978, - [3098] = 979, - [3099] = 3048, - [3100] = 3010, - [3101] = 3076, - [3102] = 790, - [3103] = 955, - [3104] = 956, - [3105] = 957, - [3106] = 3011, - [3107] = 3048, - [3108] = 959, - [3109] = 754, - [3110] = 960, - [3111] = 1012, - [3112] = 961, - [3113] = 897, - [3114] = 962, - [3115] = 963, - [3116] = 964, - [3117] = 966, - [3118] = 967, - [3119] = 968, - [3120] = 3070, - [3121] = 780, - [3122] = 754, - [3123] = 3123, - [3124] = 3124, - [3125] = 3124, - [3126] = 758, - [3127] = 776, - [3128] = 777, - [3129] = 759, - [3130] = 3130, - [3131] = 796, - [3132] = 3132, + [3071] = 799, + [3072] = 800, + [3073] = 803, + [3074] = 2997, + [3075] = 777, + [3076] = 783, + [3077] = 784, + [3078] = 778, + [3079] = 801, + [3080] = 751, + [3081] = 780, + [3082] = 3028, + [3083] = 3083, + [3084] = 2859, + [3085] = 3039, + [3086] = 719, + [3087] = 757, + [3088] = 761, + [3089] = 3039, + [3090] = 762, + [3091] = 763, + [3092] = 764, + [3093] = 3028, + [3094] = 765, + [3095] = 768, + [3096] = 772, + [3097] = 773, + [3098] = 774, + [3099] = 775, + [3100] = 789, + [3101] = 3101, + [3102] = 3102, + [3103] = 3103, + [3104] = 3032, + [3105] = 3105, + [3106] = 3033, + [3107] = 3031, + [3108] = 3108, + [3109] = 807, + [3110] = 3029, + [3111] = 3111, + [3112] = 3033, + [3113] = 3031, + [3114] = 3114, + [3115] = 3032, + [3116] = 3116, + [3117] = 3117, + [3118] = 2764, + [3119] = 749, + [3120] = 2920, + [3121] = 729, + [3122] = 730, + [3123] = 731, + [3124] = 760, + [3125] = 3039, + [3126] = 3028, + [3127] = 729, + [3128] = 730, + [3129] = 2995, + [3130] = 2982, + [3131] = 2983, + [3132] = 2764, [3133] = 3133, - [3134] = 3132, - [3135] = 3132, - [3136] = 3133, - [3137] = 776, - [3138] = 780, - [3139] = 781, - [3140] = 776, - [3141] = 758, - [3142] = 780, - [3143] = 777, - [3144] = 759, - [3145] = 788, - [3146] = 781, - [3147] = 3132, - [3148] = 776, - [3149] = 3123, - [3150] = 820, - [3151] = 780, - [3152] = 3124, - [3153] = 3153, - [3154] = 3132, - [3155] = 3123, - [3156] = 3156, - [3157] = 3157, - [3158] = 3124, - [3159] = 754, - [3160] = 777, - [3161] = 759, - [3162] = 754, - [3163] = 3157, - [3164] = 3153, - [3165] = 3123, - [3166] = 3124, - [3167] = 3167, - [3168] = 3124, - [3169] = 3123, - [3170] = 782, - [3171] = 760, - [3172] = 3132, - [3173] = 3123, - [3174] = 777, - [3175] = 759, - [3176] = 3156, + [3134] = 3007, + [3135] = 745, + [3136] = 746, + [3137] = 3039, + [3138] = 745, + [3139] = 746, + [3140] = 3029, + [3141] = 2949, + [3142] = 2937, + [3143] = 3083, + [3144] = 3111, + [3145] = 3049, + [3146] = 3101, + [3147] = 2949, + [3148] = 2937, + [3149] = 3033, + [3150] = 2995, + [3151] = 3007, + [3152] = 2997, + [3153] = 3033, + [3154] = 3057, + [3155] = 3040, + [3156] = 3041, + [3157] = 3047, + [3158] = 779, + [3159] = 3159, + [3160] = 3160, + [3161] = 2983, + [3162] = 3162, + [3163] = 3163, + [3164] = 2949, + [3165] = 3165, + [3166] = 3166, + [3167] = 2937, + [3168] = 3168, + [3169] = 3169, + [3170] = 729, + [3171] = 2949, + [3172] = 730, + [3173] = 731, + [3174] = 3174, + [3175] = 3160, + [3176] = 2764, [3177] = 3177, - [3178] = 3178, + [3178] = 2937, [3179] = 3179, [3180] = 3180, [3181] = 3181, - [3182] = 3182, - [3183] = 3183, + [3182] = 729, + [3183] = 730, [3184] = 3184, [3185] = 3185, - [3186] = 3179, - [3187] = 3187, - [3188] = 759, - [3189] = 3189, - [3190] = 3190, - [3191] = 758, + [3186] = 3186, + [3187] = 3160, + [3188] = 3174, + [3189] = 729, + [3190] = 3174, + [3191] = 730, [3192] = 3192, - [3193] = 3180, + [3193] = 731, [3194] = 3194, - [3195] = 758, - [3196] = 3196, + [3195] = 3195, + [3196] = 3160, [3197] = 3197, - [3198] = 776, - [3199] = 780, - [3200] = 781, - [3201] = 777, - [3202] = 759, - [3203] = 3179, - [3204] = 781, - [3205] = 759, + [3198] = 3198, + [3199] = 3199, + [3200] = 3200, + [3201] = 3174, + [3202] = 3202, + [3203] = 3194, + [3204] = 3204, + [3205] = 3205, [3206] = 3206, - [3207] = 3179, + [3207] = 3207, [3208] = 3208, - [3209] = 3209, + [3209] = 3179, [3210] = 3210, - [3211] = 3211, + [3211] = 786, [3212] = 3212, [3213] = 3213, - [3214] = 3214, - [3215] = 3180, - [3216] = 777, - [3217] = 3180, - [3218] = 3180, - [3219] = 3219, - [3220] = 754, - [3221] = 3221, + [3214] = 786, + [3215] = 3215, + [3216] = 2764, + [3217] = 729, + [3218] = 730, + [3219] = 719, + [3220] = 745, + [3221] = 746, [3222] = 3222, - [3223] = 3223, + [3223] = 3174, [3224] = 3224, - [3225] = 3225, - [3226] = 788, - [3227] = 776, - [3228] = 3228, - [3229] = 3229, - [3230] = 780, + [3225] = 3205, + [3226] = 3174, + [3227] = 3200, + [3228] = 745, + [3229] = 746, + [3230] = 3230, [3231] = 3231, - [3232] = 3180, + [3232] = 3174, [3233] = 3233, [3234] = 3234, - [3235] = 780, - [3236] = 3236, + [3235] = 3210, + [3236] = 3160, [3237] = 3237, - [3238] = 3238, - [3239] = 3180, - [3240] = 777, - [3241] = 758, - [3242] = 3242, - [3243] = 3243, - [3244] = 776, - [3245] = 780, - [3246] = 777, - [3247] = 759, + [3238] = 3165, + [3239] = 3160, + [3240] = 3160, + [3241] = 3206, + [3242] = 2859, + [3243] = 2977, + [3244] = 3174, + [3245] = 3245, + [3246] = 3246, + [3247] = 3247, [3248] = 3248, - [3249] = 2970, - [3250] = 3179, - [3251] = 3251, - [3252] = 3252, - [3253] = 776, + [3249] = 3249, + [3250] = 3250, + [3251] = 3174, + [3252] = 3174, + [3253] = 3253, [3254] = 3254, - [3255] = 3255, - [3256] = 3179, - [3257] = 3257, - [3258] = 3258, - [3259] = 3259, - [3260] = 3260, - [3261] = 3261, - [3262] = 3262, - [3263] = 3260, - [3264] = 3264, - [3265] = 3258, - [3266] = 3258, - [3267] = 3267, - [3268] = 3268, - [3269] = 3269, - [3270] = 3264, - [3271] = 3268, - [3272] = 3272, - [3273] = 3269, + [3255] = 3174, + [3256] = 3174, + [3257] = 3174, + [3258] = 2995, + [3259] = 745, + [3260] = 746, + [3261] = 3174, + [3262] = 745, + [3263] = 746, + [3264] = 3224, + [3265] = 3174, + [3266] = 3174, + [3267] = 3162, + [3268] = 3174, + [3269] = 3174, + [3270] = 3174, + [3271] = 3174, + [3272] = 2949, + [3273] = 3174, [3274] = 3274, - [3275] = 3272, + [3275] = 3174, [3276] = 3276, - [3277] = 3277, - [3278] = 758, - [3279] = 758, - [3280] = 3280, - [3281] = 3258, - [3282] = 776, - [3283] = 780, - [3284] = 781, - [3285] = 777, - [3286] = 759, - [3287] = 3287, - [3288] = 782, - [3289] = 776, - [3290] = 780, - [3291] = 781, - [3292] = 777, - [3293] = 759, - [3294] = 3258, - [3295] = 813, - [3296] = 760, - [3297] = 3258, - [3298] = 3298, - [3299] = 758, - [3300] = 3261, - [3301] = 3298, - [3302] = 3274, - [3303] = 754, - [3304] = 3304, - [3305] = 776, - [3306] = 780, - [3307] = 777, - [3308] = 759, - [3309] = 754, - [3310] = 3277, - [3311] = 782, - [3312] = 3312, - [3313] = 3258, - [3314] = 760, - [3315] = 3258, - [3316] = 776, - [3317] = 780, - [3318] = 777, - [3319] = 759, - [3320] = 3276, - [3321] = 3312, - [3322] = 3304, - [3323] = 3280, - [3324] = 3262, - [3325] = 3325, + [3277] = 3207, + [3278] = 3234, + [3279] = 3202, + [3280] = 3174, + [3281] = 2937, + [3282] = 3174, + [3283] = 3283, + [3284] = 3204, + [3285] = 2914, + [3286] = 3159, + [3287] = 3160, + [3288] = 3174, + [3289] = 2982, + [3290] = 3174, + [3291] = 3291, + [3292] = 2764, + [3293] = 3293, + [3294] = 2965, + [3295] = 3295, + [3296] = 3159, + [3297] = 3245, + [3298] = 3295, + [3299] = 3299, + [3300] = 3163, + [3301] = 3166, + [3302] = 3159, + [3303] = 3299, + [3304] = 3169, + [3305] = 3305, + [3306] = 3291, + [3307] = 3283, + [3308] = 3177, + [3309] = 3248, + [3310] = 3250, + [3311] = 3213, + [3312] = 3185, + [3313] = 2764, + [3314] = 3314, + [3315] = 3315, + [3316] = 3314, + [3317] = 3314, + [3318] = 3318, + [3319] = 3319, + [3320] = 3320, + [3321] = 3314, + [3322] = 3314, + [3323] = 3323, + [3324] = 3324, + [3325] = 3314, [3326] = 3326, - [3327] = 3325, - [3328] = 3328, - [3329] = 3329, - [3330] = 3330, - [3331] = 3331, - [3332] = 776, - [3333] = 780, - [3334] = 781, - [3335] = 3330, - [3336] = 3336, - [3337] = 777, - [3338] = 759, - [3339] = 776, - [3340] = 780, + [3327] = 3318, + [3328] = 3318, + [3329] = 3318, + [3330] = 3318, + [3331] = 731, + [3332] = 3314, + [3333] = 3324, + [3334] = 3324, + [3335] = 3318, + [3336] = 3318, + [3337] = 3337, + [3338] = 791, + [3339] = 766, + [3340] = 3318, [3341] = 3341, - [3342] = 3341, - [3343] = 777, - [3344] = 759, - [3345] = 3345, - [3346] = 754, + [3342] = 3315, + [3343] = 746, + [3344] = 3314, + [3345] = 2962, + [3346] = 3318, [3347] = 3347, - [3348] = 754, - [3349] = 754, - [3350] = 3252, - [3351] = 776, + [3348] = 2949, + [3349] = 3326, + [3350] = 3350, + [3351] = 3351, [3352] = 3352, - [3353] = 3353, - [3354] = 758, - [3355] = 3355, - [3356] = 3356, - [3357] = 3357, - [3358] = 780, - [3359] = 781, - [3360] = 3360, - [3361] = 3361, + [3353] = 3318, + [3354] = 2764, + [3355] = 3318, + [3356] = 3318, + [3357] = 3314, + [3358] = 3352, + [3359] = 3315, + [3360] = 3315, + [3361] = 3318, [3362] = 3362, - [3363] = 777, - [3364] = 759, - [3365] = 3328, - [3366] = 777, - [3367] = 759, - [3368] = 780, - [3369] = 3369, - [3370] = 759, - [3371] = 3325, - [3372] = 3336, - [3373] = 3369, - [3374] = 3356, - [3375] = 3326, - [3376] = 3355, - [3377] = 3328, - [3378] = 3378, - [3379] = 776, - [3380] = 780, - [3381] = 781, - [3382] = 3329, - [3383] = 3383, - [3384] = 777, - [3385] = 759, - [3386] = 3386, - [3387] = 773, - [3388] = 3325, - [3389] = 776, - [3390] = 780, - [3391] = 777, - [3392] = 759, - [3393] = 772, - [3394] = 776, - [3395] = 777, - [3396] = 3325, - [3397] = 3328, - [3398] = 3328, - [3399] = 3325, - [3400] = 776, - [3401] = 780, - [3402] = 777, - [3403] = 759, - [3404] = 3328, - [3405] = 3328, - [3406] = 781, - [3407] = 3328, + [3363] = 3314, + [3364] = 3352, + [3365] = 3314, + [3366] = 3366, + [3367] = 3318, + [3368] = 3318, + [3369] = 3318, + [3370] = 3318, + [3371] = 3314, + [3372] = 3314, + [3373] = 3373, + [3374] = 3318, + [3375] = 729, + [3376] = 2992, + [3377] = 3337, + [3378] = 3314, + [3379] = 3379, + [3380] = 3318, + [3381] = 3318, + [3382] = 3020, + [3383] = 3318, + [3384] = 3384, + [3385] = 3318, + [3386] = 3318, + [3387] = 3387, + [3388] = 3337, + [3389] = 3389, + [3390] = 3318, + [3391] = 3391, + [3392] = 786, + [3393] = 3347, + [3394] = 2937, + [3395] = 3350, + [3396] = 3396, + [3397] = 3318, + [3398] = 3318, + [3399] = 3318, + [3400] = 3314, + [3401] = 3318, + [3402] = 745, + [3403] = 746, + [3404] = 3341, + [3405] = 786, + [3406] = 3318, + [3407] = 3407, [3408] = 3408, - [3409] = 3409, - [3410] = 3410, - [3411] = 3325, - [3412] = 3360, - [3413] = 3413, + [3409] = 729, + [3410] = 730, + [3411] = 3318, + [3412] = 3318, + [3413] = 3318, [3414] = 3414, [3415] = 3415, - [3416] = 3378, - [3417] = 776, - [3418] = 780, - [3419] = 3383, - [3420] = 758, + [3416] = 3416, + [3417] = 3318, + [3418] = 3318, + [3419] = 3326, + [3420] = 3318, [3421] = 3421, - [3422] = 3422, + [3422] = 3416, [3423] = 3423, - [3424] = 3424, - [3425] = 785, - [3426] = 3426, - [3427] = 3427, + [3424] = 3326, + [3425] = 3318, + [3426] = 3318, + [3427] = 3314, [3428] = 3428, - [3429] = 3429, - [3430] = 781, + [3429] = 3314, + [3430] = 3324, [3431] = 3431, - [3432] = 3432, - [3433] = 777, - [3434] = 759, - [3435] = 3435, - [3436] = 782, - [3437] = 872, - [3438] = 3438, - [3439] = 3439, - [3440] = 3440, - [3441] = 3441, - [3442] = 3442, - [3443] = 3443, - [3444] = 3444, - [3445] = 3421, - [3446] = 3446, - [3447] = 3447, - [3448] = 3448, - [3449] = 776, - [3450] = 780, - [3451] = 777, - [3452] = 759, - [3453] = 3424, - [3454] = 3260, - [3455] = 796, - [3456] = 3456, - [3457] = 3457, - [3458] = 3428, - [3459] = 2970, - [3460] = 3460, - [3461] = 3461, - [3462] = 3462, - [3463] = 3448, - [3464] = 3431, - [3465] = 769, - [3466] = 3466, - [3467] = 3467, - [3468] = 3438, - [3469] = 785, - [3470] = 754, - [3471] = 3260, - [3472] = 3443, - [3473] = 3473, - [3474] = 3474, - [3475] = 3475, - [3476] = 3441, - [3477] = 3447, - [3478] = 758, - [3479] = 3473, - [3480] = 3474, - [3481] = 3475, - [3482] = 3444, - [3483] = 3192, - [3484] = 3432, - [3485] = 776, - [3486] = 3442, - [3487] = 766, - [3488] = 3439, + [3432] = 3314, + [3433] = 3314, + [3434] = 3434, + [3435] = 3324, + [3436] = 3318, + [3437] = 3318, + [3438] = 3318, + [3439] = 3350, + [3440] = 3318, + [3441] = 3318, + [3442] = 3314, + [3443] = 3337, + [3444] = 3314, + [3445] = 3314, + [3446] = 3351, + [3447] = 3318, + [3448] = 3341, + [3449] = 3449, + [3450] = 3009, + [3451] = 3337, + [3452] = 2965, + [3453] = 3352, + [3454] = 745, + [3455] = 3318, + [3456] = 3314, + [3457] = 3326, + [3458] = 3314, + [3459] = 3318, + [3460] = 3318, + [3461] = 3350, + [3462] = 3351, + [3463] = 3318, + [3464] = 3352, + [3465] = 3379, + [3466] = 2965, + [3467] = 3315, + [3468] = 3314, + [3469] = 3341, + [3470] = 3318, + [3471] = 3314, + [3472] = 3351, + [3473] = 3314, + [3474] = 3318, + [3475] = 3350, + [3476] = 3351, + [3477] = 3431, + [3478] = 3318, + [3479] = 3318, + [3480] = 3318, + [3481] = 730, + [3482] = 3318, + [3483] = 3318, + [3484] = 3484, + [3485] = 3341, + [3486] = 3486, + [3487] = 3487, + [3488] = 3488, [3489] = 3489, - [3490] = 763, + [3490] = 3490, [3491] = 3491, - [3492] = 3492, - [3493] = 3492, - [3494] = 780, + [3492] = 3491, + [3493] = 3493, + [3494] = 3494, [3495] = 3495, [3496] = 3496, - [3497] = 776, - [3498] = 780, - [3499] = 777, - [3500] = 759, - [3501] = 3474, + [3497] = 3491, + [3498] = 3498, + [3499] = 3499, + [3500] = 3496, + [3501] = 3501, [3502] = 3502, - [3503] = 836, - [3504] = 832, + [3503] = 3502, + [3504] = 3504, [3505] = 3505, [3506] = 3506, - [3507] = 3506, - [3508] = 3167, + [3507] = 3507, + [3508] = 3499, [3509] = 3509, - [3510] = 814, + [3510] = 3510, [3511] = 3511, - [3512] = 3512, - [3513] = 840, + [3512] = 3486, + [3513] = 3494, [3514] = 3514, - [3515] = 758, - [3516] = 3438, - [3517] = 813, - [3518] = 788, - [3519] = 824, - [3520] = 826, - [3521] = 3506, - [3522] = 3502, - [3523] = 3523, - [3524] = 3443, - [3525] = 3502, - [3526] = 813, - [3527] = 829, + [3515] = 3496, + [3516] = 3516, + [3517] = 3517, + [3518] = 3518, + [3519] = 3499, + [3520] = 3494, + [3521] = 3505, + [3522] = 3501, + [3523] = 3518, + [3524] = 3524, + [3525] = 3496, + [3526] = 3526, + [3527] = 3527, [3528] = 3528, - [3529] = 3506, - [3530] = 3496, - [3531] = 3531, - [3532] = 823, - [3533] = 3528, - [3534] = 781, - [3535] = 3502, - [3536] = 780, - [3537] = 3537, - [3538] = 3514, - [3539] = 3260, - [3540] = 815, - [3541] = 3514, - [3542] = 788, - [3543] = 3378, - [3544] = 3514, + [3529] = 3529, + [3530] = 3007, + [3531] = 3504, + [3532] = 3532, + [3533] = 3533, + [3534] = 3526, + [3535] = 3486, + [3536] = 3518, + [3537] = 3499, + [3538] = 3505, + [3539] = 3539, + [3540] = 3540, + [3541] = 3526, + [3542] = 3496, + [3543] = 3529, + [3544] = 3544, [3545] = 3545, - [3546] = 3414, - [3547] = 3341, - [3548] = 3548, - [3549] = 797, - [3550] = 3548, - [3551] = 3473, - [3552] = 3511, + [3546] = 3546, + [3547] = 3486, + [3548] = 3518, + [3549] = 3494, + [3550] = 3517, + [3551] = 3499, + [3552] = 3499, [3553] = 3553, - [3554] = 3554, - [3555] = 3378, - [3556] = 3341, - [3557] = 3514, - [3558] = 839, - [3559] = 758, - [3560] = 3531, - [3561] = 830, - [3562] = 777, - [3563] = 759, - [3564] = 796, - [3565] = 805, - [3566] = 3531, - [3567] = 806, - [3568] = 758, - [3569] = 3528, - [3570] = 3570, - [3571] = 3473, - [3572] = 3474, - [3573] = 3475, - [3574] = 3506, - [3575] = 835, - [3576] = 3528, - [3577] = 807, - [3578] = 3554, - [3579] = 816, - [3580] = 3553, - [3581] = 3531, - [3582] = 3502, - [3583] = 811, - [3584] = 3528, - [3585] = 3531, - [3586] = 3260, - [3587] = 825, - [3588] = 819, - [3589] = 3167, - [3590] = 844, - [3591] = 3591, - [3592] = 789, - [3593] = 3528, - [3594] = 3594, - [3595] = 3506, - [3596] = 822, - [3597] = 3531, - [3598] = 785, - [3599] = 828, - [3600] = 776, - [3601] = 780, - [3602] = 781, - [3603] = 3260, - [3604] = 821, - [3605] = 3502, - [3606] = 787, - [3607] = 3607, - [3608] = 3528, - [3609] = 804, - [3610] = 3443, - [3611] = 3438, - [3612] = 3496, + [3554] = 3506, + [3555] = 3555, + [3556] = 3556, + [3557] = 3526, + [3558] = 3540, + [3559] = 3526, + [3560] = 3494, + [3561] = 3496, + [3562] = 3509, + [3563] = 3545, + [3564] = 3526, + [3565] = 3565, + [3566] = 3502, + [3567] = 3567, + [3568] = 3496, + [3569] = 3544, + [3570] = 3504, + [3571] = 3506, + [3572] = 3540, + [3573] = 3565, + [3574] = 3574, + [3575] = 3506, + [3576] = 3486, + [3577] = 3577, + [3578] = 3502, + [3579] = 3518, + [3580] = 3504, + [3581] = 3540, + [3582] = 3491, + [3583] = 3517, + [3584] = 3584, + [3585] = 3491, + [3586] = 3586, + [3587] = 3524, + [3588] = 3505, + [3589] = 3529, + [3590] = 3486, + [3591] = 3501, + [3592] = 3518, + [3593] = 3526, + [3594] = 2995, + [3595] = 2982, + [3596] = 2983, + [3597] = 3529, + [3598] = 3524, + [3599] = 3486, + [3600] = 3518, + [3601] = 3601, + [3602] = 2997, + [3603] = 3494, + [3604] = 3604, + [3605] = 3499, + [3606] = 3517, + [3607] = 3524, + [3608] = 3544, + [3609] = 3506, + [3610] = 3506, + [3611] = 3540, + [3612] = 3544, [3613] = 3613, - [3614] = 841, + [3614] = 3529, [3615] = 3615, - [3616] = 3475, - [3617] = 833, - [3618] = 3502, - [3619] = 777, - [3620] = 3496, - [3621] = 759, - [3622] = 3514, - [3623] = 786, - [3624] = 776, - [3625] = 3512, - [3626] = 837, - [3627] = 3496, - [3628] = 3537, - [3629] = 3496, - [3630] = 3630, + [3616] = 3517, + [3617] = 3617, + [3618] = 3618, + [3619] = 3540, + [3620] = 801, + [3621] = 3565, + [3622] = 3622, + [3623] = 3501, + [3624] = 3526, + [3625] = 3544, + [3626] = 3529, + [3627] = 3627, + [3628] = 3491, + [3629] = 3502, + [3630] = 3504, [3631] = 3631, - [3632] = 3167, - [3633] = 3633, - [3634] = 3167, - [3635] = 3635, - [3636] = 3636, - [3637] = 3637, + [3632] = 3524, + [3633] = 3565, + [3634] = 3486, + [3635] = 3505, + [3636] = 3518, + [3637] = 3545, [3638] = 3638, - [3639] = 3639, - [3640] = 3473, - [3641] = 3641, - [3642] = 3642, - [3643] = 3643, - [3644] = 3260, + [3639] = 3518, + [3640] = 3545, + [3641] = 3496, + [3642] = 3524, + [3643] = 3501, + [3644] = 3545, [3645] = 3645, [3646] = 3646, - [3647] = 3415, - [3648] = 3438, - [3649] = 3649, - [3650] = 3650, - [3651] = 3651, + [3647] = 3565, + [3648] = 3565, + [3649] = 3494, + [3650] = 3486, + [3651] = 3529, [3652] = 3652, - [3653] = 3643, - [3654] = 3378, + [3653] = 3653, + [3654] = 3654, [3655] = 3655, - [3656] = 3341, - [3657] = 3489, - [3658] = 3443, - [3659] = 776, - [3660] = 780, - [3661] = 781, + [3656] = 3656, + [3657] = 3657, + [3658] = 3658, + [3659] = 3659, + [3660] = 3660, + [3661] = 3661, [3662] = 3662, - [3663] = 776, - [3664] = 780, + [3663] = 3663, + [3664] = 3664, [3665] = 3665, [3666] = 3666, [3667] = 3667, - [3668] = 3378, - [3669] = 3341, + [3668] = 3668, + [3669] = 3669, [3670] = 3670, [3671] = 3671, - [3672] = 3378, - [3673] = 3341, - [3674] = 3646, - [3675] = 776, - [3676] = 780, - [3677] = 781, - [3678] = 3678, - [3679] = 776, - [3680] = 780, + [3672] = 3653, + [3673] = 3673, + [3674] = 3674, + [3675] = 3675, + [3676] = 3676, + [3677] = 3677, + [3678] = 3652, + [3679] = 3679, + [3680] = 3680, [3681] = 3681, - [3682] = 3682, + [3682] = 3655, [3683] = 3683, [3684] = 3684, - [3685] = 3685, + [3685] = 3662, [3686] = 3686, - [3687] = 3687, + [3687] = 3663, [3688] = 3688, - [3689] = 3689, + [3689] = 3667, [3690] = 3690, - [3691] = 3691, + [3691] = 3676, [3692] = 3692, [3693] = 3693, - [3694] = 3649, + [3694] = 3663, [3695] = 3695, - [3696] = 3650, + [3696] = 3696, [3697] = 3697, - [3698] = 3698, + [3698] = 3663, [3699] = 3699, [3700] = 3700, [3701] = 3701, - [3702] = 3678, - [3703] = 780, - [3704] = 3681, - [3705] = 3167, - [3706] = 3670, - [3707] = 3707, - [3708] = 3707, + [3702] = 3667, + [3703] = 3703, + [3704] = 3704, + [3705] = 3705, + [3706] = 3706, + [3707] = 3680, + [3708] = 3708, [3709] = 3709, [3710] = 3710, - [3711] = 3711, - [3712] = 3710, - [3713] = 3651, - [3714] = 3714, - [3715] = 3711, - [3716] = 3692, - [3717] = 777, - [3718] = 759, - [3719] = 758, - [3720] = 3662, - [3721] = 3683, - [3722] = 3722, - [3723] = 3723, + [3711] = 3656, + [3712] = 3712, + [3713] = 3713, + [3714] = 3657, + [3715] = 3715, + [3716] = 3716, + [3717] = 3717, + [3718] = 3718, + [3719] = 3703, + [3720] = 3720, + [3721] = 3708, + [3722] = 3713, + [3723] = 3663, [3724] = 3724, - [3725] = 777, - [3726] = 759, + [3725] = 3715, + [3726] = 3718, [3727] = 3727, - [3728] = 3728, + [3728] = 3671, [3729] = 3729, - [3730] = 777, - [3731] = 759, - [3732] = 777, - [3733] = 759, - [3734] = 3734, - [3735] = 777, - [3736] = 759, - [3737] = 3723, - [3738] = 3701, - [3739] = 3709, - [3740] = 3665, - [3741] = 3426, - [3742] = 3637, - [3743] = 3699, - [3744] = 3727, - [3745] = 3745, - [3746] = 3745, - [3747] = 3167, - [3748] = 3637, - [3749] = 3637, - [3750] = 3637, - [3751] = 3630, - [3752] = 3666, - [3753] = 3667, - [3754] = 3687, - [3755] = 3688, - [3756] = 3690, - [3757] = 3691, - [3758] = 3635, - [3759] = 3671, - [3760] = 776, - [3761] = 3761, - [3762] = 3762, - [3763] = 3763, - [3764] = 3764, - [3765] = 3764, + [3730] = 3673, + [3731] = 3652, + [3732] = 3732, + [3733] = 3673, + [3734] = 3686, + [3735] = 3679, + [3736] = 3736, + [3737] = 3732, + [3738] = 3738, + [3739] = 3739, + [3740] = 3679, + [3741] = 3736, + [3742] = 3655, + [3743] = 3743, + [3744] = 3717, + [3745] = 3724, + [3746] = 3746, + [3747] = 3747, + [3748] = 3712, + [3749] = 3683, + [3750] = 3750, + [3751] = 3670, + [3752] = 3662, + [3753] = 3718, + [3754] = 3686, + [3755] = 3755, + [3756] = 3697, + [3757] = 3729, + [3758] = 3738, + [3759] = 3705, + [3760] = 3710, + [3761] = 3656, + [3762] = 3657, + [3763] = 3686, + [3764] = 3666, + [3765] = 3656, [3766] = 3766, - [3767] = 3767, - [3768] = 3767, - [3769] = 3769, - [3770] = 3767, - [3771] = 3767, - [3772] = 3764, - [3773] = 3767, - [3774] = 3767, - [3775] = 3764, - [3776] = 3761, - [3777] = 3767, - [3778] = 3764, + [3767] = 3675, + [3768] = 3718, + [3769] = 3717, + [3770] = 3718, + [3771] = 3724, + [3772] = 3732, + [3773] = 3736, + [3774] = 3774, + [3775] = 3655, + [3776] = 3776, + [3777] = 3746, + [3778] = 3670, [3779] = 3779, - [3780] = 3764, - [3781] = 3764, - [3782] = 3764, - [3783] = 3764, - [3784] = 3764, - [3785] = 3764, - [3786] = 3764, - [3787] = 3764, - [3788] = 3764, - [3789] = 3764, - [3790] = 3764, - [3791] = 3791, - [3792] = 3764, - [3793] = 3767, - [3794] = 3767, - [3795] = 3764, + [3780] = 3712, + [3781] = 3673, + [3782] = 3782, + [3783] = 3663, + [3784] = 3732, + [3785] = 3662, + [3786] = 3675, + [3787] = 3686, + [3788] = 3652, + [3789] = 3697, + [3790] = 3790, + [3791] = 3657, + [3792] = 3792, + [3793] = 3793, + [3794] = 3662, + [3795] = 3705, [3796] = 3796, [3797] = 3797, - [3798] = 3791, - [3799] = 3767, - [3800] = 3800, - [3801] = 3801, + [3798] = 3798, + [3799] = 3680, + [3800] = 3710, + [3801] = 3656, [3802] = 3802, - [3803] = 3800, - [3804] = 3764, + [3803] = 3657, + [3804] = 3804, [3805] = 3805, - [3806] = 3806, - [3807] = 3767, - [3808] = 3800, + [3806] = 3683, + [3807] = 3703, + [3808] = 3808, [3809] = 3809, - [3810] = 3767, - [3811] = 3767, - [3812] = 3767, - [3813] = 3767, - [3814] = 3767, - [3815] = 3801, - [3816] = 3801, - [3817] = 3767, - [3818] = 3800, - [3819] = 3764, - [3820] = 776, - [3821] = 3767, - [3822] = 3800, - [3823] = 3823, - [3824] = 3767, + [3810] = 3708, + [3811] = 3692, + [3812] = 3713, + [3813] = 3697, + [3814] = 3814, + [3815] = 3815, + [3816] = 3816, + [3817] = 3666, + [3818] = 3653, + [3819] = 3819, + [3820] = 3732, + [3821] = 3821, + [3822] = 3715, + [3823] = 3695, + [3824] = 3824, [3825] = 3825, - [3826] = 3826, - [3827] = 3800, - [3828] = 3801, - [3829] = 3767, - [3830] = 3767, - [3831] = 3767, - [3832] = 3767, - [3833] = 3833, - [3834] = 777, - [3835] = 3801, - [3836] = 3764, - [3837] = 3837, - [3838] = 759, - [3839] = 3764, - [3840] = 3801, - [3841] = 3800, - [3842] = 3842, - [3843] = 776, - [3844] = 3800, - [3845] = 780, - [3846] = 3846, - [3847] = 3767, - [3848] = 3848, - [3849] = 3767, - [3850] = 3833, - [3851] = 3378, - [3852] = 3764, - [3853] = 3800, - [3854] = 3767, - [3855] = 3767, - [3856] = 3805, - [3857] = 780, - [3858] = 3764, + [3826] = 3705, + [3827] = 3679, + [3828] = 3666, + [3829] = 3829, + [3830] = 3717, + [3831] = 3675, + [3832] = 3736, + [3833] = 3655, + [3834] = 3834, + [3835] = 3675, + [3836] = 3836, + [3837] = 3676, + [3838] = 3838, + [3839] = 3718, + [3840] = 3699, + [3841] = 3732, + [3842] = 3746, + [3843] = 3680, + [3844] = 3844, + [3845] = 3736, + [3846] = 3655, + [3847] = 3683, + [3848] = 3736, + [3849] = 3675, + [3850] = 3676, + [3851] = 3851, + [3852] = 3852, + [3853] = 3675, + [3854] = 3655, + [3855] = 3680, + [3856] = 3655, + [3857] = 3686, + [3858] = 3683, [3859] = 3859, - [3860] = 3800, - [3861] = 3764, - [3862] = 3800, - [3863] = 777, - [3864] = 3764, - [3865] = 3865, - [3866] = 3800, - [3867] = 3764, - [3868] = 3800, - [3869] = 3767, - [3870] = 3764, - [3871] = 3764, - [3872] = 3769, - [3873] = 3800, - [3874] = 3764, - [3875] = 781, - [3876] = 3800, - [3877] = 3762, - [3878] = 3800, - [3879] = 3800, - [3880] = 3761, - [3881] = 3800, - [3882] = 3800, - [3883] = 3779, - [3884] = 3341, - [3885] = 3800, - [3886] = 3791, - [3887] = 3767, - [3888] = 3805, - [3889] = 3764, - [3890] = 3796, - [3891] = 3891, - [3892] = 3892, - [3893] = 3891, - [3894] = 3894, - [3895] = 3767, - [3896] = 3767, - [3897] = 3800, + [3860] = 3860, + [3861] = 3653, + [3862] = 3862, + [3863] = 3586, + [3864] = 3692, + [3865] = 3695, + [3866] = 3696, + [3867] = 3699, + [3868] = 3868, + [3869] = 3869, + [3870] = 3710, + [3871] = 3659, + [3872] = 3667, + [3873] = 3873, + [3874] = 3746, + [3875] = 3875, + [3876] = 3876, + [3877] = 3692, + [3878] = 3695, + [3879] = 3696, + [3880] = 3656, + [3881] = 3699, + [3882] = 3697, + [3883] = 3667, + [3884] = 3884, + [3885] = 3666, + [3886] = 3705, + [3887] = 3887, + [3888] = 3888, + [3889] = 3889, + [3890] = 3696, + [3891] = 3797, + [3892] = 3670, + [3893] = 3703, + [3894] = 3708, + [3895] = 3675, + [3896] = 3713, + [3897] = 3715, [3898] = 3898, - [3899] = 3764, - [3900] = 3762, - [3901] = 759, - [3902] = 3491, - [3903] = 3800, - [3904] = 3801, - [3905] = 3865, - [3906] = 3767, - [3907] = 3167, - [3908] = 3908, - [3909] = 3767, - [3910] = 3764, - [3911] = 3435, - [3912] = 3800, - [3913] = 3767, - [3914] = 3767, - [3915] = 3800, - [3916] = 3764, - [3917] = 3767, - [3918] = 3918, - [3919] = 3764, - [3920] = 3800, - [3921] = 3796, - [3922] = 3805, - [3923] = 3801, - [3924] = 3924, - [3925] = 3767, - [3926] = 3865, - [3927] = 3767, - [3928] = 3764, - [3929] = 3769, - [3930] = 3764, - [3931] = 3769, - [3932] = 3762, - [3933] = 3767, - [3934] = 3767, - [3935] = 3800, - [3936] = 3800, - [3937] = 3762, - [3938] = 3761, - [3939] = 3779, - [3940] = 3767, - [3941] = 3767, - [3942] = 3767, - [3943] = 3764, - [3944] = 3791, - [3945] = 3764, - [3946] = 3767, - [3947] = 3767, - [3948] = 3767, - [3949] = 3800, - [3950] = 3767, - [3951] = 3800, - [3952] = 3796, + [3899] = 3844, + [3900] = 3657, + [3901] = 3676, + [3902] = 3692, + [3903] = 3705, + [3904] = 3710, + [3905] = 3695, + [3906] = 3673, + [3907] = 3652, + [3908] = 3696, + [3909] = 3679, + [3910] = 3910, + [3911] = 3911, + [3912] = 3699, + [3913] = 3913, + [3914] = 3717, + [3915] = 3724, + [3916] = 3750, + [3917] = 3703, + [3918] = 3712, + [3919] = 3697, + [3920] = 3746, + [3921] = 3670, + [3922] = 3922, + [3923] = 3724, + [3924] = 3708, + [3925] = 3712, + [3926] = 3713, + [3927] = 3662, + [3928] = 3928, + [3929] = 3929, + [3930] = 3663, + [3931] = 3715, + [3932] = 3932, + [3933] = 3933, + [3934] = 3659, + [3935] = 3935, + [3936] = 3653, + [3937] = 3673, + [3938] = 3652, + [3939] = 3679, + [3940] = 3940, + [3941] = 3941, + [3942] = 3670, + [3943] = 3844, + [3944] = 3944, + [3945] = 3844, + [3946] = 3844, + [3947] = 3710, + [3948] = 3948, + [3949] = 3949, + [3950] = 3950, + [3951] = 3951, + [3952] = 3952, [3953] = 3953, - [3954] = 3767, - [3955] = 3767, - [3956] = 3767, - [3957] = 3800, - [3958] = 3767, - [3959] = 3767, - [3960] = 3761, - [3961] = 3779, - [3962] = 3767, - [3963] = 3801, - [3964] = 3767, - [3965] = 3791, - [3966] = 3767, - [3967] = 3767, - [3968] = 3846, - [3969] = 3800, - [3970] = 3767, - [3971] = 3800, - [3972] = 3805, - [3973] = 3767, - [3974] = 3767, - [3975] = 3767, - [3976] = 3800, - [3977] = 3767, - [3978] = 3767, - [3979] = 3767, - [3980] = 3865, - [3981] = 3767, - [3982] = 3767, - [3983] = 3800, - [3984] = 3767, - [3985] = 3764, - [3986] = 3769, - [3987] = 3767, - [3988] = 3800, - [3989] = 3767, - [3990] = 3767, - [3991] = 3762, - [3992] = 3767, - [3993] = 3767, - [3994] = 3800, - [3995] = 3767, - [3996] = 3767, - [3997] = 3800, - [3998] = 3767, - [3999] = 3767, - [4000] = 3767, - [4001] = 3761, - [4002] = 3779, - [4003] = 3767, - [4004] = 3800, - [4005] = 3767, - [4006] = 3767, - [4007] = 3800, - [4008] = 3791, - [4009] = 3767, - [4010] = 3796, - [4011] = 3767, - [4012] = 3767, - [4013] = 3767, - [4014] = 3767, - [4015] = 3767, - [4016] = 3796, - [4017] = 3767, - [4018] = 3767, - [4019] = 3805, - [4020] = 3767, - [4021] = 3801, - [4022] = 3800, - [4023] = 4023, - [4024] = 3426, - [4025] = 3800, - [4026] = 3764, - [4027] = 3440, - [4028] = 3764, - [4029] = 3426, + [3954] = 3954, + [3955] = 3955, + [3956] = 3956, + [3957] = 3957, + [3958] = 3949, + [3959] = 3959, + [3960] = 3960, + [3961] = 3961, + [3962] = 3962, + [3963] = 3963, + [3964] = 3964, + [3965] = 3965, + [3966] = 3966, + [3967] = 3961, + [3968] = 3968, + [3969] = 3969, + [3970] = 3970, + [3971] = 3971, + [3972] = 3972, + [3973] = 3973, + [3974] = 3962, + [3975] = 3949, + [3976] = 3976, + [3977] = 3949, + [3978] = 3978, + [3979] = 3979, + [3980] = 3980, + [3981] = 3981, + [3982] = 3982, + [3983] = 3983, + [3984] = 3984, + [3985] = 3949, + [3986] = 3986, + [3987] = 3987, + [3988] = 3949, + [3989] = 3989, + [3990] = 3990, + [3991] = 3991, + [3992] = 3992, + [3993] = 3949, + [3994] = 3994, + [3995] = 3995, + [3996] = 3949, + [3997] = 3997, + [3998] = 3949, + [3999] = 3999, + [4000] = 3951, + [4001] = 3956, + [4002] = 4002, + [4003] = 4003, + [4004] = 3949, + [4005] = 3133, + [4006] = 3951, + [4007] = 4007, + [4008] = 3949, + [4009] = 4009, + [4010] = 4010, + [4011] = 3949, + [4012] = 4012, + [4013] = 4013, + [4014] = 3949, + [4015] = 4015, + [4016] = 4016, + [4017] = 4017, + [4018] = 4018, + [4019] = 3951, + [4020] = 3951, + [4021] = 3961, + [4022] = 4022, + [4023] = 4017, + [4024] = 3949, + [4025] = 3949, + [4026] = 4026, + [4027] = 4027, + [4028] = 3949, + [4029] = 4029, [4030] = 4030, - [4031] = 798, - [4032] = 3865, - [4033] = 3801, - [4034] = 790, - [4035] = 3779, - [4036] = 3446, - [4037] = 3767, - [4038] = 3764, + [4031] = 4031, + [4032] = 3949, + [4033] = 3966, + [4034] = 4034, + [4035] = 4035, + [4036] = 4036, + [4037] = 4037, + [4038] = 3949, [4039] = 4039, - [4040] = 3767, - [4041] = 3865, - [4042] = 3800, - [4043] = 3908, - [4044] = 3800, - [4045] = 3764, - [4046] = 3764, - [4047] = 3800, - [4048] = 3767, - [4049] = 3800, - [4050] = 3767, - [4051] = 3764, - [4052] = 3769, - [4053] = 3800, - [4054] = 4054, - [4055] = 4055, - [4056] = 4056, - [4057] = 4057, + [4040] = 4040, + [4041] = 4041, + [4042] = 4042, + [4043] = 4043, + [4044] = 3956, + [4045] = 4045, + [4046] = 3949, + [4047] = 3949, + [4048] = 4048, + [4049] = 3949, + [4050] = 3949, + [4051] = 4051, + [4052] = 4052, + [4053] = 4053, + [4054] = 3070, + [4055] = 3951, + [4056] = 3961, + [4057] = 3951, [4058] = 4058, - [4059] = 4059, + [4059] = 3956, [4060] = 4060, [4061] = 4061, - [4062] = 4059, - [4063] = 4055, + [4062] = 3949, + [4063] = 3949, [4064] = 4064, [4065] = 4065, [4066] = 4066, [4067] = 4067, - [4068] = 4055, - [4069] = 4058, + [4068] = 4068, + [4069] = 3949, [4070] = 4070, [4071] = 4071, [4072] = 4072, [4073] = 4073, - [4074] = 4066, + [4074] = 4074, [4075] = 4075, [4076] = 4076, [4077] = 4077, [4078] = 4078, - [4079] = 4079, - [4080] = 4070, - [4081] = 4058, + [4079] = 4071, + [4080] = 4080, + [4081] = 4071, [4082] = 4082, [4083] = 4083, [4084] = 4084, [4085] = 4085, - [4086] = 4064, - [4087] = 3474, - [4088] = 4088, - [4089] = 4070, - [4090] = 4071, - [4091] = 4073, - [4092] = 4077, - [4093] = 4055, - [4094] = 4094, - [4095] = 4061, - [4096] = 3475, - [4097] = 4084, - [4098] = 4055, - [4099] = 4099, - [4100] = 4059, - [4101] = 4070, - [4102] = 4078, - [4103] = 4071, - [4104] = 4064, - [4105] = 4088, - [4106] = 4073, - [4107] = 4078, - [4108] = 4077, - [4109] = 4073, - [4110] = 4075, - [4111] = 4059, - [4112] = 4064, - [4113] = 4113, - [4114] = 4078, + [4086] = 4086, + [4087] = 4087, + [4088] = 4071, + [4089] = 4089, + [4090] = 4090, + [4091] = 4074, + [4092] = 4075, + [4093] = 4076, + [4094] = 4082, + [4095] = 4086, + [4096] = 4090, + [4097] = 4072, + [4098] = 4080, + [4099] = 4071, + [4100] = 4070, + [4101] = 4101, + [4102] = 4071, + [4103] = 4076, + [4104] = 4077, + [4105] = 4089, + [4106] = 4071, + [4107] = 4107, + [4108] = 4071, + [4109] = 4107, + [4110] = 4110, + [4111] = 4111, + [4112] = 4084, + [4113] = 4071, + [4114] = 4114, [4115] = 4082, - [4116] = 4084, - [4117] = 4075, - [4118] = 4058, - [4119] = 4070, - [4120] = 4120, - [4121] = 4121, - [4122] = 4085, - [4123] = 4088, - [4124] = 4055, + [4116] = 4116, + [4117] = 4082, + [4118] = 4073, + [4119] = 4090, + [4120] = 4071, + [4121] = 4076, + [4122] = 4107, + [4123] = 4074, + [4124] = 4075, [4125] = 4125, - [4126] = 4071, - [4127] = 4073, - [4128] = 4128, - [4129] = 4066, - [4130] = 4058, + [4126] = 4074, + [4127] = 4082, + [4128] = 4076, + [4129] = 4078, + [4130] = 4077, [4131] = 4131, - [4132] = 4132, - [4133] = 4066, - [4134] = 4088, - [4135] = 4078, - [4136] = 4077, - [4137] = 4061, - [4138] = 4071, - [4139] = 4066, - [4140] = 4061, - [4141] = 4059, - [4142] = 4064, - [4143] = 4143, - [4144] = 4144, - [4145] = 4075, - [4146] = 4075, - [4147] = 4078, - [4148] = 4088, - [4149] = 4149, - [4150] = 4071, - [4151] = 4099, - [4152] = 4073, - [4153] = 4153, - [4154] = 4085, - [4155] = 4155, - [4156] = 4125, - [4157] = 4082, - [4158] = 4061, + [4132] = 4075, + [4133] = 4082, + [4134] = 4134, + [4135] = 4071, + [4136] = 4111, + [4137] = 4089, + [4138] = 4138, + [4139] = 4084, + [4140] = 4073, + [4141] = 4071, + [4142] = 4072, + [4143] = 4073, + [4144] = 4111, + [4145] = 4082, + [4146] = 4071, + [4147] = 4147, + [4148] = 4101, + [4149] = 4085, + [4150] = 4089, + [4151] = 4082, + [4152] = 4071, + [4153] = 4074, + [4154] = 4075, + [4155] = 4071, + [4156] = 4156, + [4157] = 4114, + [4158] = 4077, [4159] = 4159, - [4160] = 4082, - [4161] = 4084, - [4162] = 3473, - [4163] = 3438, - [4164] = 3443, + [4160] = 4160, + [4161] = 4161, + [4162] = 4072, + [4163] = 4074, + [4164] = 4075, [4165] = 4165, [4166] = 4166, - [4167] = 4167, - [4168] = 4088, - [4169] = 4085, - [4170] = 4066, + [4167] = 4071, + [4168] = 4071, + [4169] = 4071, + [4170] = 4107, [4171] = 4171, - [4172] = 4077, - [4173] = 4070, - [4174] = 4084, - [4175] = 4061, - [4176] = 4176, - [4177] = 4077, - [4178] = 4085, - [4179] = 4058, - [4180] = 4071, - [4181] = 4073, + [4172] = 4071, + [4173] = 4173, + [4174] = 4159, + [4175] = 4175, + [4176] = 4076, + [4177] = 4177, + [4178] = 4178, + [4179] = 4101, + [4180] = 4089, + [4181] = 4071, [4182] = 4082, - [4183] = 4084, - [4184] = 4184, - [4185] = 4082, - [4186] = 4084, - [4187] = 4187, - [4188] = 4188, - [4189] = 796, - [4190] = 4071, - [4191] = 4191, - [4192] = 4125, - [4193] = 4082, - [4194] = 4084, - [4195] = 4125, - [4196] = 4196, - [4197] = 4197, - [4198] = 4059, - [4199] = 4064, - [4200] = 4200, - [4201] = 4073, - [4202] = 4085, - [4203] = 4203, - [4204] = 4204, - [4205] = 4075, - [4206] = 4070, - [4207] = 4125, - [4208] = 4208, - [4209] = 4082, - [4210] = 4125, - [4211] = 4211, - [4212] = 4212, - [4213] = 4213, - [4214] = 4214, - [4215] = 4215, + [4183] = 4089, + [4184] = 4082, + [4185] = 4107, + [4186] = 4074, + [4187] = 4075, + [4188] = 4072, + [4189] = 4107, + [4190] = 4074, + [4191] = 4075, + [4192] = 4192, + [4193] = 4178, + [4194] = 4161, + [4195] = 4195, + [4196] = 4171, + [4197] = 4089, + [4198] = 4198, + [4199] = 4089, + [4200] = 4071, + [4201] = 4201, + [4202] = 4202, + [4203] = 4072, + [4204] = 4101, + [4205] = 4085, + [4206] = 4086, + [4207] = 4161, + [4208] = 4080, + [4209] = 4071, + [4210] = 4210, + [4211] = 4173, + [4212] = 4111, + [4213] = 4084, + [4214] = 4071, + [4215] = 4160, [4216] = 4216, - [4217] = 4217, - [4218] = 4218, - [4219] = 4219, - [4220] = 4220, - [4221] = 4221, - [4222] = 4222, - [4223] = 4223, - [4224] = 4224, - [4225] = 4225, - [4226] = 4226, - [4227] = 4227, + [4217] = 4071, + [4218] = 4071, + [4219] = 4107, + [4220] = 4090, + [4221] = 4101, + [4222] = 4074, + [4223] = 4161, + [4224] = 4071, + [4225] = 4114, + [4226] = 4090, + [4227] = 4071, [4228] = 4228, - [4229] = 4229, + [4229] = 4131, [4230] = 4230, - [4231] = 4231, - [4232] = 4222, + [4231] = 4107, + [4232] = 4228, [4233] = 4233, - [4234] = 4234, - [4235] = 4235, - [4236] = 4236, - [4237] = 4237, - [4238] = 4238, + [4234] = 4089, + [4235] = 4107, + [4236] = 4078, + [4237] = 4107, + [4238] = 4080, [4239] = 4239, - [4240] = 4240, - [4241] = 4222, - [4242] = 4213, - [4243] = 4243, - [4244] = 4244, - [4245] = 4245, - [4246] = 4246, + [4240] = 4070, + [4241] = 4241, + [4242] = 4131, + [4243] = 4080, + [4244] = 4107, + [4245] = 4166, + [4246] = 4074, [4247] = 4247, - [4248] = 4248, - [4249] = 4249, - [4250] = 4250, - [4251] = 4251, + [4248] = 4071, + [4249] = 4107, + [4250] = 4085, + [4251] = 4086, [4252] = 4252, - [4253] = 4253, - [4254] = 4254, + [4253] = 4107, + [4254] = 4071, [4255] = 4255, - [4256] = 4256, - [4257] = 4222, - [4258] = 4258, - [4259] = 4259, - [4260] = 4260, - [4261] = 4261, - [4262] = 4262, - [4263] = 4263, - [4264] = 4238, - [4265] = 4245, - [4266] = 4266, - [4267] = 4267, - [4268] = 4268, - [4269] = 4267, - [4270] = 4270, - [4271] = 4271, - [4272] = 4272, - [4273] = 4273, - [4274] = 4231, - [4275] = 4234, - [4276] = 4276, - [4277] = 4277, - [4278] = 4212, - [4279] = 4268, - [4280] = 4280, - [4281] = 4281, - [4282] = 4282, - [4283] = 4236, - [4284] = 4261, - [4285] = 4285, - [4286] = 4286, - [4287] = 4237, - [4288] = 4288, - [4289] = 4220, - [4290] = 4221, - [4291] = 4270, - [4292] = 4282, - [4293] = 4285, - [4294] = 4294, - [4295] = 4295, - [4296] = 4296, - [4297] = 4239, - [4298] = 4298, - [4299] = 4299, - [4300] = 4294, - [4301] = 4226, - [4302] = 4302, - [4303] = 4303, - [4304] = 4256, - [4305] = 4213, - [4306] = 4262, - [4307] = 4244, - [4308] = 4308, - [4309] = 4211, - [4310] = 4310, - [4311] = 4311, - [4312] = 4223, - [4313] = 4295, - [4314] = 4314, - [4315] = 4236, - [4316] = 4316, - [4317] = 4237, - [4318] = 4318, + [4256] = 4175, + [4257] = 4257, + [4258] = 4071, + [4259] = 4086, + [4260] = 4107, + [4261] = 4086, + [4262] = 4107, + [4263] = 4076, + [4264] = 4071, + [4265] = 4116, + [4266] = 4201, + [4267] = 4107, + [4268] = 4114, + [4269] = 4077, + [4270] = 4082, + [4271] = 4080, + [4272] = 4107, + [4273] = 4125, + [4274] = 4107, + [4275] = 4101, + [4276] = 4074, + [4277] = 4075, + [4278] = 4202, + [4279] = 4107, + [4280] = 4228, + [4281] = 4107, + [4282] = 4071, + [4283] = 4107, + [4284] = 4107, + [4285] = 4107, + [4286] = 4078, + [4287] = 4161, + [4288] = 4160, + [4289] = 4107, + [4290] = 4080, + [4291] = 4175, + [4292] = 4257, + [4293] = 4076, + [4294] = 4076, + [4295] = 4071, + [4296] = 4075, + [4297] = 4173, + [4298] = 4173, + [4299] = 4228, + [4300] = 4230, + [4301] = 4076, + [4302] = 4070, + [4303] = 4166, + [4304] = 4241, + [4305] = 4082, + [4306] = 4071, + [4307] = 4074, + [4308] = 4075, + [4309] = 4089, + [4310] = 4166, + [4311] = 4160, + [4312] = 4175, + [4313] = 4071, + [4314] = 4228, + [4315] = 4131, + [4316] = 4230, + [4317] = 4074, + [4318] = 4075, [4319] = 4319, [4320] = 4320, - [4321] = 4249, - [4322] = 4250, - [4323] = 4251, - [4324] = 4252, - [4325] = 4239, - [4326] = 4213, - [4327] = 4244, - [4328] = 4236, - [4329] = 4223, - [4330] = 4330, - [4331] = 4319, - [4332] = 4255, - [4333] = 4333, - [4334] = 4299, + [4321] = 4111, + [4322] = 4241, + [4323] = 4085, + [4324] = 4257, + [4325] = 4089, + [4326] = 4071, + [4327] = 4327, + [4328] = 4216, + [4329] = 4175, + [4330] = 4202, + [4331] = 4071, + [4332] = 4125, + [4333] = 4125, + [4334] = 4072, [4335] = 4335, - [4336] = 4336, - [4337] = 4249, - [4338] = 4236, - [4339] = 4237, - [4340] = 4227, - [4341] = 4250, - [4342] = 4251, - [4343] = 4239, - [4344] = 4213, - [4345] = 4345, - [4346] = 4286, - [4347] = 4252, - [4348] = 4244, - [4349] = 4212, - [4350] = 4249, - [4351] = 4250, - [4352] = 4251, - [4353] = 4252, - [4354] = 4255, - [4355] = 4319, - [4356] = 4255, - [4357] = 4357, - [4358] = 4358, - [4359] = 4223, - [4360] = 4238, - [4361] = 4361, - [4362] = 4245, - [4363] = 4363, - [4364] = 4267, - [4365] = 4268, - [4366] = 4366, - [4367] = 4238, - [4368] = 4271, - [4369] = 4272, - [4370] = 4222, - [4371] = 4273, - [4372] = 4231, - [4373] = 4234, - [4374] = 4159, - [4375] = 4245, - [4376] = 4376, - [4377] = 4377, - [4378] = 4267, - [4379] = 4280, - [4380] = 4281, - [4381] = 4238, - [4382] = 4268, - [4383] = 4245, - [4384] = 4255, - [4385] = 4261, - [4386] = 4286, - [4387] = 4267, - [4388] = 4288, - [4389] = 4268, - [4390] = 4270, - [4391] = 4391, - [4392] = 4282, - [4393] = 4285, - [4394] = 4294, - [4395] = 4395, - [4396] = 4295, - [4397] = 4298, - [4398] = 4249, - [4399] = 4271, + [4336] = 4071, + [4337] = 4337, + [4338] = 4166, + [4339] = 4086, + [4340] = 4071, + [4341] = 4341, + [4342] = 4342, + [4343] = 4107, + [4344] = 4257, + [4345] = 4202, + [4346] = 4073, + [4347] = 4076, + [4348] = 4070, + [4349] = 4082, + [4350] = 4350, + [4351] = 4071, + [4352] = 4173, + [4353] = 4228, + [4354] = 4071, + [4355] = 4111, + [4356] = 4356, + [4357] = 4071, + [4358] = 4071, + [4359] = 4114, + [4360] = 4071, + [4361] = 4077, + [4362] = 4131, + [4363] = 4161, + [4364] = 4071, + [4365] = 4071, + [4366] = 4230, + [4367] = 4125, + [4368] = 4101, + [4369] = 4071, + [4370] = 4241, + [4371] = 4078, + [4372] = 4071, + [4373] = 4373, + [4374] = 4071, + [4375] = 4160, + [4376] = 4071, + [4377] = 4071, + [4378] = 4075, + [4379] = 4230, + [4380] = 4159, + [4381] = 4071, + [4382] = 4071, + [4383] = 4071, + [4384] = 4228, + [4385] = 4071, + [4386] = 4071, + [4387] = 4071, + [4388] = 4257, + [4389] = 4071, + [4390] = 4071, + [4391] = 4159, + [4392] = 4392, + [4393] = 4159, + [4394] = 4230, + [4395] = 4071, + [4396] = 4071, + [4397] = 4084, + [4398] = 4241, + [4399] = 4107, [4400] = 4400, - [4401] = 4226, - [4402] = 4272, - [4403] = 4256, - [4404] = 4262, + [4401] = 4401, + [4402] = 4402, + [4403] = 4403, + [4404] = 4404, [4405] = 4405, - [4406] = 4406, - [4407] = 4271, - [4408] = 4273, - [4409] = 4231, - [4410] = 4234, - [4411] = 4272, - [4412] = 4412, - [4413] = 4273, - [4414] = 4231, - [4415] = 4234, - [4416] = 4280, - [4417] = 4281, - [4418] = 4418, - [4419] = 4419, - [4420] = 4420, - [4421] = 4298, - [4422] = 4422, - [4423] = 4423, - [4424] = 4261, - [4425] = 4425, - [4426] = 4236, - [4427] = 4237, - [4428] = 4212, - [4429] = 4239, - [4430] = 4213, - [4431] = 4244, - [4432] = 4432, - [4433] = 4280, - [4434] = 4286, - [4435] = 4281, - [4436] = 4250, - [4437] = 4249, - [4438] = 4250, - [4439] = 4251, - [4440] = 4252, - [4441] = 4441, - [4442] = 4288, - [4443] = 4255, - [4444] = 4223, - [4445] = 4445, - [4446] = 4446, - [4447] = 4270, - [4448] = 4282, - [4449] = 4238, - [4450] = 4450, - [4451] = 4245, - [4452] = 4267, - [4453] = 4268, - [4454] = 4285, - [4455] = 4261, - [4456] = 4271, - [4457] = 4272, - [4458] = 4273, - [4459] = 4231, - [4460] = 4288, - [4461] = 4234, - [4462] = 4294, - [4463] = 4211, - [4464] = 4295, - [4465] = 4212, - [4466] = 4466, - [4467] = 4286, - [4468] = 4288, - [4469] = 4280, - [4470] = 4281, - [4471] = 4366, - [4472] = 4239, - [4473] = 4270, - [4474] = 4261, - [4475] = 4282, - [4476] = 4286, - [4477] = 4271, - [4478] = 4288, - [4479] = 4298, - [4480] = 4285, - [4481] = 4270, - [4482] = 4282, - [4483] = 4272, - [4484] = 4285, - [4485] = 4294, - [4486] = 4211, - [4487] = 4295, - [4488] = 4222, - [4489] = 4489, - [4490] = 4490, - [4491] = 4294, - [4492] = 4492, - [4493] = 4298, - [4494] = 4211, - [4495] = 4251, - [4496] = 4226, - [4497] = 4226, - [4498] = 4295, - [4499] = 4256, - [4500] = 4262, - [4501] = 4256, - [4502] = 4502, - [4503] = 4262, - [4504] = 4504, - [4505] = 4505, - [4506] = 4273, - [4507] = 4212, - [4508] = 4231, - [4509] = 4234, - [4510] = 4223, - [4511] = 4298, - [4512] = 4512, - [4513] = 4236, - [4514] = 4213, - [4515] = 4515, - [4516] = 4226, - [4517] = 4244, - [4518] = 4256, - [4519] = 4262, - [4520] = 4520, - [4521] = 4237, - [4522] = 4522, - [4523] = 4523, - [4524] = 4252, - [4525] = 4525, - [4526] = 4236, - [4527] = 4213, - [4528] = 4528, - [4529] = 4529, - [4530] = 4530, - [4531] = 4280, - [4532] = 4532, - [4533] = 4281, - [4534] = 4213, - [4535] = 4535, - [4536] = 4418, - [4537] = 4537, - [4538] = 4299, - [4539] = 4299, - [4540] = 4299, - [4541] = 4222, - [4542] = 4211, - [4543] = 4543, - [4544] = 4544, - [4545] = 4545, - [4546] = 4546, - [4547] = 4547, - [4548] = 4548, - [4549] = 4549, - [4550] = 4548, - [4551] = 4551, - [4552] = 4551, - [4553] = 4553, - [4554] = 4548, - [4555] = 4555, - [4556] = 4556, - [4557] = 4557, - [4558] = 4556, - [4559] = 4559, - [4560] = 4560, - [4561] = 4556, - [4562] = 4562, - [4563] = 4563, - [4564] = 4551, - [4565] = 4565, - [4566] = 4566, - [4567] = 4567, - [4568] = 4551, - [4569] = 4569, - [4570] = 4570, - [4571] = 4555, - [4572] = 4572, - [4573] = 4551, - [4574] = 3613, - [4575] = 4551, - [4576] = 4569, - [4577] = 4577, - [4578] = 4578, - [4579] = 4579, - [4580] = 4551, - [4581] = 4581, - [4582] = 4582, - [4583] = 4583, - [4584] = 4584, - [4585] = 4585, - [4586] = 4586, - [4587] = 4545, - [4588] = 4588, - [4589] = 4589, - [4590] = 4551, - [4591] = 4543, - [4592] = 4543, - [4593] = 4551, - [4594] = 4551, - [4595] = 4595, - [4596] = 4548, - [4597] = 4551, - [4598] = 3594, - [4599] = 4599, - [4600] = 4555, - [4601] = 4551, - [4602] = 4556, - [4603] = 4551, - [4604] = 4555, - [4605] = 4551, - [4606] = 4606, - [4607] = 4607, - [4608] = 4608, - [4609] = 4609, - [4610] = 4610, - [4611] = 4611, - [4612] = 4612, - [4613] = 4613, - [4614] = 4614, - [4615] = 4615, - [4616] = 4616, - [4617] = 4617, - [4618] = 4551, - [4619] = 4619, - [4620] = 4620, - [4621] = 4621, - [4622] = 4555, - [4623] = 4623, - [4624] = 4624, - [4625] = 4625, - [4626] = 4626, - [4627] = 4627, - [4628] = 4628, - [4629] = 4551, - [4630] = 4630, - [4631] = 4548, - [4632] = 4632, - [4633] = 4551, - [4634] = 4551, - [4635] = 4635, - [4636] = 4636, - [4637] = 4551, - [4638] = 4638, - [4639] = 4639, - [4640] = 4640, - [4641] = 4641, - [4642] = 4642, - [4643] = 4643, - [4644] = 4551, - [4645] = 4645, - [4646] = 4646, - [4647] = 4647, - [4648] = 4551, - [4649] = 4649, - [4650] = 4650, - [4651] = 4651, - [4652] = 4548, - [4653] = 4653, - [4654] = 4654, - [4655] = 4655, - [4656] = 4551, - [4657] = 4551, - [4658] = 4658, - [4659] = 4659, - [4660] = 4660, - [4661] = 4551, - [4662] = 4662, - [4663] = 4548, - [4664] = 4556, - [4665] = 4665, - [4666] = 4551, - [4667] = 4667, - [4668] = 4667, - [4669] = 4669, - [4670] = 4670, - [4671] = 4671, - [4672] = 4672, - [4673] = 4673, - [4674] = 4667, - [4675] = 4675, - [4676] = 4676, - [4677] = 4677, - [4678] = 4678, - [4679] = 4679, - [4680] = 4680, - [4681] = 4667, - [4682] = 4682, - [4683] = 4670, - [4684] = 4684, - [4685] = 4685, - [4686] = 4670, - [4687] = 4687, - [4688] = 4688, - [4689] = 4667, - [4690] = 4690, - [4691] = 4691, - [4692] = 4692, - [4693] = 4692, - [4694] = 4670, - [4695] = 4670, - [4696] = 4677, - [4697] = 4697, - [4698] = 4678, - [4699] = 4699, - [4700] = 4670, - [4701] = 4690, - [4702] = 4692, - [4703] = 4703, - [4704] = 4667, - [4705] = 4705, - [4706] = 4706, - [4707] = 4697, - [4708] = 4670, - [4709] = 4670, - [4710] = 4710, - [4711] = 4711, - [4712] = 4712, - [4713] = 4677, - [4714] = 4714, - [4715] = 4697, - [4716] = 4690, - [4717] = 4717, - [4718] = 4670, - [4719] = 4670, - [4720] = 4692, - [4721] = 4721, - [4722] = 4722, - [4723] = 4679, - [4724] = 4675, - [4725] = 4670, - [4726] = 4726, - [4727] = 4727, - [4728] = 4714, - [4729] = 4729, - [4730] = 4670, - [4731] = 4731, - [4732] = 4712, - [4733] = 4670, - [4734] = 4667, - [4735] = 4667, - [4736] = 4736, - [4737] = 4670, - [4738] = 4667, - [4739] = 4739, - [4740] = 4706, - [4741] = 4672, - [4742] = 4673, - [4743] = 4743, - [4744] = 4670, - [4745] = 4745, - [4746] = 4726, - [4747] = 4691, - [4748] = 4748, - [4749] = 4736, - [4750] = 4669, - [4751] = 4751, - [4752] = 4711, - [4753] = 4670, - [4754] = 4672, - [4755] = 4667, - [4756] = 4670, - [4757] = 4757, - [4758] = 4736, - [4759] = 4759, - [4760] = 4739, - [4761] = 4706, - [4762] = 4667, - [4763] = 4691, - [4764] = 4670, - [4765] = 4675, - [4766] = 4714, - [4767] = 4743, - [4768] = 4667, - [4769] = 4739, - [4770] = 4727, - [4771] = 4667, - [4772] = 4670, - [4773] = 4706, - [4774] = 4679, - [4775] = 4684, - [4776] = 4675, - [4777] = 4667, - [4778] = 4743, - [4779] = 4669, - [4780] = 4677, - [4781] = 4697, - [4782] = 4714, - [4783] = 4675, - [4784] = 4667, - [4785] = 4729, - [4786] = 4670, - [4787] = 4787, - [4788] = 4731, - [4789] = 4789, - [4790] = 4667, - [4791] = 4667, - [4792] = 4670, - [4793] = 4670, - [4794] = 4727, - [4795] = 4787, - [4796] = 4667, - [4797] = 4678, - [4798] = 4798, - [4799] = 4711, - [4800] = 4727, - [4801] = 4667, - [4802] = 4670, - [4803] = 4669, - [4804] = 4672, - [4805] = 4673, - [4806] = 4714, - [4807] = 4679, - [4808] = 4787, - [4809] = 4798, - [4810] = 4667, - [4811] = 4672, - [4812] = 4667, - [4813] = 4670, - [4814] = 4682, - [4815] = 4667, - [4816] = 4816, - [4817] = 4817, - [4818] = 4667, - [4819] = 4798, - [4820] = 4670, - [4821] = 4667, - [4822] = 4673, - [4823] = 4667, - [4824] = 4670, - [4825] = 4667, - [4826] = 4682, - [4827] = 4671, - [4828] = 4670, - [4829] = 4676, - [4830] = 4670, - [4831] = 4685, - [4832] = 4714, - [4833] = 4833, - [4834] = 4667, - [4835] = 4671, - [4836] = 4836, - [4837] = 4672, - [4838] = 4673, - [4839] = 4670, - [4840] = 4670, - [4841] = 4667, - [4842] = 4670, - [4843] = 4667, - [4844] = 4676, - [4845] = 4690, - [4846] = 4670, - [4847] = 4692, - [4848] = 4671, - [4849] = 4667, - [4850] = 4670, - [4851] = 4851, - [4852] = 4852, - [4853] = 4711, - [4854] = 4676, - [4855] = 4679, - [4856] = 4727, - [4857] = 4714, - [4858] = 4676, - [4859] = 4670, - [4860] = 4667, - [4861] = 4861, - [4862] = 4677, - [4863] = 4703, - [4864] = 4684, - [4865] = 4865, - [4866] = 4757, - [4867] = 4673, - [4868] = 4736, - [4869] = 4678, - [4870] = 4870, - [4871] = 4798, - [4872] = 4690, - [4873] = 4739, - [4874] = 4743, - [4875] = 4670, - [4876] = 4682, - [4877] = 4670, - [4878] = 4787, - [4879] = 4669, - [4880] = 4703, - [4881] = 4670, - [4882] = 4712, - [4883] = 4883, - [4884] = 4884, - [4885] = 4798, - [4886] = 4678, - [4887] = 4667, - [4888] = 4817, - [4889] = 4670, - [4890] = 4714, - [4891] = 4670, - [4892] = 4673, - [4893] = 4670, - [4894] = 4670, - [4895] = 4671, - [4896] = 4667, - [4897] = 4670, - [4898] = 4898, - [4899] = 4726, - [4900] = 4670, - [4901] = 4684, - [4902] = 4667, - [4903] = 4673, - [4904] = 4670, - [4905] = 4677, - [4906] = 4670, - [4907] = 4697, - [4908] = 4731, - [4909] = 4690, - [4910] = 4675, - [4911] = 4692, - [4912] = 4703, - [4913] = 4729, - [4914] = 4691, - [4915] = 4673, - [4916] = 4670, - [4917] = 4917, - [4918] = 4703, - [4919] = 4670, - [4920] = 4712, - [4921] = 4712, - [4922] = 4670, - [4923] = 4670, - [4924] = 4924, - [4925] = 4670, - [4926] = 4670, - [4927] = 4667, - [4928] = 4703, - [4929] = 4691, - [4930] = 4726, - [4931] = 4697, - [4932] = 4787, - [4933] = 4675, - [4934] = 4726, - [4935] = 4731, - [4936] = 4691, - [4937] = 4937, - [4938] = 4677, - [4939] = 4697, - [4940] = 4691, - [4941] = 4729, - [4942] = 4798, - [4943] = 4670, - [4944] = 4691, - [4945] = 4731, - [4946] = 4946, - [4947] = 4670, - [4948] = 4670, - [4949] = 4667, - [4950] = 4670, - [4951] = 4691, - [4952] = 4670, - [4953] = 4670, - [4954] = 4691, - [4955] = 4711, - [4956] = 4729, - [4957] = 4677, - [4958] = 4697, - [4959] = 4946, - [4960] = 4670, - [4961] = 4671, - [4962] = 4670, - [4963] = 4714, - [4964] = 4729, - [4965] = 4682, - [4966] = 4667, - [4967] = 4670, - [4968] = 4679, - [4969] = 4712, - [4970] = 4670, - [4971] = 4677, - [4972] = 4697, - [4973] = 4714, - [4974] = 4675, - [4975] = 4676, - [4976] = 4729, - [4977] = 4679, - [4978] = 4736, - [4979] = 4670, - [4980] = 4670, - [4981] = 4670, - [4982] = 4684, - [4983] = 4677, - [4984] = 4984, - [4985] = 4787, - [4986] = 4798, - [4987] = 4697, - [4988] = 4670, - [4989] = 4670, - [4990] = 4667, - [4991] = 4670, - [4992] = 4676, - [4993] = 4692, - [4994] = 4946, - [4995] = 4670, - [4996] = 4670, - [4997] = 4670, - [4998] = 4739, - [4999] = 4743, - [5000] = 4726, - [5001] = 4679, - [5002] = 4670, - [5003] = 4736, - [5004] = 4667, - [5005] = 4670, - [5006] = 4670, - [5007] = 4684, - [5008] = 4670, - [5009] = 4739, - [5010] = 4946, - [5011] = 4731, - [5012] = 4691, - [5013] = 4670, - [5014] = 5014, - [5015] = 4670, - [5016] = 4691, - [5017] = 4670, - [5018] = 5018, - [5019] = 4679, - [5020] = 4670, - [5021] = 4677, - [5022] = 4697, - [5023] = 4675, - [5024] = 4670, - [5025] = 4729, - [5026] = 5026, - [5027] = 4946, - [5028] = 4667, - [5029] = 4670, - [5030] = 4706, - [5031] = 4787, - [5032] = 4670, - [5033] = 4670, - [5034] = 4667, - [5035] = 4739, - [5036] = 4743, - [5037] = 4670, - [5038] = 4670, - [5039] = 4670, - [5040] = 4706, - [5041] = 4711, - [5042] = 4727, - [5043] = 4714, - [5044] = 4670, - [5045] = 4833, - [5046] = 4677, - [5047] = 4670, - [5048] = 4691, - [5049] = 4743, - [5050] = 4679, - [5051] = 4667, - [5052] = 4670, - [5053] = 4677, - [5054] = 4670, - [5055] = 4697, - [5056] = 4675, - [5057] = 4697, - [5058] = 5026, - [5059] = 4670, - [5060] = 4667, - [5061] = 4670, - [5062] = 4787, - [5063] = 4833, - [5064] = 4670, - [5065] = 4670, - [5066] = 4670, - [5067] = 4669, - [5068] = 4667, - [5069] = 4678, - [5070] = 4670, - [5071] = 4670, - [5072] = 4667, - [5073] = 4884, - [5074] = 4833, - [5075] = 4787, - [5076] = 4833, - [5077] = 4670, - [5078] = 4667, - [5079] = 4670, - [5080] = 4670, - [5081] = 4675, - [5082] = 4682, - [5083] = 5083, - [5084] = 5084, - [5085] = 5085, - [5086] = 5086, - [5087] = 5087, - [5088] = 5088, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -8040,580 +7349,472 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(269); + if (eof) ADVANCE(90); ADVANCE_MAP( - '!', 277, - '"', 759, - '#', 385, - '$', 771, - '%', 440, - '&', 62, - '\'', 773, - '(', 279, - ')', 280, - '*', 438, - '+', 328, - ',', 313, - '-', 334, - '.', 341, - '/', 669, - '0', 732, - ':', 283, - ';', 270, - '<', 326, - '=', 286, - '>', 338, - '?', 359, - '[', 353, - '\\', 460, - ']', 356, - '^', 107, - '`', 768, - 'a', 180, - 'c', 122, - 'd', 197, - 'e', 173, - 'f', 123, - 'i', 155, - 'l', 124, - 'm', 200, - 'o', 157, - 'p', 206, - 'r', 140, - 's', 232, - 't', 194, - 'u', 183, - 'w', 158, - '{', 272, - '|', 350, - '}', 273, - '~', 406, + '!', 96, + '"', 206, + '#', 139, + '$', 218, + '%', 160, + '&', 30, + '\'', 221, + '(', 97, + ')', 98, + '*', 158, + '+', 111, + ',', 104, + '-', 117, + '.', 124, + '/', 184, + '0', 191, + ':', 99, + ';', 91, + '<', 109, + '=', 101, + '>', 121, + '?', 138, + '[', 134, + '\\', 177, + ']', 137, + '^', 53, + '`', 215, + '{', 93, + '|', 131, + '}', 94, + '~', 143, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(267); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + lookahead == 0xfeff) SKIP(88); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(174); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(180); END_STATE(); case 1: - if (lookahead == '\n') SKIP(93); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '[') ADVANCE(105); - if (lookahead == '\\') ADVANCE(263); + if (lookahead == '\n') SKIP(40); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '[') ADVANCE(51); + if (lookahead == '\\') ADVANCE(85); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(670); - if (lookahead != 0) ADVANCE(671); + lookahead == 0xfeff) ADVANCE(185); + if (lookahead != 0) ADVANCE(186); END_STATE(); case 2: ADVANCE_MAP( - '!', 276, - '"', 759, - '#', 385, - '%', 440, - '\'', 773, - '(', 279, - ')', 280, - '+', 332, - '-', 335, - '.', 345, - '/', 412, - '0', 732, - '<', 325, - '?', 359, - '[', 352, - '\\', 52, - '`', 767, - 'a', 611, - 'e', 629, - 'f', 548, - 'i', 577, - 'l', 551, - 'm', 596, - 's', 627, - 't', 603, - 'u', 593, - 'w', 579, - '{', 272, - '~', 406, + '!', 95, + '"', 206, + '#', 139, + '%', 160, + '\'', 220, + '(', 97, + ')', 98, + '+', 115, + '-', 117, + '.', 126, + '/', 145, + '0', 191, + '<', 108, + '=', 48, + '[', 133, + '\\', 23, + '`', 214, + '{', 93, + '|', 49, + '~', 143, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(2); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(174); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(179); END_STATE(); case 3: ADVANCE_MAP( - '!', 276, - '"', 759, - '#', 385, - '%', 440, - '\'', 773, - '(', 279, - ')', 280, - '+', 332, - '-', 335, - '.', 83, - '/', 412, - '0', 732, - '<', 325, - '?', 359, - '[', 352, - '\\', 52, - ']', 356, - '`', 767, - 'a', 611, - 'e', 629, - 'f', 548, - 'i', 577, - 'l', 551, - 'm', 596, - 's', 627, - 't', 604, - 'u', 593, - 'w', 579, - '{', 272, - '}', 273, - '~', 238, + '!', 95, + '"', 206, + '#', 139, + '%', 160, + '\'', 220, + '(', 97, + ')', 98, + '+', 115, + '-', 118, + '.', 128, + '/', 145, + '0', 191, + '<', 108, + '?', 138, + '[', 133, + '\\', 23, + '`', 214, + '{', 93, + '~', 143, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(3); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(174); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(179); END_STATE(); case 4: ADVANCE_MAP( - '!', 276, - '"', 759, - '#', 385, - '%', 440, - '\'', 773, - '(', 279, - ')', 280, - '+', 332, - '-', 335, - '.', 343, - '/', 412, - '0', 732, - ':', 281, - '<', 325, - '?', 359, - '[', 352, - '\\', 52, - ']', 356, - '`', 767, - 'a', 611, - 'f', 548, - 'i', 577, - 'l', 551, - 'm', 596, - 's', 627, - 't', 604, - 'u', 593, - 'w', 579, - '{', 272, - '}', 273, - '~', 406, + '!', 95, + '#', 139, + '%', 160, + '\'', 178, + '(', 97, + ')', 98, + '+', 43, + ',', 104, + '-', 46, + '.', 125, + '/', 145, + ':', 99, + ';', 91, + '<', 108, + '=', 102, + '>', 120, + '?', 138, + '[', 134, + '\\', 26, + ']', 137, + '`', 215, + '{', 93, + '|', 130, + '}', 94, + '~', 142, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(4); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(174); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(180); END_STATE(); case 5: ADVANCE_MAP( - '!', 276, - '(', 279, - ')', 280, - '+', 96, - ',', 313, - '.', 82, - '/', 91, - ':', 283, - ';', 270, - '<', 325, - '=', 287, - '>', 337, - ']', 356, - 'a', 181, - 'c', 198, - 'i', 154, - 'm', 199, - 'u', 189, - 'w', 163, - '|', 348, - '}', 273, + '!', 42, + '"', 206, + '#', 139, + '%', 160, + '&', 30, + '\'', 221, + '(', 97, + '*', 158, + '+', 112, + '-', 117, + '.', 126, + '/', 144, + '0', 191, + ':', 47, + '<', 109, + '=', 45, + '>', 121, + '?', 138, + '[', 133, + '\\', 23, + '^', 53, + '`', 214, + '{', 93, + '|', 131, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(5); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(174); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(179); END_STATE(); case 6: ADVANCE_MAP( - '!', 95, - '"', 759, - '#', 385, - '%', 440, - '&', 62, - '\'', 773, - '(', 279, - '*', 438, - '+', 329, - '-', 334, - '.', 343, - '/', 411, - '0', 732, - ':', 283, - '<', 326, - '=', 286, - '>', 338, - '?', 359, - '[', 352, - '\\', 52, - '^', 107, - '`', 767, - 'a', 614, - 'f', 549, - 'i', 577, - 'l', 551, - 'm', 596, - 's', 627, - 't', 604, - 'u', 593, - '{', 272, - '|', 104, + '!', 42, + '"', 206, + '#', 139, + '%', 160, + '&', 30, + '\'', 220, + '(', 97, + '*', 158, + '+', 112, + '-', 117, + '.', 126, + '/', 144, + '0', 191, + ':', 99, + '<', 109, + '=', 101, + '>', 121, + '?', 138, + '[', 133, + '\\', 23, + '^', 53, + '`', 214, + '{', 93, + '|', 131, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(6); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(174); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(179); END_STATE(); case 7: ADVANCE_MAP( - '!', 95, - '"', 759, - '#', 385, - '%', 440, - '&', 62, - '\'', 773, - '(', 279, - '*', 438, - '+', 329, - '-', 334, - '.', 343, - '/', 411, - '0', 732, - ':', 284, - '<', 326, - '=', 99, - '>', 338, - '?', 359, - '[', 352, - '\\', 52, - '^', 107, - '`', 767, - 'a', 612, - 'f', 549, - 'i', 577, - 'l', 551, - 'm', 596, - 's', 627, - 't', 604, - 'u', 593, - '{', 272, - '|', 350, + '!', 42, + '"', 206, + '#', 139, + '%', 160, + '&', 30, + '\'', 220, + '(', 97, + '*', 158, + '+', 112, + '-', 117, + '.', 126, + '/', 144, + '0', 191, + ':', 47, + '<', 109, + '=', 44, + '>', 121, + '?', 138, + '[', 133, + '\\', 23, + '^', 53, + '_', 179, + '`', 214, + '{', 93, + '|', 50, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(7); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + lookahead == 0xfeff) SKIP(8); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(174); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(187); END_STATE(); case 8: ADVANCE_MAP( - '!', 95, - '"', 759, - '#', 385, - '%', 440, - '&', 62, - '\'', 773, - '(', 279, - '*', 438, - '+', 329, - '-', 334, - '.', 343, - '/', 411, - '0', 732, - ':', 101, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '\\', 52, - '^', 107, - '_', 633, - '`', 767, - 'a', 693, - 'f', 672, - 'i', 682, - 'l', 673, - 'm', 690, - 's', 698, - 't', 692, - 'u', 688, - '{', 272, - '|', 104, + '!', 42, + '"', 206, + '#', 139, + '%', 160, + '&', 30, + '\'', 220, + '(', 97, + '*', 158, + '+', 112, + '-', 117, + '.', 126, + '/', 144, + '0', 191, + ':', 47, + '<', 109, + '=', 44, + '>', 121, + '?', 138, + '[', 133, + '\\', 23, + '^', 53, + '`', 214, + '{', 93, + '|', 50, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(10); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + lookahead == 0xfeff) SKIP(8); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(174); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(179); END_STATE(); case 9: ADVANCE_MAP( - '!', 95, - '"', 759, - '#', 385, - '%', 440, - '&', 62, - '\'', 773, - '(', 279, - '*', 438, - '+', 329, - '-', 334, - '.', 343, - '/', 411, - '0', 732, - ':', 101, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '\\', 52, - '^', 107, - '`', 767, - 'a', 614, - 'e', 590, - 'f', 549, - 'i', 577, - 'l', 551, - 'm', 596, - 's', 627, - 't', 604, - 'u', 593, - '{', 272, - '|', 104, + '!', 42, + '%', 160, + '&', 30, + '\'', 178, + '(', 97, + ')', 98, + '*', 158, + '+', 113, + ',', 104, + '-', 119, + '.', 125, + '/', 144, + ':', 99, + ';', 91, + '<', 109, + '=', 101, + '>', 121, + '?', 138, + '[', 133, + '\\', 26, + ']', 137, + '^', 53, + '{', 93, + '|', 131, + '}', 94, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(9); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); END_STATE(); case 10: ADVANCE_MAP( - '!', 95, - '"', 759, - '#', 385, - '%', 440, - '&', 62, - '\'', 773, - '(', 279, - '*', 438, - '+', 329, - '-', 334, - '.', 343, - '/', 411, - '0', 732, - ':', 101, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '\\', 52, - '^', 107, - '`', 767, - 'a', 614, - 'f', 549, - 'i', 577, - 'l', 551, - 'm', 596, - 's', 627, - 't', 604, - 'u', 593, - '{', 272, - '|', 104, + '!', 42, + '%', 160, + '&', 30, + '\'', 178, + '(', 97, + ')', 98, + '*', 158, + '+', 113, + ',', 104, + '-', 119, + '.', 122, + '/', 144, + ':', 99, + ';', 91, + '<', 109, + '=', 101, + '>', 121, + '?', 138, + '[', 133, + '\\', 26, + ']', 137, + '^', 53, + '{', 93, + '|', 131, + '}', 94, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(10); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); END_STATE(); case 11: ADVANCE_MAP( - '!', 95, - '"', 759, - '#', 385, - '%', 440, - '&', 62, - '\'', 774, - '(', 279, - '*', 438, - '+', 329, - '-', 334, - '.', 343, - '/', 411, - '0', 732, - ':', 101, - '<', 326, - '=', 99, - '>', 338, - '?', 359, - '[', 352, - '\\', 52, - '^', 107, - '`', 767, - 'a', 482, - 'f', 461, - 'i', 471, - 'l', 462, - 'm', 479, - 's', 487, - 't', 481, - 'u', 477, - '{', 272, - '|', 350, + '!', 42, + '%', 160, + '&', 30, + '(', 97, + ')', 98, + '*', 158, + '+', 113, + ',', 104, + '-', 119, + '.', 125, + '/', 144, + ':', 100, + '<', 109, + '=', 44, + '>', 121, + '?', 138, + '[', 133, + '^', 53, + '|', 50, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(11); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); case 12: ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '\'', 547, - '(', 279, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 101, - '<', 326, - '=', 99, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - '^', 107, - 'a', 534, - 'u', 519, - '{', 272, - '|', 350, + '!', 42, + '%', 160, + '&', 30, + '(', 97, + ')', 98, + '*', 158, + '+', 113, + ',', 104, + '-', 119, + '.', 125, + '/', 144, + ':', 100, + '<', 109, + '=', 44, + '>', 121, + '?', 138, + '[', 133, + '^', 53, + '|', 50, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(12); - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); + lookahead == 0xfeff) SKIP(11); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 13: ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 342, - '/', 411, - ':', 283, - ';', 270, - '<', 326, - '=', 286, - '>', 338, - '?', 359, - '[', 352, - ']', 356, - '^', 107, - 'a', 182, - 'c', 122, - 'd', 197, - 'e', 172, - 'i', 155, - 'm', 199, - 'o', 156, - 't', 195, - 'u', 189, - 'w', 163, - '{', 272, - '|', 350, - '}', 273, + '!', 42, + '%', 160, + '&', 30, + '(', 97, + ')', 98, + '*', 158, + '+', 113, + ',', 104, + '-', 119, + '.', 122, + '/', 144, + ':', 100, + ';', 91, + '<', 109, + '=', 45, + '>', 121, + '?', 138, + '[', 133, + ']', 137, + '^', 53, + '{', 93, + '|', 131, + '}', 94, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -8621,99 +7822,97 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(13); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); case 14: ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 342, - '/', 411, - ':', 283, - '<', 326, - '=', 286, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - '^', 107, - 'a', 656, - 'u', 648, - '|', 104, - '}', 273, + '!', 42, + '%', 160, + '&', 30, + '(', 97, + ')', 98, + '*', 158, + '+', 113, + ',', 104, + '-', 119, + '.', 122, + '/', 144, + ':', 100, + ';', 91, + '<', 109, + '=', 45, + '>', 121, + '?', 138, + '[', 133, + ']', 137, + '^', 53, + '{', 93, + '|', 131, + '}', 94, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(14); - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + lookahead == 0xfeff) SKIP(13); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 15: ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 342, - '/', 411, - ':', 284, - '<', 326, - '=', 99, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - '^', 107, - 'a', 533, - '|', 350, + '!', 42, + '%', 160, + '&', 30, + '(', 97, + ')', 98, + '*', 158, + '+', 113, + ',', 104, + '-', 119, + '.', 127, + '/', 144, + ':', 100, + '<', 109, + '=', 101, + '>', 121, + '?', 138, + '[', 133, + ']', 137, + '^', 53, + '_', 180, + '|', 131, + '}', 94, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(15); - if (lookahead == '\'' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); + lookahead == 0xfeff) SKIP(16); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(188); END_STATE(); case 16: ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 342, - '/', 411, - ':', 284, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '^', 107, - '|', 104, + '!', 42, + '%', 160, + '&', 30, + '(', 97, + ')', 98, + '*', 158, + '+', 113, + ',', 104, + '-', 119, + '.', 127, + '/', 144, + ':', 100, + '<', 109, + '=', 101, + '>', 121, + '?', 138, + '[', 133, + ']', 137, + '^', 53, + '|', 131, + '}', 94, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -8721,65 +7920,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(16); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); END_STATE(); case 17: ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 342, - '/', 411, - ':', 284, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '^', 107, - '|', 104, + '!', 42, + '%', 160, + '&', 30, + '(', 97, + ')', 98, + '*', 158, + '+', 113, + '-', 119, + '.', 122, + '/', 144, + ':', 47, + ';', 91, + '<', 109, + '=', 44, + '>', 121, + '?', 138, + '[', 133, + '\\', 26, + '^', 53, + '_', 180, + '{', 93, + '|', 131, + '}', 94, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(16); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); + lookahead == 0xfeff) SKIP(18); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(188); END_STATE(); case 18: ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 339, - '/', 411, - ':', 283, - ';', 270, - '<', 326, - '=', 286, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - ']', 356, - '^', 107, - 'a', 656, - 'u', 648, - '{', 272, - '|', 350, - '}', 273, + '!', 42, + '%', 160, + '&', 30, + '(', 97, + ')', 98, + '*', 158, + '+', 113, + '-', 119, + '.', 122, + '/', 144, + ':', 47, + ';', 91, + '<', 109, + '=', 44, + '>', 121, + '?', 138, + '[', 133, + '\\', 26, + '^', 53, + '{', 93, + '|', 131, + '}', 94, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -8788,41 +7989,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(18); if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); END_STATE(); case 19: ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 339, - '/', 411, - ':', 283, - ';', 270, - '<', 326, - '=', 286, - '>', 338, - '?', 359, - '[', 352, - ']', 356, - '^', 107, - 'a', 181, - 'c', 121, - 'd', 197, - 'e', 172, - 'i', 155, - 't', 193, - 'w', 163, - '{', 272, - '|', 350, - '}', 273, + '!', 42, + '%', 160, + '&', 30, + '(', 97, + ')', 98, + '*', 158, + '+', 114, + '-', 119, + '.', 122, + '/', 144, + ':', 100, + ';', 91, + '<', 109, + '=', 101, + '>', 121, + '?', 138, + '[', 133, + '^', 53, + '|', 131, + '}', 94, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -8830,34 +8020,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(19); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); END_STATE(); case 20: ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 339, - '/', 411, - ':', 283, - '<', 326, - '=', 286, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - ']', 356, - '^', 107, - 'a', 657, - 'u', 648, - '{', 272, - '|', 350, - '}', 273, + '"', 206, + '\'', 178, + '(', 97, + '+', 110, + '-', 116, + '.', 123, + '/', 39, + '>', 120, + '[', 134, + '\\', 26, + '{', 93, + '|', 129, + '}', 94, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -8865,37 +8045,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(20); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(174); if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); END_STATE(); case 21: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 339, - '/', 411, - ':', 284, - ';', 270, - '<', 326, - '=', 99, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - ']', 356, - '^', 107, - 'a', 533, - '{', 272, - '|', 350, - '}', 273, - ); + if (lookahead == '"') ADVANCE(206); + if (lookahead == '.') ADVANCE(37); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '\\') ADVANCE(176); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || @@ -8903,333 +8061,100 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(21); if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); END_STATE(); case 22: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 339, - '/', 411, - ':', 284, - ';', 270, - '<', 326, - '=', 99, - '>', 338, - '?', 359, - '[', 352, - ']', 356, - '^', 107, - '{', 272, - '|', 350, - '}', 273, - ); + if (lookahead == '"') ADVANCE(206); + if (lookahead == '/') ADVANCE(209); + if (lookahead == '\\') ADVANCE(58); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(22); + lookahead == 0xfeff) ADVANCE(208); + if (lookahead != 0) ADVANCE(210); END_STATE(); case 23: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 339, - '/', 411, - ':', 284, - ';', 270, - '<', 326, - '=', 99, - '>', 338, - '?', 359, - '[', 352, - ']', 356, - '^', 107, - '{', 272, - '|', 350, - '}', 273, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(22); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); + if (lookahead == '"') ADVANCE(86); END_STATE(); case 24: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 344, - '/', 411, - ':', 284, - '<', 326, - '=', 286, - '>', 338, - '?', 359, - '[', 352, - ']', 356, - '^', 107, - 'a', 211, - 'i', 154, - 'w', 162, - '|', 350, - '}', 273, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(24); + if (lookahead == '"') ADVANCE(182); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 25: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 344, - '/', 411, - ':', 284, - '<', 326, - '=', 285, - '>', 338, - '?', 359, - '[', 352, - ']', 356, - '^', 107, - 'a', 723, - '|', 350, - '}', 273, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(26); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(729); + if (lookahead == '"') ADVANCE(181); + if (lookahead != 0) ADVANCE(25); END_STATE(); case 26: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - ',', 313, - '-', 336, - '.', 344, - '/', 411, - ':', 284, - '<', 326, - '=', 285, - '>', 338, - '?', 359, - '[', 352, - ']', 356, - '^', 107, - 'a', 211, - '|', 350, - '}', 273, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(26); + if (lookahead == '"') ADVANCE(87); END_STATE(); case 27: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 97, - ';', 270, - '<', 326, - '=', 286, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - '^', 107, - 'a', 650, - 'u', 648, - '|', 350, - '}', 273, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || + if (lookahead == '$') ADVANCE(218); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '\\') ADVANCE(57); + if (lookahead == '`') ADVANCE(215); + if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(27); - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); + lookahead == 0xfeff) SKIP(28); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(216); END_STATE(); case 28: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 101, - ';', 270, - '<', 326, - '=', 99, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - '^', 107, - 'a', 518, - '|', 350, - '}', 273, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || + if (lookahead == '$') ADVANCE(218); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '\\') ADVANCE(56); + if (lookahead == '`') ADVANCE(215); + if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(28); - if (lookahead == '\'' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(216); END_STATE(); case 29: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 101, - ';', 270, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '^', 107, - 'a', 714, - '|', 350, - '}', 273, - ); + if (lookahead == '%') ADVANCE(160); + if (lookahead == '/') ADVANCE(39); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(30); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(729); + lookahead == 0xfeff) SKIP(29); + if (('.' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); END_STATE(); case 30: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 101, - ';', 270, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '^', 107, - 'a', 179, - '|', 350, - '}', 273, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(30); + if (lookahead == '&') ADVANCE(148); END_STATE(); case 31: ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - ')', 280, - '*', 438, - '+', 331, - '-', 336, - '.', 339, - '/', 411, - ':', 284, - ';', 270, - '<', 326, - '=', 286, - '>', 338, - '?', 359, - '[', 352, - '^', 107, - 'a', 181, - 'c', 198, - 'w', 166, - '|', 350, - '}', 273, + '\'', 178, + '(', 97, + ')', 98, + '+', 43, + ',', 104, + '-', 46, + '.', 122, + '/', 145, + ':', 99, + ';', 91, + '<', 108, + '=', 102, + '>', 120, + '?', 138, + '[', 133, + '\\', 26, + ']', 137, + '{', 93, + '|', 130, + '}', 94, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -9237,96 +8162,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(31); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); END_STATE(); case 32: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 97, - '<', 326, - '=', 286, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - '^', 107, - 'a', 656, - 'c', 636, - 'u', 648, - '|', 104, - ); + if (lookahead == '\'') ADVANCE(220); + if (lookahead == '/') ADVANCE(223); + if (lookahead == '\\') ADVANCE(58); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(32); - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); + lookahead == 0xfeff) ADVANCE(224); + if (lookahead != 0) ADVANCE(222); END_STATE(); case 33: ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 97, - '<', 326, - '=', 286, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - '^', 107, - 'a', 656, - 'd', 652, - 't', 653, - 'u', 648, - '|', 104, + '(', 97, + '-', 46, + '.', 122, + '/', 145, + '>', 120, + '?', 138, + '[', 133, + '\\', 26, + '_', 180, + '{', 93, + '|', 49, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(33); - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); + lookahead == 0xfeff) SKIP(34); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(188); END_STATE(); case 34: ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 101, - '<', 326, - '=', 99, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - '^', 107, - 'a', 533, - 'c', 494, - '|', 350, + '(', 97, + '-', 46, + '.', 122, + '/', 145, + '>', 120, + '?', 138, + '[', 133, + '\\', 26, + '{', 93, + '|', 49, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -9334,194 +8218,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(34); - if (lookahead == '\'' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); END_STATE(); case 35: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 101, - '<', 326, - '=', 99, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - '^', 107, - 'a', 533, - 'd', 525, - 't', 526, - '|', 350, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(35); - if (lookahead == '\'' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); + if (lookahead == '.') ADVANCE(132); END_STATE(); case 36: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 101, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - '^', 107, - '_', 665, - 'a', 724, - 'u', 715, - '{', 272, - '|', 104, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(38); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (lookahead == '.') ADVANCE(64); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(63); + if (lookahead == 'L' || + lookahead == 'l' || + lookahead == 'n') ADVANCE(204); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(68); END_STATE(); case 37: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 101, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - '^', 107, - 'a', 656, - 'e', 647, - 'u', 648, - '{', 272, - '|', 104, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(37); - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); + if (lookahead == '.') ADVANCE(35); END_STATE(); case 38: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 101, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '\\', 56, - '^', 107, - 'a', 656, - 'u', 648, - '{', 272, - '|', 104, - ); + if (lookahead == '/') ADVANCE(184); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(38); - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); + lookahead == 0xfeff) SKIP(40); END_STATE(); case 39: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 101, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '^', 107, - 'c', 704, - '|', 104, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(40); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); + if (lookahead == '/') ADVANCE(92); END_STATE(); case 40: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 101, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '^', 107, - 'c', 121, - '|', 104, - ); + if (lookahead == '/') ADVANCE(39); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || @@ -9530,5383 +8263,1458 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfeff) SKIP(40); END_STATE(); case 41: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 101, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '^', 107, - 'd', 197, - 't', 193, - '|', 104, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(41); + if (lookahead == '0') ADVANCE(65); END_STATE(); case 42: - ADVANCE_MAP( - '!', 95, - '%', 440, - '&', 62, - '(', 279, - '*', 438, - '+', 330, - '-', 336, - '.', 339, - '/', 411, - ':', 101, - '<', 326, - '=', 98, - '>', 338, - '?', 359, - '[', 352, - '^', 107, - 'd', 719, - 't', 720, - '|', 104, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(41); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); + if (lookahead == '=') ADVANCE(169); END_STATE(); case 43: - ADVANCE_MAP( - '"', 759, - '#', 385, - '%', 440, - '\'', 773, - '(', 279, - '+', 87, - '-', 86, - '.', 343, - '/', 412, - '0', 732, - '<', 325, - '=', 102, - '?', 359, - '[', 352, - '\\', 52, - '`', 767, - 'a', 614, - 'f', 549, - 'i', 577, - 'l', 551, - 'm', 596, - 's', 627, - 't', 604, - 'u', 593, - '{', 272, - '|', 103, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(43); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (lookahead == '=') ADVANCE(105); END_STATE(); case 44: - ADVANCE_MAP( - '"', 759, - '#', 385, - '\'', 773, - '(', 279, - ')', 280, - '.', 345, - '/', 412, - '0', 732, - '?', 359, - '[', 352, - '\\', 52, - '`', 767, - 'a', 614, - 'e', 629, - 'f', 549, - 'l', 551, - 'm', 596, - 't', 606, - 'u', 593, - '{', 272, - '~', 405, - '+', 87, - '-', 87, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(44); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (lookahead == '=') ADVANCE(167); END_STATE(); case 45: - ADVANCE_MAP( - '"', 759, - '#', 385, - '\'', 773, - '(', 279, - ')', 280, - '.', 83, - '/', 412, - '0', 732, - '?', 359, - '[', 352, - '\\', 52, - ']', 356, - '`', 767, - 'a', 614, - 'e', 629, - 'f', 549, - 'l', 551, - 'm', 596, - 't', 607, - 'u', 593, - '{', 272, - '}', 273, - '+', 87, - '-', 87, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(45); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(103); END_STATE(); case 46: - ADVANCE_MAP( - '"', 759, - '#', 385, - '\'', 773, - '(', 279, - '.', 251, - '/', 412, - '0', 732, - '?', 359, - '[', 352, - '\\', 52, - '`', 767, - 'a', 614, - 'e', 629, - 'f', 549, - 'l', 551, - 'm', 596, - 'r', 575, - 't', 606, - 'u', 593, - '{', 272, - '+', 87, - '-', 87, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(46); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (lookahead == '>') ADVANCE(140); END_STATE(); case 47: - ADVANCE_MAP( - '"', 759, - '#', 385, - '\'', 773, - '(', 279, - '.', 251, - '/', 412, - '0', 732, - '?', 359, - '[', 352, - '\\', 52, - '`', 767, - 'a', 614, - 'e', 629, - 'f', 549, - 'l', 551, - 'm', 596, - 'r', 575, - 't', 607, - 'u', 593, - '{', 272, - '+', 87, - '-', 87, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(47); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (lookahead == '>') ADVANCE(172); END_STATE(); case 48: - ADVANCE_MAP( - '"', 759, - '\'', 773, - '.', 251, - '/', 412, - '0', 732, - '\\', 57, - '`', 767, - 'f', 113, - 't', 117, - '+', 87, - '-', 87, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(48); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(120); + if (lookahead == '>') ADVANCE(103); END_STATE(); case 49: - if (lookahead == '"') ADVANCE(759); - if (lookahead == '.') ADVANCE(82); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '\\') ADVANCE(459); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(49); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(458); + if (lookahead == '>') ADVANCE(141); END_STATE(); case 50: - ADVANCE_MAP( - '"', 759, - '.', 340, - '/', 91, - '\\', 56, - 'a', 656, - 'm', 662, - 'u', 648, - '}', 273, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(50); - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); + if (lookahead == '>') ADVANCE(141); + if (lookahead == '|') ADVANCE(150); END_STATE(); case 51: - if (lookahead == '"') ADVANCE(759); - if (lookahead == '/') ADVANCE(762); - if (lookahead == '\\') ADVANCE(228); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(761); - if (lookahead != 0) ADVANCE(763); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(186); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(51); END_STATE(); case 52: - if (lookahead == '"') ADVANCE(264); + if (lookahead == '^') ADVANCE(151); END_STATE(); case 53: - if (lookahead == '"') ADVANCE(667); - if (lookahead != 0) ADVANCE(53); + if (lookahead == '^') ADVANCE(52); END_STATE(); case 54: - if (lookahead == '"') ADVANCE(666); - if (lookahead != 0) ADVANCE(54); + if (lookahead == '_') ADVANCE(67); + if (lookahead == '0' || + lookahead == '1') ADVANCE(54); + if (lookahead == 'L' || + lookahead == 'l' || + lookahead == 'n') ADVANCE(190); END_STATE(); case 55: - if (lookahead == '"') ADVANCE(112); - if (lookahead != 0) ADVANCE(55); + if (lookahead == '_') ADVANCE(71); + if (lookahead == 'L' || + lookahead == 'l' || + lookahead == 'n') ADVANCE(190); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(55); END_STATE(); case 56: - if (lookahead == '"') ADVANCE(265); + if (lookahead == '`') ADVANCE(217); END_STATE(); case 57: - if (lookahead == '"') ADVANCE(266); + if (lookahead == '`') ADVANCE(217); + if (lookahead == 'u') ADVANCE(59); + if (lookahead == 'x') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(213); + if (lookahead != 0) ADVANCE(211); END_STATE(); case 58: - ADVANCE_MAP( - '#', 385, - '(', 279, - ')', 280, - '.', 342, - '/', 91, - '>', 337, - '[', 353, - '\\', 56, - '`', 768, - 'm', 524, - 't', 546, - 'u', 516, - '{', 272, - '|', 348, - '~', 405, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(58); - if (lookahead == '\'' || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(547); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (lookahead == 'u') ADVANCE(59); + if (lookahead == 'x') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(213); + if (lookahead != 0) ADVANCE(211); END_STATE(); case 59: - if (lookahead == '$') ADVANCE(771); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '\\') ADVANCE(111); - if (lookahead == '`') ADVANCE(768); - if (lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(60); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(769); + if (lookahead == '{') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(82); END_STATE(); case 60: - if (lookahead == '$') ADVANCE(771); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '\\') ADVANCE(110); - if (lookahead == '`') ADVANCE(768); - if (lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(60); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(769); + if (lookahead == '}') ADVANCE(211); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); END_STATE(); case 61: - if (lookahead == '%') ADVANCE(440); - if (lookahead == '/') ADVANCE(91); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(61); - if (('.' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); + if (lookahead == '~') ADVANCE(173); END_STATE(); case 62: - if (lookahead == '&') ADVANCE(428); + if (lookahead == '+' || + lookahead == '-') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(200); END_STATE(); case 63: - if (lookahead == '\'') ADVANCE(773); - if (lookahead == '/') ADVANCE(776); - if (lookahead == '\\') ADVANCE(228); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(777); - if (lookahead != 0) ADVANCE(775); + if (lookahead == '+' || + lookahead == '-') ADVANCE(77); + if (lookahead == 'L' || + lookahead == 'l' || + lookahead == 'n') ADVANCE(190); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(69); END_STATE(); case 64: - ADVANCE_MAP( - '(', 279, - ')', 280, - ',', 313, - '-', 100, - '.', 339, - '/', 412, - ':', 282, - '=', 287, - '>', 337, - '?', 359, - '[', 352, - '\\', 56, - 'a', 656, - 'u', 648, - '{', 272, - '|', 103, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(64); - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(63); + if (lookahead == 'L' || + lookahead == 'l' || + lookahead == 'n') ADVANCE(204); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(68); END_STATE(); case 65: - ADVANCE_MAP( - '(', 279, - ',', 313, - '.', 339, - '/', 91, - ':', 281, - '=', 102, - '>', 337, - 'a', 211, - '|', 348, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(65); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(79); END_STATE(); case 66: - ADVANCE_MAP( - '(', 279, - '-', 100, - '.', 339, - '/', 412, - '>', 337, - '?', 359, - '[', 352, - '\\', 56, - '_', 665, - 'a', 724, - 'u', 715, - '{', 272, - '|', 103, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(68); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(730); + if (lookahead == '0' || + lookahead == '1') ADVANCE(197); END_STATE(); case 67: - ADVANCE_MAP( - '(', 279, - '-', 100, - '.', 339, - '/', 412, - '>', 337, - '?', 359, - '[', 352, - '\\', 56, - 'a', 656, - 'e', 647, - 'u', 648, - '{', 272, - '|', 103, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(67); - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); + if (lookahead == '0' || + lookahead == '1') ADVANCE(54); END_STATE(); case 68: - ADVANCE_MAP( - '(', 279, - '-', 100, - '.', 339, - '/', 412, - '>', 337, - '?', 359, - '[', 352, - '\\', 56, - 'a', 656, - 'u', 648, - '{', 272, - '|', 103, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(68); - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); + if (lookahead == 'L' || + lookahead == 'l' || + lookahead == 'n') ADVANCE(190); END_STATE(); case 69: - ADVANCE_MAP( - '(', 279, - '.', 79, - '/', 91, - '[', 353, - '\\', 56, - 'm', 524, - 'p', 531, - 't', 546, - 'u', 516, - '{', 272, - '|', 348, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(69); - if (lookahead == '\'' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (lookahead == 'L' || + lookahead == 'l' || + lookahead == 'n') ADVANCE(204); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(69); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(68); END_STATE(); case 70: - if (lookahead == '(') ADVANCE(279); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '\\') ADVANCE(56); - if (lookahead == 'r') ADVANCE(504); - if (lookahead == 't') ADVANCE(546); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(70); - if (lookahead == '\'' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(198); END_STATE(); case 71: - if (lookahead == '(') ADVANCE(279); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '\\') ADVANCE(56); - if (lookahead == 'r') ADVANCE(504); - if (lookahead == 'u') ADVANCE(519); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(71); - if (lookahead == '\'' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(55); END_STATE(); case 72: - if (lookahead == '(') ADVANCE(279); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '\\') ADVANCE(56); - if (lookahead == 'u') ADVANCE(519); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(72); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); - if (lookahead == '\'' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(194); END_STATE(); case 73: - ADVANCE_MAP( - ')', 280, - '+', 327, - ',', 313, - '-', 333, - '.', 339, - '/', 91, - '<', 325, - '>', 337, - '\\', 56, - '}', 273, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(73); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); - if (lookahead == '\'' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(199); END_STATE(); case 74: - ADVANCE_MAP( - ')', 280, - '+', 96, - '.', 339, - '/', 91, - ';', 270, - '<', 325, - '=', 287, - '\\', 56, - 'a', 518, - 'c', 528, - '|', 348, - '}', 273, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(74); - if (lookahead == '\'' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(196); END_STATE(); case 75: - ADVANCE_MAP( - ')', 280, - ',', 313, - '.', 342, - '/', 91, - '<', 325, - '=', 102, - '\\', 56, - 'a', 533, - '|', 348, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(75); - if (lookahead == '\'' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(200); END_STATE(); case 76: - ADVANCE_MAP( - ')', 280, - ',', 313, - '.', 339, - '/', 91, - ':', 283, - '<', 325, - '=', 287, - '>', 337, - '\\', 56, - ']', 356, - 'a', 533, - '|', 348, - '}', 273, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(76); - if (lookahead == '\'' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(205); END_STATE(); case 77: - ADVANCE_MAP( - ')', 280, - ',', 313, - '.', 339, - '/', 91, - ':', 281, - ';', 270, - '<', 325, - '=', 287, - '\\', 56, - 'a', 518, - 'w', 513, - '|', 348, - '}', 273, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(77); - if (lookahead == '\'' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(69); END_STATE(); case 78: - ADVANCE_MAP( - ')', 280, - '.', 339, - '/', 91, - ';', 270, - '<', 325, - '=', 287, - '\\', 56, - 'a', 518, - '|', 348, - '}', 273, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(78); - if (lookahead == '\'' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(195); END_STATE(); case 79: - if (lookahead == '.') ADVANCE(324); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); END_STATE(); case 80: - if (lookahead == '.') ADVANCE(351); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(211); END_STATE(); case 81: - if (lookahead == '.') ADVANCE(242); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(241); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(745); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(246); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); END_STATE(); case 82: - if (lookahead == '.') ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); END_STATE(); case 83: - if (lookahead == '.') ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(740); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); END_STATE(); case 84: - ADVANCE_MAP( - '.', 339, - '/', 91, - ':', 281, - '<', 325, - '=', 102, - '\\', 56, - 'a', 533, - 'i', 506, - 'w', 509, - '|', 348, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(84); - if (lookahead == '\'' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(51); END_STATE(); case 85: - if (lookahead == '.') ADVANCE(323); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(186); END_STATE(); case 86: - if (lookahead == '.') ADVANCE(251); - if (lookahead == '0') ADVANCE(733); - if (lookahead == '>') ADVANCE(403); - if (lookahead == '+' || - lookahead == '-') ADVANCE(94); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); + if (lookahead != 0 && + lookahead != '"') ADVANCE(24); END_STATE(); case 87: - if (lookahead == '.') ADVANCE(251); - if (lookahead == '0') ADVANCE(733); - if (lookahead == '+' || - lookahead == '-') ADVANCE(94); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); + if (lookahead != 0 && + lookahead != '"') ADVANCE(25); END_STATE(); case 88: + if (eof) ADVANCE(90); ADVANCE_MAP( - '.', 85, - '/', 91, - ':', 281, - '=', 102, - 'a', 723, - 'i', 710, - 'w', 712, - '|', 348, + '!', 96, + '"', 206, + '#', 139, + '$', 218, + '%', 160, + '&', 30, + '\'', 221, + '(', 97, + ')', 98, + '*', 158, + '+', 111, + ',', 104, + '-', 117, + '.', 124, + '/', 144, + '0', 191, + ':', 99, + ';', 91, + '<', 109, + '=', 101, + '>', 121, + '?', 138, + '[', 134, + '\\', 177, + ']', 137, + '^', 53, + '`', 215, + '{', 93, + '|', 131, + '}', 94, + '~', 143, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(89); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(729); + lookahead == 0xfeff) SKIP(88); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(174); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(180); END_STATE(); case 89: + if (eof) ADVANCE(90); ADVANCE_MAP( - '.', 85, - '/', 91, - ':', 281, + '!', 95, + '"', 206, + '#', 139, + '%', 160, + '\'', 220, + '(', 97, + ')', 98, + '+', 115, + ',', 104, + '-', 117, + '.', 124, + '/', 145, + '0', 191, + ':', 99, + ';', 91, + '<', 108, '=', 102, - 'a', 211, - 'i', 154, - 'w', 162, - '|', 348, + '>', 120, + '?', 138, + '[', 133, + '\\', 23, + ']', 137, + '`', 214, + '{', 93, + '|', 130, + '}', 94, + '~', 143, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(89); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(174); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(179); END_STATE(); case 90: - if (lookahead == '/') ADVANCE(669); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(93); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 91: - if (lookahead == '/') ADVANCE(271); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 92: - if (lookahead == '/') ADVANCE(91); - if (lookahead == '\\') ADVANCE(56); - if (lookahead == 't') ADVANCE(546); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(92); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); - if (lookahead == '\'' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + ACCEPT_TOKEN(sym_line_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(92); END_STATE(); case 93: - if (lookahead == '/') ADVANCE(91); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(93); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 94: - if (lookahead == '0') ADVANCE(243); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 95: - if (lookahead == '=') ADVANCE(449); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 96: - if (lookahead == '=') ADVANCE(320); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(169); END_STATE(); case 97: - if (lookahead == '=') ADVANCE(413); - if (lookahead == '>') ADVANCE(452); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 98: - if (lookahead == '=') ADVANCE(447); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 99: - if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(312); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(146); + if (lookahead == '>') ADVANCE(172); END_STATE(); case 100: - if (lookahead == '>') ADVANCE(403); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '>') ADVANCE(172); END_STATE(); case 101: - if (lookahead == '>') ADVANCE(452); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(103); END_STATE(); case 102: - if (lookahead == '>') ADVANCE(312); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(103); END_STATE(); case 103: - if (lookahead == '>') ADVANCE(404); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 104: - if (lookahead == '>') ADVANCE(404); - if (lookahead == '|') ADVANCE(430); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 105: - if (lookahead == '\\') ADVANCE(262); - if (lookahead == ']') ADVANCE(671); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(105); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 106: - if (lookahead == '^') ADVANCE(431); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 107: - if (lookahead == '^') ADVANCE(106); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(132); END_STATE(); case 108: - if (lookahead == '_') ADVANCE(245); - if (lookahead == '0' || - lookahead == '1') ADVANCE(108); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(731); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 109: - if (lookahead == '_') ADVANCE(249); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(731); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(109); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(163); + if (lookahead == '=') ADVANCE(166); END_STATE(); case 110: - if (lookahead == '`') ADVANCE(770); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 111: - if (lookahead == '`') ADVANCE(770); - if (lookahead == 'u') ADVANCE(236); - if (lookahead == 'x') ADVANCE(261); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(766); - if (lookahead != 0) ADVANCE(764); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(153); + if (lookahead == '-') ADVANCE(41); + if (lookahead == '.') ADVANCE(155); + if (lookahead == '0') ADVANCE(192); + if (lookahead == '=') ADVANCE(105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); END_STATE(); case 112: - if (lookahead == '`') ADVANCE(767); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(153); + if (lookahead == '-') ADVANCE(41); + if (lookahead == '.') ADVANCE(155); + if (lookahead == '0') ADVANCE(192); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); END_STATE(); case 113: - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(116); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(120); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(152); + if (lookahead == '.') ADVANCE(154); END_STATE(); case 114: - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(753); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(120); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(152); + if (lookahead == '.') ADVANCE(154); + if (lookahead == '=') ADVANCE(105); END_STATE(); case 115: - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(758); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(120); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(155); + if (lookahead == '0') ADVANCE(192); + if (lookahead == '+' || + lookahead == '-') ADVANCE(41); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); END_STATE(); case 116: - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'l') ADVANCE(118); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(120); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 117: - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'r') ADVANCE(119); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(120); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(157); + if (lookahead == '0') ADVANCE(192); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '+' || + lookahead == '-') ADVANCE(41); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); END_STATE(); case 118: - if (lookahead == '`') ADVANCE(767); - if (lookahead == 's') ADVANCE(115); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(120); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(157); + if (lookahead == '0') ADVANCE(192); + if (lookahead == '+' || + lookahead == '-') ADVANCE(41); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); END_STATE(); case 119: - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'u') ADVANCE(114); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(120); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(156); + if (lookahead == '>') ADVANCE(140); END_STATE(); case 120: - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(120); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 121: - if (lookahead == 'a') ADVANCE(222); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(171); + if (lookahead == '>') ADVANCE(165); END_STATE(); case 122: - if (lookahead == 'a') ADVANCE(222); - if (lookahead == 'o') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 123: - if (lookahead == 'a') ADVANCE(178); - if (lookahead == 'o') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(107); END_STATE(); case 124: - if (lookahead == 'a') ADVANCE(235); - if (lookahead == 'e') ADVANCE(215); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(199); END_STATE(); case 125: - if (lookahead == 'a') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(35); END_STATE(); case 126: - if (lookahead == 'a') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(35); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(199); END_STATE(); case 127: - if (lookahead == 'a') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(106); END_STATE(); case 128: - if (lookahead == 'a') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(199); END_STATE(); case 129: - if (lookahead == 'a') ADVANCE(169); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 130: - if (lookahead == 'a') ADVANCE(226); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '>') ADVANCE(141); END_STATE(); case 131: - if (lookahead == 'b') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '>') ADVANCE(141); + if (lookahead == '|') ADVANCE(150); END_STATE(); case 132: - if (lookahead == 'c') ADVANCE(295); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 133: - if (lookahead == 'c') ADVANCE(362); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 134: - if (lookahead == 'c') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '<') ADVANCE(136); + if (lookahead == '>') ADVANCE(135); END_STATE(); case 135: - if (lookahead == 'c') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_LBRACK_GT); END_STATE(); case 136: - if (lookahead == 'c') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_LBRACK_LT); END_STATE(); case 137: - if (lookahead == 'c') ADVANCE(149); - if (lookahead == 'p') ADVANCE(201); - if (lookahead == 't') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 138: - if (lookahead == 'd') ADVANCE(301); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 139: - if (lookahead == 'd') ADVANCE(230); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 140: - if (lookahead == 'e') ADVANCE(132); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 141: - if (lookahead == 'e') ADVANCE(375); + ACCEPT_TOKEN(anon_sym_PIPE_GT); END_STATE(); case 142: - if (lookahead == 'e') ADVANCE(749); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 143: - if (lookahead == 'e') ADVANCE(298); + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '~') ADVANCE(61); END_STATE(); case 144: - if (lookahead == 'e') ADVANCE(754); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '.') ADVANCE(162); + if (lookahead == '/') ADVANCE(92); END_STATE(); case 145: - if (lookahead == 'e') ADVANCE(425); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(92); END_STATE(); case 146: - if (lookahead == 'e') ADVANCE(290); + ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); case 147: - if (lookahead == 'e') ADVANCE(357); + ACCEPT_TOKEN(anon_sym_AMP_AMP_AMP); END_STATE(); case 148: - if (lookahead == 'e') ADVANCE(321); + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '&') ADVANCE(147); END_STATE(); case 149: - if (lookahead == 'e') ADVANCE(205); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_PIPE); END_STATE(); case 150: - if (lookahead == 'e') ADVANCE(208); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '|') ADVANCE(149); END_STATE(); case 151: - if (lookahead == 'e') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_CARET_CARET_CARET); END_STATE(); case 152: - if (lookahead == 'e') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 153: - if (lookahead == 'e') ADVANCE(185); - if (lookahead == 'i') ADVANCE(175); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '0') ADVANCE(65); END_STATE(); case 154: - if (lookahead == 'f') ADVANCE(369); + ACCEPT_TOKEN(anon_sym_PLUS_DOT); END_STATE(); case 155: - if (lookahead == 'f') ADVANCE(369); - if (lookahead == 'n') ADVANCE(416); + ACCEPT_TOKEN(anon_sym_PLUS_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(199); END_STATE(); case 156: - if (lookahead == 'f') ADVANCE(454); + ACCEPT_TOKEN(anon_sym_DASH_DOT); END_STATE(); case 157: - if (lookahead == 'f') ADVANCE(454); - if (lookahead == 'p') ADVANCE(151); + ACCEPT_TOKEN(anon_sym_DASH_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(199); END_STATE(); case 158: - if (lookahead == 'h') ADVANCE(153); - if (lookahead == 'i') ADVANCE(216); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(161); + if (lookahead == '.') ADVANCE(159); END_STATE(); case 159: - if (lookahead == 'h') ADVANCE(455); + ACCEPT_TOKEN(anon_sym_STAR_DOT); END_STATE(); case 160: - if (lookahead == 'h') ADVANCE(390); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 161: - if (lookahead == 'h') ADVANCE(378); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 162: - if (lookahead == 'h') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_SLASH_DOT); END_STATE(); case 163: - if (lookahead == 'h') ADVANCE(152); - if (lookahead == 'i') ADVANCE(216); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 164: - if (lookahead == 'i') ADVANCE(231); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); case 165: - if (lookahead == 'i') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(164); END_STATE(); case 166: - if (lookahead == 'i') ADVANCE(216); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 167: - if (lookahead == 'i') ADVANCE(217); - if (lookahead == 'p') ADVANCE(128); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(168); END_STATE(); case 168: - if (lookahead == 'i') ADVANCE(218); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 169: - if (lookahead == 'i') ADVANCE(192); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(170); END_STATE(); case 170: - if (lookahead == 'i') ADVANCE(227); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 171: - if (lookahead == 'k') ADVANCE(305); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 172: - if (lookahead == 'l') ADVANCE(212); + ACCEPT_TOKEN(anon_sym_COLON_GT); END_STATE(); case 173: - if (lookahead == 'l') ADVANCE(212); - if (lookahead == 'x') ADVANCE(137); + ACCEPT_TOKEN(anon_sym_TILDE_TILDE_TILDE); END_STATE(); case 174: - if (lookahead == 'l') ADVANCE(314); + ACCEPT_TOKEN(aux_sym_variant_identifier_token1); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); END_STATE(); case 175: - if (lookahead == 'l') ADVANCE(145); + ACCEPT_TOKEN(aux_sym_polyvar_identifier_token1); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); END_STATE(); case 176: - if (lookahead == 'l') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); case 177: - if (lookahead == 'l') ADVANCE(147); + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '`') ADVANCE(217); END_STATE(); case 178: - if (lookahead == 'l') ADVANCE(214); + ACCEPT_TOKEN(aux_sym_type_identifier_token1); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 179: - if (lookahead == 'n') ADVANCE(138); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '`') ADVANCE(214); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(179); END_STATE(); case 180: - if (lookahead == 'n') ADVANCE(138); - if (lookahead == 's') ADVANCE(398); - if (lookahead == 'w') ADVANCE(127); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); END_STATE(); case 181: - if (lookahead == 'n') ADVANCE(138); - if (lookahead == 's') ADVANCE(394); + ACCEPT_TOKEN(sym__escape_identifier); END_STATE(); case 182: - if (lookahead == 'n') ADVANCE(138); - if (lookahead == 's') ADVANCE(394); - if (lookahead == 'w') ADVANCE(127); + ACCEPT_TOKEN(sym__escape_identifier); + if (lookahead == '`') ADVANCE(214); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(167); + ACCEPT_TOKEN(sym_extension_identifier); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); END_STATE(); case 184: - if (lookahead == 'n') ADVANCE(274); + ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); case 185: - if (lookahead == 'n') ADVANCE(382); + ACCEPT_TOKEN(sym_regex_pattern); + if (lookahead == '\n') SKIP(40); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '[') ADVANCE(51); + if (lookahead == '\\') ADVANCE(85); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(185); + if (lookahead != 0) ADVANCE(186); END_STATE(); case 186: - if (lookahead == 'n') ADVANCE(316); + ACCEPT_TOKEN(sym_regex_pattern); + if (lookahead == '[') ADVANCE(51); + if (lookahead == '\\') ADVANCE(85); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '/') ADVANCE(186); END_STATE(); case 187: - if (lookahead == 'n') ADVANCE(213); + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == '`') ADVANCE(214); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(187); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(179); END_STATE(); case 188: - if (lookahead == 'n') ADVANCE(133); + ACCEPT_TOKEN(sym_regex_flags); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(188); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(180); END_STATE(); case 189: - if (lookahead == 'n') ADVANCE(203); + ACCEPT_TOKEN(sym_regex_flags); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); case 190: - if (lookahead == 'n') ADVANCE(126); + ACCEPT_TOKEN(sym_number); END_STATE(); case 191: - if (lookahead == 'n') ADVANCE(223); + ACCEPT_TOKEN(sym_number); + ADVANCE_MAP( + '.', 202, + '0', 193, + '_', 74, + 'B', 66, + 'b', 66, + 'E', 62, + 'e', 62, + 'O', 70, + 'o', 70, + 'X', 78, + 'x', 78, + 'L', 190, + 'l', 190, + 'n', 190, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); END_STATE(); case 192: - if (lookahead == 'n') ADVANCE(220); + ACCEPT_TOKEN(sym_number); + ADVANCE_MAP( + '.', 202, + '0', 193, + '_', 74, + 'B', 67, + 'b', 67, + 'E', 62, + 'e', 62, + 'O', 71, + 'o', 71, + 'X', 78, + 'x', 78, + 'L', 190, + 'l', 190, + 'n', 190, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); END_STATE(); case 193: - if (lookahead == 'o') ADVANCE(417); + ACCEPT_TOKEN(sym_number); + ADVANCE_MAP( + '.', 202, + '0', 193, + '_', 74, + 'E', 62, + 'e', 62, + 'L', 190, + 'l', 190, + 'n', 190, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(194); END_STATE(); case 194: - if (lookahead == 'o') ADVANCE(417); - if (lookahead == 'r') ADVANCE(229); - if (lookahead == 'y') ADVANCE(204); + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(202); + if (lookahead == '_') ADVANCE(72); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(62); + if (lookahead == 'L' || + lookahead == 'l' || + lookahead == 'n') ADVANCE(190); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(194); END_STATE(); case 195: - if (lookahead == 'o') ADVANCE(417); - if (lookahead == 'y') ADVANCE(204); + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(203); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(201); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(195); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(204); END_STATE(); case 196: - if (lookahead == 'o') ADVANCE(421); + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(74); + if (lookahead == 'n') ADVANCE(190); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(196); END_STATE(); case 197: - if (lookahead == 'o') ADVANCE(233); + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(66); + if (lookahead == '0' || + lookahead == '1') ADVANCE(197); + if (lookahead == 'L' || + lookahead == 'l' || + lookahead == 'n') ADVANCE(190); END_STATE(); case 198: - if (lookahead == 'o') ADVANCE(187); + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(70); + if (lookahead == 'L' || + lookahead == 'l' || + lookahead == 'n') ADVANCE(190); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(198); END_STATE(); case 199: - if (lookahead == 'o') ADVANCE(139); + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(73); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(199); END_STATE(); case 200: - if (lookahead == 'o') ADVANCE(139); - if (lookahead == 'u') ADVANCE(221); + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(200); END_STATE(); case 201: - if (lookahead == 'o') ADVANCE(209); + ACCEPT_TOKEN(sym_number); + if (lookahead == '+' || + lookahead == '-') ADVANCE(76); + if (lookahead == 'L' || + lookahead == 'l' || + lookahead == 'n') ADVANCE(190); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(205); END_STATE(); case 202: - if (lookahead == 'o') ADVANCE(186); + ACCEPT_TOKEN(sym_number); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(199); END_STATE(); case 203: - if (lookahead == 'p') ADVANCE(128); + ACCEPT_TOKEN(sym_number); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(201); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(203); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(204); END_STATE(); case 204: - if (lookahead == 'p') ADVANCE(143); + ACCEPT_TOKEN(sym_number); + if (lookahead == 'L' || + lookahead == 'l' || + lookahead == 'n') ADVANCE(190); END_STATE(); case 205: - if (lookahead == 'p') ADVANCE(224); + ACCEPT_TOKEN(sym_number); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(205); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(204); END_STATE(); case 206: - if (lookahead == 'r') ADVANCE(164); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 207: - if (lookahead == 'r') ADVANCE(414); + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '\n') ADVANCE(210); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(207); END_STATE(); case 208: - if (lookahead == 'r') ADVANCE(190); + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '/') ADVANCE(209); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(208); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(210); END_STATE(); case 209: - if (lookahead == 'r') ADVANCE(219); + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '/') ADVANCE(207); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(210); END_STATE(); case 210: - if (lookahead == 'r') ADVANCE(129); + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(210); END_STATE(); case 211: - if (lookahead == 's') ADVANCE(394); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 212: - if (lookahead == 's') ADVANCE(141); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(211); END_STATE(); case 213: - if (lookahead == 's') ADVANCE(225); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(212); END_STATE(); case 214: - if (lookahead == 's') ADVANCE(144); + ACCEPT_TOKEN(aux_sym_template_string_token1); END_STATE(); case 215: - if (lookahead == 't') ADVANCE(360); + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 216: - if (lookahead == 't') ADVANCE(159); + ACCEPT_TOKEN(aux_sym_template_string_content_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(216); END_STATE(); case 217: - if (lookahead == 't') ADVANCE(747); + ACCEPT_TOKEN(anon_sym_BSLASH_BQUOTE); END_STATE(); case 218: - if (lookahead == 't') ADVANCE(288); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '{') ADVANCE(219); END_STATE(); case 219: - if (lookahead == 't') ADVANCE(318); + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); case 220: - if (lookahead == 't') ADVANCE(346); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 221: - if (lookahead == 't') ADVANCE(125); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); END_STATE(); case 222: - if (lookahead == 't') ADVANCE(135); + ACCEPT_TOKEN(aux_sym_character_token1); END_STATE(); case 223: - if (lookahead == 't') ADVANCE(196); + ACCEPT_TOKEN(aux_sym_character_token1); + if (lookahead == '/') ADVANCE(92); END_STATE(); case 224: - if (lookahead == 't') ADVANCE(165); + ACCEPT_TOKEN(aux_sym_character_token1); + if (lookahead == '/') ADVANCE(223); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(224); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(222); END_STATE(); - case 225: - if (lookahead == 't') ADVANCE(210); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + ADVANCE_MAP( + 'a', 1, + 'c', 2, + 'd', 3, + 'e', 4, + 'f', 5, + 'i', 6, + 'l', 7, + 'm', 8, + 'o', 9, + 'p', 10, + 'r', 11, + 's', 12, + 't', 13, + 'u', 14, + 'w', 15, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(0); END_STATE(); - case 226: - if (lookahead == 't') ADVANCE(148); + case 1: + if (lookahead == 'n') ADVANCE(16); + if (lookahead == 's') ADVANCE(17); + if (lookahead == 'w') ADVANCE(18); END_STATE(); - case 227: - if (lookahead == 't') ADVANCE(136); + case 2: + if (lookahead == 'a') ADVANCE(19); + if (lookahead == 'o') ADVANCE(20); END_STATE(); - case 228: - if (lookahead == 'u') ADVANCE(236); - if (lookahead == 'x') ADVANCE(261); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(766); - if (lookahead != 0) ADVANCE(764); + case 3: + if (lookahead == 'o') ADVANCE(21); END_STATE(); - case 229: - if (lookahead == 'u') ADVANCE(142); - if (lookahead == 'y') ADVANCE(386); + case 4: + if (lookahead == 'l') ADVANCE(22); + if (lookahead == 'x') ADVANCE(23); END_STATE(); - case 230: - if (lookahead == 'u') ADVANCE(176); + case 5: + if (lookahead == 'a') ADVANCE(24); + if (lookahead == 'o') ADVANCE(25); END_STATE(); - case 231: - if (lookahead == 'v') ADVANCE(130); + case 6: + if (lookahead == 'f') ADVANCE(26); + if (lookahead == 'n') ADVANCE(27); END_STATE(); - case 232: - if (lookahead == 'w') ADVANCE(170); + case 7: + if (lookahead == 'a') ADVANCE(28); + if (lookahead == 'e') ADVANCE(29); END_STATE(); - case 233: - if (lookahead == 'w') ADVANCE(191); + case 8: + if (lookahead == 'o') ADVANCE(30); + if (lookahead == 'u') ADVANCE(31); END_STATE(); - case 234: - if (lookahead == 'y') ADVANCE(407); + case 9: + if (lookahead == 'f') ADVANCE(32); + if (lookahead == 'p') ADVANCE(33); END_STATE(); - case 235: - if (lookahead == 'z') ADVANCE(234); + case 10: + if (lookahead == 'r') ADVANCE(34); END_STATE(); - case 236: - if (lookahead == '{') ADVANCE(259); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(260); + case 11: + if (lookahead == 'e') ADVANCE(35); END_STATE(); - case 237: - if (lookahead == '}') ADVANCE(764); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(237); + case 12: + if (lookahead == 'w') ADVANCE(36); END_STATE(); - case 238: - if (lookahead == '~') ADVANCE(239); + case 13: + if (lookahead == 'o') ADVANCE(37); + if (lookahead == 'r') ADVANCE(38); + if (lookahead == 'y') ADVANCE(39); END_STATE(); - case 239: - if (lookahead == '~') ADVANCE(453); + case 14: + if (lookahead == 'n') ADVANCE(40); END_STATE(); - case 240: - if (lookahead == '+' || - lookahead == '-') ADVANCE(253); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(741); + case 15: + if (lookahead == 'h') ADVANCE(41); + if (lookahead == 'i') ADVANCE(42); END_STATE(); - case 241: - if (lookahead == '+' || - lookahead == '-') ADVANCE(255); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(247); + case 16: + if (lookahead == 'd') ADVANCE(43); END_STATE(); - case 242: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(241); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(745); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(242); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(246); + case 17: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 's') ADVANCE(44); + if (lookahead == 'y') ADVANCE(45); END_STATE(); - case 243: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(257); + case 18: + if (lookahead == 'a') ADVANCE(46); END_STATE(); - case 244: - if (lookahead == '0' || - lookahead == '1') ADVANCE(738); + case 19: + if (lookahead == 't') ADVANCE(47); END_STATE(); - case 245: - if (lookahead == '0' || - lookahead == '1') ADVANCE(108); + case 20: + if (lookahead == 'n') ADVANCE(48); END_STATE(); - case 246: - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(731); + case 21: + if (lookahead == 'w') ADVANCE(49); END_STATE(); - case 247: - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(745); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(247); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(246); + case 22: + if (lookahead == 's') ADVANCE(50); END_STATE(); - case 248: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(739); + case 23: + if (lookahead == 'c') ADVANCE(51); + if (lookahead == 'p') ADVANCE(52); + if (lookahead == 't') ADVANCE(53); END_STATE(); - case 249: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(109); + case 24: + if (lookahead == 'l') ADVANCE(54); END_STATE(); - case 250: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(735); + case 25: + if (lookahead == 'r') ADVANCE(55); END_STATE(); - case 251: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(740); + case 26: + ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 252: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(737); + case 27: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'c') ADVANCE(56); END_STATE(); - case 253: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(741); + case 28: + if (lookahead == 'z') ADVANCE(57); END_STATE(); - case 254: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(746); + case 29: + if (lookahead == 't') ADVANCE(58); END_STATE(); - case 255: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(247); + case 30: + if (lookahead == 'd') ADVANCE(59); END_STATE(); - case 256: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(736); + case 31: + if (lookahead == 't') ADVANCE(60); END_STATE(); - case 257: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); + case 32: + ACCEPT_TOKEN(anon_sym_of); END_STATE(); - case 258: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(764); + case 33: + if (lookahead == 'e') ADVANCE(61); END_STATE(); - case 259: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(237); + case 34: + if (lookahead == 'i') ADVANCE(62); END_STATE(); - case 260: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(261); + case 35: + if (lookahead == 'c') ADVANCE(63); END_STATE(); - case 261: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(258); + case 36: + if (lookahead == 'i') ADVANCE(64); END_STATE(); - case 262: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(105); + case 37: + ACCEPT_TOKEN(anon_sym_to); END_STATE(); - case 263: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(671); + case 38: + if (lookahead == 'u') ADVANCE(65); + if (lookahead == 'y') ADVANCE(66); END_STATE(); - case 264: - if (lookahead != 0 && - lookahead != '"') ADVANCE(53); + case 39: + if (lookahead == 'p') ADVANCE(67); END_STATE(); - case 265: - if (lookahead != 0 && - lookahead != '"') ADVANCE(54); + case 40: + if (lookahead == 'i') ADVANCE(68); + if (lookahead == 'p') ADVANCE(69); END_STATE(); - case 266: - if (lookahead != 0 && - lookahead != '"') ADVANCE(55); + case 41: + if (lookahead == 'e') ADVANCE(70); + if (lookahead == 'i') ADVANCE(71); END_STATE(); - case 267: - if (eof) ADVANCE(269); - ADVANCE_MAP( - '!', 277, - '"', 759, - '#', 385, - '$', 771, - '%', 440, - '&', 62, - '\'', 773, - '(', 279, - ')', 280, - '*', 438, - '+', 328, - ',', 313, - '-', 334, - '.', 341, - '/', 411, - '0', 732, - ':', 283, - ';', 270, - '<', 326, - '=', 286, - '>', 338, - '?', 359, - '[', 353, - '\\', 460, - ']', 356, - '^', 107, - '`', 768, - 'a', 180, - 'c', 122, - 'd', 197, - 'e', 173, - 'f', 123, - 'i', 155, - 'l', 124, - 'm', 200, - 'o', 157, - 'p', 206, - 'r', 140, - 's', 232, - 't', 194, - 'u', 183, - 'w', 158, - '{', 272, - '|', 350, - '}', 273, - '~', 406, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(267); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + case 42: + if (lookahead == 't') ADVANCE(72); END_STATE(); - case 268: - if (eof) ADVANCE(269); - ADVANCE_MAP( - '!', 276, - '"', 759, - '#', 385, - '%', 440, - '\'', 773, - '(', 279, - ')', 280, - '+', 332, - ',', 313, - '-', 334, - '.', 341, - '/', 412, - '0', 732, - ':', 283, - ';', 270, - '<', 325, - '=', 287, - '>', 337, - '?', 359, - '[', 352, - '\\', 52, - ']', 356, - '`', 767, - 'a', 611, - 'e', 628, - 'f', 548, - 'i', 576, - 'l', 550, - 'm', 596, - 'o', 599, - 's', 627, - 't', 603, - 'u', 593, - 'w', 579, - '{', 272, - '|', 349, - '}', 273, - '~', 238, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(268); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + case 43: + ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 269: - ACCEPT_TOKEN(ts_builtin_sym_end); + case 44: + if (lookahead == 'e') ADVANCE(73); END_STATE(); - case 270: - ACCEPT_TOKEN(anon_sym_SEMI); + case 45: + if (lookahead == 'n') ADVANCE(74); END_STATE(); - case 271: - ACCEPT_TOKEN(sym_line_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(271); + case 46: + if (lookahead == 'i') ADVANCE(75); END_STATE(); - case 272: - ACCEPT_TOKEN(anon_sym_LBRACE); + case 47: + if (lookahead == 'c') ADVANCE(76); END_STATE(); - case 273: - ACCEPT_TOKEN(anon_sym_RBRACE); + case 48: + if (lookahead == 's') ADVANCE(77); END_STATE(); - case 274: - ACCEPT_TOKEN(anon_sym_open); + case 49: + if (lookahead == 'n') ADVANCE(78); END_STATE(); - case 275: - ACCEPT_TOKEN(anon_sym_open); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 50: + if (lookahead == 'e') ADVANCE(79); END_STATE(); - case 276: - ACCEPT_TOKEN(anon_sym_BANG); + case 51: + if (lookahead == 'e') ADVANCE(80); END_STATE(); - case 277: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(449); + case 52: + if (lookahead == 'o') ADVANCE(81); END_STATE(); - case 278: - ACCEPT_TOKEN(anon_sym_include); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 53: + if (lookahead == 'e') ADVANCE(82); END_STATE(); - case 279: - ACCEPT_TOKEN(anon_sym_LPAREN); + case 54: + if (lookahead == 's') ADVANCE(83); END_STATE(); - case 280: - ACCEPT_TOKEN(anon_sym_RPAREN); + case 55: + ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 281: - ACCEPT_TOKEN(anon_sym_COLON); + case 56: + if (lookahead == 'l') ADVANCE(84); END_STATE(); - case 282: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(413); + case 57: + if (lookahead == 'y') ADVANCE(85); END_STATE(); - case 283: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(413); - if (lookahead == '>') ADVANCE(452); + case 58: + ACCEPT_TOKEN(anon_sym_let); END_STATE(); - case 284: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '>') ADVANCE(452); + case 59: + if (lookahead == 'u') ADVANCE(86); END_STATE(); - case 285: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(447); + case 60: + if (lookahead == 'a') ADVANCE(87); END_STATE(); - case 286: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(312); + case 61: + if (lookahead == 'n') ADVANCE(88); END_STATE(); - case 287: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(312); + case 62: + if (lookahead == 'v') ADVANCE(89); END_STATE(); - case 288: - ACCEPT_TOKEN(anon_sym_await); + case 63: + ACCEPT_TOKEN(anon_sym_rec); END_STATE(); - case 289: - ACCEPT_TOKEN(anon_sym_await); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 64: + if (lookahead == 't') ADVANCE(90); END_STATE(); - case 290: - ACCEPT_TOKEN(anon_sym_module); + case 65: + if (lookahead == 'e') ADVANCE(91); END_STATE(); - case 291: - ACCEPT_TOKEN(anon_sym_module); - if (lookahead == '`') ADVANCE(767); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); + case 66: + ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 292: - ACCEPT_TOKEN(anon_sym_module); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 67: + if (lookahead == 'e') ADVANCE(92); END_STATE(); - case 293: - ACCEPT_TOKEN(anon_sym_module); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); + case 68: + if (lookahead == 't') ADVANCE(93); END_STATE(); - case 294: - ACCEPT_TOKEN(anon_sym_module); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 69: + if (lookahead == 'a') ADVANCE(94); END_STATE(); - case 295: - ACCEPT_TOKEN(anon_sym_rec); + case 70: + if (lookahead == 'n') ADVANCE(95); END_STATE(); - case 296: - ACCEPT_TOKEN(anon_sym_rec); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 71: + if (lookahead == 'l') ADVANCE(96); END_STATE(); - case 297: - ACCEPT_TOKEN(anon_sym_rec); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 72: + if (lookahead == 'h') ADVANCE(97); END_STATE(); - case 298: - ACCEPT_TOKEN(anon_sym_type); + case 73: + if (lookahead == 'r') ADVANCE(98); END_STATE(); - case 299: - ACCEPT_TOKEN(anon_sym_type); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 74: + if (lookahead == 'c') ADVANCE(99); END_STATE(); - case 300: - ACCEPT_TOKEN(anon_sym_type); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 75: + if (lookahead == 't') ADVANCE(100); END_STATE(); - case 301: - ACCEPT_TOKEN(anon_sym_and); + case 76: + if (lookahead == 'h') ADVANCE(101); END_STATE(); - case 302: - ACCEPT_TOKEN(anon_sym_and); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); + case 77: + if (lookahead == 't') ADVANCE(102); END_STATE(); - case 303: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 78: + if (lookahead == 't') ADVANCE(103); END_STATE(); - case 304: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); + case 79: + ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 305: - ACCEPT_TOKEN(anon_sym_unpack); + case 80: + if (lookahead == 'p') ADVANCE(104); END_STATE(); - case 306: - ACCEPT_TOKEN(anon_sym_unpack); - if (lookahead == '`') ADVANCE(767); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); + case 81: + if (lookahead == 'r') ADVANCE(105); END_STATE(); - case 307: - ACCEPT_TOKEN(anon_sym_unpack); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 82: + if (lookahead == 'r') ADVANCE(106); END_STATE(); - case 308: - ACCEPT_TOKEN(anon_sym_unpack); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); + case 83: + if (lookahead == 'e') ADVANCE(107); END_STATE(); - case 309: - ACCEPT_TOKEN(anon_sym_unpack); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(665); - END_STATE(); - case 310: - ACCEPT_TOKEN(anon_sym_unpack); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 311: - ACCEPT_TOKEN(anon_sym_unpack); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 312: - ACCEPT_TOKEN(anon_sym_EQ_GT); - END_STATE(); - case 313: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 314: - ACCEPT_TOKEN(anon_sym_external); - END_STATE(); - case 315: - ACCEPT_TOKEN(anon_sym_external); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 316: - ACCEPT_TOKEN(anon_sym_exception); - END_STATE(); - case 317: - ACCEPT_TOKEN(anon_sym_exception); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 318: - ACCEPT_TOKEN(anon_sym_export); - END_STATE(); - case 319: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 320: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 321: - ACCEPT_TOKEN(anon_sym_private); - END_STATE(); - case 322: - ACCEPT_TOKEN(anon_sym_private); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 323: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - END_STATE(); - case 324: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(351); - END_STATE(); - case 325: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 326: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(446); - END_STATE(); - case 327: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 328: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(433); - if (lookahead == '-') ADVANCE(94); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '0') ADVANCE(733); - if (lookahead == '=') ADVANCE(320); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - END_STATE(); - case 329: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(433); - if (lookahead == '-') ADVANCE(94); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '0') ADVANCE(733); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - END_STATE(); - case 330: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(432); - if (lookahead == '.') ADVANCE(434); - END_STATE(); - case 331: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(432); - if (lookahead == '.') ADVANCE(434); - if (lookahead == '=') ADVANCE(320); - END_STATE(); - case 332: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '0') ADVANCE(733); - if (lookahead == '+' || - lookahead == '-') ADVANCE(94); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - END_STATE(); - case 333: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 334: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(437); - if (lookahead == '0') ADVANCE(733); - if (lookahead == '>') ADVANCE(403); - if (lookahead == '+' || - lookahead == '-') ADVANCE(94); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - END_STATE(); - case 335: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(437); - if (lookahead == '0') ADVANCE(733); - if (lookahead == '+' || - lookahead == '-') ADVANCE(94); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - END_STATE(); - case 336: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(436); - if (lookahead == '>') ADVANCE(403); - END_STATE(); - case 337: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 338: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(445); - END_STATE(); - case 339: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 340: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(324); - END_STATE(); - case 341: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(324); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(740); - END_STATE(); - case 342: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(80); - END_STATE(); - case 343: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(740); - END_STATE(); - case 344: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(323); - END_STATE(); - case 345: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(740); - END_STATE(); - case 346: - ACCEPT_TOKEN(anon_sym_constraint); - END_STATE(); - case 347: - ACCEPT_TOKEN(anon_sym_constraint); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 348: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 349: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '>') ADVANCE(404); - END_STATE(); - case 350: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '>') ADVANCE(404); - if (lookahead == '|') ADVANCE(430); - END_STATE(); - case 351: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - END_STATE(); - case 352: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 353: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '<') ADVANCE(355); - if (lookahead == '>') ADVANCE(354); - END_STATE(); - case 354: - ACCEPT_TOKEN(anon_sym_LBRACK_GT); - END_STATE(); - case 355: - ACCEPT_TOKEN(anon_sym_LBRACK_LT); - END_STATE(); - case 356: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 357: - ACCEPT_TOKEN(anon_sym_mutable); - END_STATE(); - case 358: - ACCEPT_TOKEN(anon_sym_mutable); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 359: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 360: - ACCEPT_TOKEN(anon_sym_let); - END_STATE(); - case 361: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 362: - ACCEPT_TOKEN(anon_sym_async); - END_STATE(); - case 363: - ACCEPT_TOKEN(anon_sym_async); - if (lookahead == '`') ADVANCE(767); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 364: - ACCEPT_TOKEN(anon_sym_async); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 365: - ACCEPT_TOKEN(anon_sym_async); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 366: - ACCEPT_TOKEN(anon_sym_async); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(665); - END_STATE(); - case 367: - ACCEPT_TOKEN(anon_sym_async); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 368: - ACCEPT_TOKEN(anon_sym_async); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 369: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 370: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == '`') ADVANCE(767); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 371: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 372: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 373: - ACCEPT_TOKEN(anon_sym_if); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); + case 84: + if (lookahead == 'u') ADVANCE(108); END_STATE(); - case 374: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 85: + ACCEPT_TOKEN(anon_sym_lazy); END_STATE(); - case 375: - ACCEPT_TOKEN(anon_sym_else); + case 86: + if (lookahead == 'l') ADVANCE(109); END_STATE(); - case 376: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 87: + if (lookahead == 'b') ADVANCE(110); END_STATE(); - case 377: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); + case 88: + ACCEPT_TOKEN(anon_sym_open); END_STATE(); - case 378: - ACCEPT_TOKEN(anon_sym_switch); + case 89: + if (lookahead == 'a') ADVANCE(111); END_STATE(); - case 379: - ACCEPT_TOKEN(anon_sym_switch); - if (lookahead == '`') ADVANCE(767); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); + case 90: + if (lookahead == 'c') ADVANCE(112); END_STATE(); - case 380: - ACCEPT_TOKEN(anon_sym_switch); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 91: + ACCEPT_TOKEN(sym_true); END_STATE(); - case 381: - ACCEPT_TOKEN(anon_sym_switch); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); + case 92: + ACCEPT_TOKEN(anon_sym_type); END_STATE(); - case 382: - ACCEPT_TOKEN(anon_sym_when); + case 93: + ACCEPT_TOKEN(sym_unit_type); END_STATE(); - case 383: - ACCEPT_TOKEN(anon_sym_when); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); + case 94: + if (lookahead == 'c') ADVANCE(113); END_STATE(); - case 384: + case 95: ACCEPT_TOKEN(anon_sym_when); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 385: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 386: - ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 387: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == '`') ADVANCE(767); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 388: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 96: + if (lookahead == 'e') ADVANCE(114); END_STATE(); - case 389: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); + case 97: + ACCEPT_TOKEN(anon_sym_with); END_STATE(); - case 390: - ACCEPT_TOKEN(anon_sym_catch); + case 98: + if (lookahead == 't') ADVANCE(115); END_STATE(); - case 391: - ACCEPT_TOKEN(anon_sym_catch); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); + case 99: + ACCEPT_TOKEN(anon_sym_async); END_STATE(); - case 392: - ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 100: + ACCEPT_TOKEN(anon_sym_await); END_STATE(); - case 393: + case 101: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 394: - ACCEPT_TOKEN(anon_sym_as); - END_STATE(); - case 395: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'y') ADVANCE(594); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 396: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'y') ADVANCE(478); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 397: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(649); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 398: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(188); - END_STATE(); - case 399: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(520); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 400: - ACCEPT_TOKEN(anon_sym_as); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 401: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 402: - ACCEPT_TOKEN(anon_sym_assert); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); END_STATE(); - case 403: - ACCEPT_TOKEN(anon_sym_DASH_GT); - END_STATE(); - case 404: - ACCEPT_TOKEN(anon_sym_PIPE_GT); - END_STATE(); - case 405: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 406: - ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '~') ADVANCE(239); - END_STATE(); - case 407: - ACCEPT_TOKEN(anon_sym_lazy); - END_STATE(); - case 408: - ACCEPT_TOKEN(anon_sym_lazy); - if (lookahead == '`') ADVANCE(767); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 409: - ACCEPT_TOKEN(anon_sym_lazy); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 410: - ACCEPT_TOKEN(anon_sym_lazy); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 411: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '.') ADVANCE(442); - if (lookahead == '/') ADVANCE(271); - END_STATE(); - case 412: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(271); - END_STATE(); - case 413: - ACCEPT_TOKEN(anon_sym_COLON_EQ); - END_STATE(); - case 414: - ACCEPT_TOKEN(anon_sym_for); + case 102: + if (lookahead == 'r') ADVANCE(116); END_STATE(); - case 415: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 103: + if (lookahead == 'o') ADVANCE(117); END_STATE(); - case 416: - ACCEPT_TOKEN(anon_sym_in); + case 104: + if (lookahead == 't') ADVANCE(118); END_STATE(); - case 417: - ACCEPT_TOKEN(anon_sym_to); + case 105: + if (lookahead == 't') ADVANCE(119); END_STATE(); - case 418: - ACCEPT_TOKEN(anon_sym_to); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); + case 106: + if (lookahead == 'n') ADVANCE(120); END_STATE(); - case 419: - ACCEPT_TOKEN(anon_sym_to); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 107: + ACCEPT_TOKEN(sym_false); END_STATE(); - case 420: - ACCEPT_TOKEN(anon_sym_to); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); + case 108: + if (lookahead == 'd') ADVANCE(121); END_STATE(); - case 421: - ACCEPT_TOKEN(anon_sym_downto); + case 109: + if (lookahead == 'e') ADVANCE(122); END_STATE(); - case 422: - ACCEPT_TOKEN(anon_sym_downto); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); + case 110: + if (lookahead == 'l') ADVANCE(123); END_STATE(); - case 423: - ACCEPT_TOKEN(anon_sym_downto); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 111: + if (lookahead == 't') ADVANCE(124); END_STATE(); - case 424: - ACCEPT_TOKEN(anon_sym_downto); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); + case 112: + if (lookahead == 'h') ADVANCE(125); END_STATE(); - case 425: - ACCEPT_TOKEN(anon_sym_while); + case 113: + if (lookahead == 'k') ADVANCE(126); END_STATE(); - case 426: + case 114: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 427: - ACCEPT_TOKEN(anon_sym_AMP_AMP_AMP); - END_STATE(); - case 428: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '&') ADVANCE(427); - END_STATE(); - case 429: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_PIPE); - END_STATE(); - case 430: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '|') ADVANCE(429); - END_STATE(); - case 431: - ACCEPT_TOKEN(anon_sym_CARET_CARET_CARET); - END_STATE(); - case 432: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - END_STATE(); - case 433: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '0') ADVANCE(243); - END_STATE(); - case 434: - ACCEPT_TOKEN(anon_sym_PLUS_DOT); - END_STATE(); - case 435: - ACCEPT_TOKEN(anon_sym_PLUS_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(740); - END_STATE(); - case 436: - ACCEPT_TOKEN(anon_sym_DASH_DOT); - END_STATE(); - case 437: - ACCEPT_TOKEN(anon_sym_DASH_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(740); - END_STATE(); - case 438: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(441); - if (lookahead == '.') ADVANCE(439); - END_STATE(); - case 439: - ACCEPT_TOKEN(anon_sym_STAR_DOT); - END_STATE(); - case 440: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 441: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - END_STATE(); - case 442: - ACCEPT_TOKEN(anon_sym_SLASH_DOT); - END_STATE(); - case 443: - ACCEPT_TOKEN(anon_sym_LT_LT); - END_STATE(); - case 444: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - END_STATE(); - case 445: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(444); - END_STATE(); - case 446: - ACCEPT_TOKEN(anon_sym_LT_EQ); - END_STATE(); - case 447: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(448); - END_STATE(); - case 448: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); - END_STATE(); - case 449: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(450); - END_STATE(); - case 450: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); - END_STATE(); - case 451: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 452: - ACCEPT_TOKEN(anon_sym_COLON_GT); - END_STATE(); - case 453: - ACCEPT_TOKEN(anon_sym_TILDE_TILDE_TILDE); - END_STATE(); - case 454: - ACCEPT_TOKEN(anon_sym_of); - END_STATE(); - case 455: - ACCEPT_TOKEN(anon_sym_with); - END_STATE(); - case 456: - ACCEPT_TOKEN(anon_sym_with); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 457: - ACCEPT_TOKEN(aux_sym_variant_identifier_token1); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(457); - END_STATE(); - case 458: - ACCEPT_TOKEN(aux_sym_polyvar_identifier_token1); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(458); - END_STATE(); - case 459: - ACCEPT_TOKEN(anon_sym_BSLASH); - END_STATE(); - case 460: - ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '`') ADVANCE(770); - END_STATE(); - case 461: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(475); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 462: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(489); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 463: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(465); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 464: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 465: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'c') ADVANCE(474); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 466: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'c') ADVANCE(365); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 467: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'd') ADVANCE(486); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 468: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 469: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(757); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 470: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(293); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 471: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'f') ADVANCE(372); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 472: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'h') ADVANCE(381); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 473: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'i') ADVANCE(484); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 474: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'k') ADVANCE(308); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 475: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 476: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'l') ADVANCE(470); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 477: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'n') ADVANCE(480); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 478: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'n') ADVANCE(466); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 479: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'o') ADVANCE(467); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 480: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'p') ADVANCE(463); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 481: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'r') ADVANCE(485); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 482: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 's') ADVANCE(396); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 483: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 's') ADVANCE(469); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 484: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 't') ADVANCE(464); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 485: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'u') ADVANCE(468); - if (lookahead == 'y') ADVANCE(389); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 486: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'u') ADVANCE(476); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 487: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'w') ADVANCE(473); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 488: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'y') ADVANCE(410); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 489: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'z') ADVANCE(488); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'y')) ADVANCE(490); - END_STATE(); - case 490: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 491: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'a') ADVANCE(495); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 492: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'a') ADVANCE(540); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 493: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'a') ADVANCE(512); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 494: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'a') ADVANCE(541); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 495: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'c') ADVANCE(514); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 496: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'c') ADVANCE(508); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 497: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'c') ADVANCE(297); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 498: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'c') ADVANCE(367); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 499: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'd') ADVANCE(543); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 500: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'd') ADVANCE(303); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 501: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'e') ADVANCE(300); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 502: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'e') ADVANCE(294); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 503: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'e') ADVANCE(322); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 504: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'e') ADVANCE(497); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 505: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'e') ADVANCE(517); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 506: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'f') ADVANCE(374); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 507: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'h') ADVANCE(456); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 508: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'h') ADVANCE(392); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 509: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'h') ADVANCE(505); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 510: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'i') ADVANCE(536); - if (lookahead == 'p') ADVANCE(491); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 511: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'i') ADVANCE(544); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 512: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'i') ADVANCE(523); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 513: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'i') ADVANCE(539); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 514: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'k') ADVANCE(310); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 515: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'l') ADVANCE(502); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 516: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'n') ADVANCE(510); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 517: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'n') ADVANCE(384); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 518: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'n') ADVANCE(500); - if (lookahead == 's') ADVANCE(401); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 519: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'n') ADVANCE(530); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 520: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'n') ADVANCE(498); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 521: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'n') ADVANCE(542); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 522: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'n') ADVANCE(535); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 523: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'n') ADVANCE(537); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 524: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'o') ADVANCE(499); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 525: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'o') ADVANCE(545); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 526: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'o') ADVANCE(419); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 527: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'o') ADVANCE(423); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 528: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'o') ADVANCE(522); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 529: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'p') ADVANCE(501); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 530: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'p') ADVANCE(491); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 531: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'r') ADVANCE(511); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 532: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'r') ADVANCE(493); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 533: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 's') ADVANCE(401); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); END_STATE(); - case 534: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 's') ADVANCE(399); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 115: + ACCEPT_TOKEN(anon_sym_assert); END_STATE(); - case 535: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 's') ADVANCE(538); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 116: + if (lookahead == 'a') ADVANCE(127); END_STATE(); - case 536: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 't') ADVANCE(748); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 117: + ACCEPT_TOKEN(anon_sym_downto); END_STATE(); - case 537: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 't') ADVANCE(347); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 118: + if (lookahead == 'i') ADVANCE(128); END_STATE(); - case 538: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 't') ADVANCE(532); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 119: + ACCEPT_TOKEN(anon_sym_export); END_STATE(); - case 539: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 't') ADVANCE(507); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 120: + if (lookahead == 'a') ADVANCE(129); END_STATE(); - case 540: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 't') ADVANCE(503); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 121: + if (lookahead == 'e') ADVANCE(130); END_STATE(); - case 541: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 't') ADVANCE(496); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 122: + ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 542: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 't') ADVANCE(527); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 123: + if (lookahead == 'e') ADVANCE(131); END_STATE(); - case 543: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'u') ADVANCE(515); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 124: + if (lookahead == 'e') ADVANCE(132); END_STATE(); - case 544: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'v') ADVANCE(492); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 125: + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); - case 545: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'w') ADVANCE(521); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 126: + ACCEPT_TOKEN(anon_sym_unpack); END_STATE(); - case 546: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == 'y') ADVANCE(529); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 127: + if (lookahead == 'i') ADVANCE(133); END_STATE(); - case 547: - ACCEPT_TOKEN(aux_sym_type_identifier_token1); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); + case 128: + if (lookahead == 'o') ADVANCE(134); END_STATE(); - case 548: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(585); - if (lookahead == 'o') ADVANCE(605); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 129: + if (lookahead == 'l') ADVANCE(135); END_STATE(); - case 549: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(585); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 130: + ACCEPT_TOKEN(anon_sym_include); END_STATE(); - case 550: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(632); - if (lookahead == 'e') ADVANCE(617); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 131: + ACCEPT_TOKEN(anon_sym_mutable); END_STATE(); - case 551: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(632); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 132: + ACCEPT_TOKEN(anon_sym_private); END_STATE(); - case 552: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(586); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 133: + if (lookahead == 'n') ADVANCE(136); END_STATE(); - case 553: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(556); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 134: + if (lookahead == 'n') ADVANCE(137); END_STATE(); - case 554: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(583); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 135: + ACCEPT_TOKEN(anon_sym_external); END_STATE(); - case 555: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'c') ADVANCE(364); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 136: + if (lookahead == 't') ADVANCE(138); END_STATE(); - case 556: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'c') ADVANCE(584); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); + case 137: + ACCEPT_TOKEN(anon_sym_exception); END_STATE(); - case 557: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'c') ADVANCE(296); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 558: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'c') ADVANCE(578); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 559: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'c') ADVANCE(587); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 560: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'c') ADVANCE(572); - if (lookahead == 'p') ADVANCE(598); - if (lookahead == 't') ADVANCE(574); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 561: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'c') ADVANCE(572); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 562: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'd') ADVANCE(626); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 563: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'd') ADVANCE(569); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 564: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(751); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 565: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(299); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 566: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(756); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 567: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(426); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 568: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(292); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 569: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(278); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 570: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(376); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 571: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(609); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 572: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(601); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 573: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(591); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 574: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(608); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 575: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(557); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 576: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'f') ADVANCE(371); - if (lookahead == 'n') ADVANCE(559); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 577: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'f') ADVANCE(371); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 578: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'h') ADVANCE(380); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 579: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'h') ADVANCE(582); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 580: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'i') ADVANCE(621); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 581: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'i') ADVANCE(597); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 582: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'i') ADVANCE(588); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 583: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'i') ADVANCE(618); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 584: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'k') ADVANCE(307); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 585: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'l') ADVANCE(615); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 586: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'l') ADVANCE(315); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 587: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'l') ADVANCE(623); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 588: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'l') ADVANCE(567); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 589: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'l') ADVANCE(568); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 590: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'l') ADVANCE(616); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 591: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'n') ADVANCE(275); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 592: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'n') ADVANCE(317); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 593: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'n') ADVANCE(600); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 594: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'n') ADVANCE(555); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 595: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'n') ADVANCE(552); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 596: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'o') ADVANCE(562); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 597: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'o') ADVANCE(592); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 598: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'o') ADVANCE(610); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 599: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'p') ADVANCE(573); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 600: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'p') ADVANCE(553); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 601: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'p') ADVANCE(622); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 602: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'p') ADVANCE(565); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 603: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'r') ADVANCE(624); - if (lookahead == 'y') ADVANCE(602); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 604: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'r') ADVANCE(624); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 605: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'r') ADVANCE(415); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 606: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'r') ADVANCE(625); - if (lookahead == 'y') ADVANCE(602); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 607: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'r') ADVANCE(625); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 608: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'r') ADVANCE(595); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 609: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'r') ADVANCE(619); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 610: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'r') ADVANCE(620); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 611: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 's') ADVANCE(613); - if (lookahead == 'w') ADVANCE(554); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 612: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 's') ADVANCE(395); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 613: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 's') ADVANCE(571); - if (lookahead == 'y') ADVANCE(594); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 614: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 's') ADVANCE(631); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 615: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 's') ADVANCE(566); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 616: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 's') ADVANCE(570); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 617: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 't') ADVANCE(361); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 618: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 't') ADVANCE(289); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 619: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 't') ADVANCE(402); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 620: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 't') ADVANCE(319); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 621: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 't') ADVANCE(558); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 622: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 't') ADVANCE(581); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 623: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'u') ADVANCE(563); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 624: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'u') ADVANCE(564); - if (lookahead == 'y') ADVANCE(388); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 625: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'u') ADVANCE(564); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 626: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'u') ADVANCE(589); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 627: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'w') ADVANCE(580); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 628: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'x') ADVANCE(560); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 629: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'x') ADVANCE(561); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 630: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'y') ADVANCE(409); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 631: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'y') ADVANCE(594); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 632: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'z') ADVANCE(630); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'y')) ADVANCE(633); - END_STATE(); - case 633: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 634: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'a') ADVANCE(637); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 635: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'a') ADVANCE(639); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 636: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'a') ADVANCE(660); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 637: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'b') ADVANCE(646); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 638: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'c') ADVANCE(368); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 639: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'c') ADVANCE(645); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 640: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'c') ADVANCE(644); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 641: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'd') ADVANCE(304); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 642: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'e') ADVANCE(377); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 643: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'e') ADVANCE(358); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 644: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'h') ADVANCE(393); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 645: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'k') ADVANCE(311); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 646: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'l') ADVANCE(643); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 647: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'l') ADVANCE(658); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 648: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'n') ADVANCE(655); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 649: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'n') ADVANCE(638); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 650: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'n') ADVANCE(641); - if (lookahead == 's') ADVANCE(664); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 651: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'n') ADVANCE(661); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 652: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'o') ADVANCE(663); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 653: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'o') ADVANCE(420); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 654: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'o') ADVANCE(424); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 655: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'p') ADVANCE(635); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 656: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 's') ADVANCE(664); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 657: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 's') ADVANCE(397); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 658: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 's') ADVANCE(642); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 659: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 't') ADVANCE(634); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 660: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 't') ADVANCE(640); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 661: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 't') ADVANCE(654); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 662: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'u') ADVANCE(659); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 663: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'w') ADVANCE(651); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 664: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == 'y') ADVANCE(649); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 665: - ACCEPT_TOKEN(aux_sym_value_identifier_token1); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(665); - END_STATE(); - case 666: - ACCEPT_TOKEN(sym__escape_identifier); - END_STATE(); - case 667: - ACCEPT_TOKEN(sym__escape_identifier); - if (lookahead == '`') ADVANCE(767); - END_STATE(); - case 668: - ACCEPT_TOKEN(sym_extension_identifier); - if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(668); - END_STATE(); - case 669: - ACCEPT_TOKEN(anon_sym_SLASH2); - END_STATE(); - case 670: - ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(93); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '[') ADVANCE(105); - if (lookahead == '\\') ADVANCE(263); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(670); - if (lookahead != 0) ADVANCE(671); - END_STATE(); - case 671: - ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(105); - if (lookahead == '\\') ADVANCE(263); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '/') ADVANCE(671); - END_STATE(); - case 672: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(686); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 673: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(701); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 674: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'a') ADVANCE(677); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 675: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'c') ADVANCE(363); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 676: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'c') ADVANCE(683); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 677: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'c') ADVANCE(685); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 678: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'd') ADVANCE(697); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 679: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(750); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 680: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(755); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 681: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'e') ADVANCE(291); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 682: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'f') ADVANCE(370); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 683: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'h') ADVANCE(379); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 684: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'i') ADVANCE(695); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 685: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'k') ADVANCE(306); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 686: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'l') ADVANCE(694); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 687: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'l') ADVANCE(681); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 688: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'n') ADVANCE(691); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 689: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'n') ADVANCE(675); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 690: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'o') ADVANCE(678); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 691: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'p') ADVANCE(674); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 692: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'r') ADVANCE(696); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 693: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 's') ADVANCE(700); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 694: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 's') ADVANCE(680); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 695: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 't') ADVANCE(676); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 696: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'u') ADVANCE(679); - if (lookahead == 'y') ADVANCE(387); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 697: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'u') ADVANCE(687); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 698: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'w') ADVANCE(684); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 699: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'y') ADVANCE(408); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 700: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'y') ADVANCE(689); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 701: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (lookahead == 'z') ADVANCE(699); - if (('a' <= lookahead && lookahead <= 'y')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 702: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '`') ADVANCE(767); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 703: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'a') ADVANCE(706); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(665); - END_STATE(); - case 704: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'a') ADVANCE(725); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 705: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'c') ADVANCE(366); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(665); - END_STATE(); - case 706: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'c') ADVANCE(713); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(665); - END_STATE(); - case 707: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'c') ADVANCE(711); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 708: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'd') ADVANCE(302); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 709: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'e') ADVANCE(718); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 710: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'f') ADVANCE(373); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 711: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'h') ADVANCE(391); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 712: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'h') ADVANCE(709); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 713: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'k') ADVANCE(309); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(665); - END_STATE(); - case 714: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'n') ADVANCE(708); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 715: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'n') ADVANCE(722); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(665); - END_STATE(); - case 716: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'n') ADVANCE(705); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(665); - END_STATE(); - case 717: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'n') ADVANCE(726); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 718: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'n') ADVANCE(383); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 719: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'o') ADVANCE(727); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 720: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'o') ADVANCE(418); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 721: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'o') ADVANCE(422); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 722: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'p') ADVANCE(703); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(665); - END_STATE(); - case 723: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 's') ADVANCE(400); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 724: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 's') ADVANCE(728); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(665); - END_STATE(); - case 725: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 't') ADVANCE(707); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 726: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 't') ADVANCE(721); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 727: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'w') ADVANCE(717); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 728: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'y') ADVANCE(716); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(665); - END_STATE(); - case 729: - ACCEPT_TOKEN(sym_regex_flags); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(729); - END_STATE(); - case 730: - ACCEPT_TOKEN(sym_regex_flags); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(665); - END_STATE(); - case 731: - ACCEPT_TOKEN(sym_number); - END_STATE(); - case 732: - ACCEPT_TOKEN(sym_number); - ADVANCE_MAP( - '.', 743, - '0', 734, - '_', 252, - 'B', 244, - 'b', 244, - 'E', 240, - 'e', 240, - 'O', 248, - 'o', 248, - 'X', 256, - 'x', 256, - 'L', 731, - 'l', 731, - 'n', 731, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - END_STATE(); - case 733: - ACCEPT_TOKEN(sym_number); - ADVANCE_MAP( - '.', 743, - '0', 734, - '_', 252, - 'B', 245, - 'b', 245, - 'E', 240, - 'e', 240, - 'O', 249, - 'o', 249, - 'X', 256, - 'x', 256, - 'L', 731, - 'l', 731, - 'n', 731, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - END_STATE(); - case 734: - ACCEPT_TOKEN(sym_number); - ADVANCE_MAP( - '.', 743, - '0', 734, - '_', 252, - 'E', 240, - 'e', 240, - 'L', 731, - 'l', 731, - 'n', 731, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(735); - END_STATE(); - case 735: - ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(743); - if (lookahead == '_') ADVANCE(250); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(735); - END_STATE(); - case 736: - ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(744); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(742); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(736); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(745); - END_STATE(); - case 737: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(252); - if (lookahead == 'n') ADVANCE(731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(737); - END_STATE(); - case 738: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(244); - if (lookahead == '0' || - lookahead == '1') ADVANCE(738); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(731); - END_STATE(); - case 739: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(248); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(731); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(739); - END_STATE(); - case 740: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(251); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(740); - END_STATE(); - case 741: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(253); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(741); - END_STATE(); - case 742: - ACCEPT_TOKEN(sym_number); - if (lookahead == '+' || - lookahead == '-') ADVANCE(254); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(746); - END_STATE(); - case 743: - ACCEPT_TOKEN(sym_number); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(740); - END_STATE(); - case 744: - ACCEPT_TOKEN(sym_number); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(742); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(744); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(745); - END_STATE(); - case 745: - ACCEPT_TOKEN(sym_number); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(731); - END_STATE(); - case 746: - ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(746); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(745); - END_STATE(); - case 747: - ACCEPT_TOKEN(sym_unit_type); - END_STATE(); - case 748: - ACCEPT_TOKEN(sym_unit_type); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 749: - ACCEPT_TOKEN(sym_true); - END_STATE(); - case 750: - ACCEPT_TOKEN(sym_true); - if (lookahead == '`') ADVANCE(767); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 751: - ACCEPT_TOKEN(sym_true); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 752: - ACCEPT_TOKEN(sym_true); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 753: - ACCEPT_TOKEN(sym_true); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(120); - END_STATE(); - case 754: - ACCEPT_TOKEN(sym_false); - END_STATE(); - case 755: - ACCEPT_TOKEN(sym_false); - if (lookahead == '`') ADVANCE(767); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(633); - END_STATE(); - case 756: - ACCEPT_TOKEN(sym_false); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(633); - END_STATE(); - case 757: - ACCEPT_TOKEN(sym_false); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(490); - END_STATE(); - case 758: - ACCEPT_TOKEN(sym_false); - if (lookahead == '`') ADVANCE(767); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(120); - END_STATE(); - case 759: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 760: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '\n') ADVANCE(763); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(760); - END_STATE(); - case 761: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(762); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(761); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(763); - END_STATE(); - case 762: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(760); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(763); - END_STATE(); - case 763: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(763); - END_STATE(); - case 764: - ACCEPT_TOKEN(sym_escape_sequence); - END_STATE(); - case 765: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(764); - END_STATE(); - case 766: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(765); - END_STATE(); - case 767: - ACCEPT_TOKEN(aux_sym_template_string_token1); - END_STATE(); - case 768: - ACCEPT_TOKEN(anon_sym_BQUOTE); - END_STATE(); - case 769: - ACCEPT_TOKEN(aux_sym_template_string_content_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(769); - END_STATE(); - case 770: - ACCEPT_TOKEN(anon_sym_BSLASH_BQUOTE); - END_STATE(); - case 771: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') ADVANCE(772); - END_STATE(); - case 772: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); - END_STATE(); - case 773: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 774: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(547); - END_STATE(); - case 775: - ACCEPT_TOKEN(aux_sym_character_token1); - END_STATE(); - case 776: - ACCEPT_TOKEN(aux_sym_character_token1); - if (lookahead == '/') ADVANCE(271); - END_STATE(); - case 777: - ACCEPT_TOKEN(aux_sym_character_token1); - if (lookahead == '/') ADVANCE(776); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(777); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(775); + case 138: + ACCEPT_TOKEN(anon_sym_constraint); END_STATE(); default: return false; @@ -14915,5106 +9723,4883 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 268, .external_lex_state = 2}, - [2] = {.lex_state = 268, .external_lex_state = 2}, - [3] = {.lex_state = 268, .external_lex_state = 2}, - [4] = {.lex_state = 268, .external_lex_state = 2}, - [5] = {.lex_state = 268, .external_lex_state = 2}, - [6] = {.lex_state = 268, .external_lex_state = 2}, - [7] = {.lex_state = 268, .external_lex_state = 2}, - [8] = {.lex_state = 268, .external_lex_state = 2}, - [9] = {.lex_state = 268, .external_lex_state = 2}, - [10] = {.lex_state = 268, .external_lex_state = 2}, - [11] = {.lex_state = 2, .external_lex_state = 2}, - [12] = {.lex_state = 2, .external_lex_state = 2}, - [13] = {.lex_state = 2, .external_lex_state = 2}, - [14] = {.lex_state = 2, .external_lex_state = 2}, - [15] = {.lex_state = 2, .external_lex_state = 2}, - [16] = {.lex_state = 2, .external_lex_state = 2}, - [17] = {.lex_state = 2, .external_lex_state = 2}, - [18] = {.lex_state = 2, .external_lex_state = 2}, - [19] = {.lex_state = 2, .external_lex_state = 2}, - [20] = {.lex_state = 2, .external_lex_state = 2}, - [21] = {.lex_state = 2, .external_lex_state = 2}, - [22] = {.lex_state = 2, .external_lex_state = 2}, - [23] = {.lex_state = 2, .external_lex_state = 2}, - [24] = {.lex_state = 2, .external_lex_state = 2}, - [25] = {.lex_state = 2, .external_lex_state = 2}, - [26] = {.lex_state = 2, .external_lex_state = 2}, - [27] = {.lex_state = 2, .external_lex_state = 2}, - [28] = {.lex_state = 2, .external_lex_state = 2}, - [29] = {.lex_state = 3, .external_lex_state = 2}, - [30] = {.lex_state = 3, .external_lex_state = 2}, - [31] = {.lex_state = 268, .external_lex_state = 2}, - [32] = {.lex_state = 268, .external_lex_state = 2}, - [33] = {.lex_state = 268, .external_lex_state = 2}, - [34] = {.lex_state = 268, .external_lex_state = 2}, - [35] = {.lex_state = 268, .external_lex_state = 2}, - [36] = {.lex_state = 268, .external_lex_state = 2}, - [37] = {.lex_state = 268, .external_lex_state = 2}, - [38] = {.lex_state = 268, .external_lex_state = 2}, - [39] = {.lex_state = 268, .external_lex_state = 2}, - [40] = {.lex_state = 268, .external_lex_state = 2}, - [41] = {.lex_state = 268, .external_lex_state = 2}, - [42] = {.lex_state = 268, .external_lex_state = 2}, - [43] = {.lex_state = 268, .external_lex_state = 2}, - [44] = {.lex_state = 268, .external_lex_state = 2}, - [45] = {.lex_state = 268, .external_lex_state = 2}, - [46] = {.lex_state = 268, .external_lex_state = 2}, - [47] = {.lex_state = 268, .external_lex_state = 2}, - [48] = {.lex_state = 268, .external_lex_state = 2}, - [49] = {.lex_state = 268, .external_lex_state = 2}, - [50] = {.lex_state = 268, .external_lex_state = 2}, - [51] = {.lex_state = 3, .external_lex_state = 2}, - [52] = {.lex_state = 268, .external_lex_state = 2}, - [53] = {.lex_state = 268, .external_lex_state = 2}, - [54] = {.lex_state = 3, .external_lex_state = 2}, - [55] = {.lex_state = 3, .external_lex_state = 2}, - [56] = {.lex_state = 3, .external_lex_state = 2}, - [57] = {.lex_state = 4, .external_lex_state = 2}, - [58] = {.lex_state = 4, .external_lex_state = 2}, - [59] = {.lex_state = 4, .external_lex_state = 2}, - [60] = {.lex_state = 4, .external_lex_state = 2}, - [61] = {.lex_state = 4, .external_lex_state = 2}, - [62] = {.lex_state = 4, .external_lex_state = 2}, - [63] = {.lex_state = 4, .external_lex_state = 2}, - [64] = {.lex_state = 4, .external_lex_state = 2}, - [65] = {.lex_state = 4, .external_lex_state = 2}, - [66] = {.lex_state = 4, .external_lex_state = 2}, - [67] = {.lex_state = 4, .external_lex_state = 2}, - [68] = {.lex_state = 4, .external_lex_state = 2}, - [69] = {.lex_state = 4, .external_lex_state = 2}, - [70] = {.lex_state = 4, .external_lex_state = 2}, - [71] = {.lex_state = 4, .external_lex_state = 2}, - [72] = {.lex_state = 4, .external_lex_state = 2}, - [73] = {.lex_state = 4, .external_lex_state = 2}, - [74] = {.lex_state = 4, .external_lex_state = 2}, - [75] = {.lex_state = 4, .external_lex_state = 2}, - [76] = {.lex_state = 4, .external_lex_state = 2}, - [77] = {.lex_state = 4, .external_lex_state = 2}, - [78] = {.lex_state = 4, .external_lex_state = 2}, - [79] = {.lex_state = 4, .external_lex_state = 2}, - [80] = {.lex_state = 4, .external_lex_state = 2}, - [81] = {.lex_state = 4, .external_lex_state = 2}, - [82] = {.lex_state = 4, .external_lex_state = 2}, - [83] = {.lex_state = 4, .external_lex_state = 2}, - [84] = {.lex_state = 4, .external_lex_state = 2}, - [85] = {.lex_state = 4, .external_lex_state = 2}, - [86] = {.lex_state = 4, .external_lex_state = 2}, - [87] = {.lex_state = 4, .external_lex_state = 2}, - [88] = {.lex_state = 4, .external_lex_state = 2}, - [89] = {.lex_state = 4, .external_lex_state = 2}, - [90] = {.lex_state = 4, .external_lex_state = 2}, - [91] = {.lex_state = 4, .external_lex_state = 2}, - [92] = {.lex_state = 4, .external_lex_state = 2}, - [93] = {.lex_state = 4, .external_lex_state = 2}, - [94] = {.lex_state = 4, .external_lex_state = 2}, - [95] = {.lex_state = 4, .external_lex_state = 2}, - [96] = {.lex_state = 4, .external_lex_state = 2}, - [97] = {.lex_state = 4, .external_lex_state = 2}, - [98] = {.lex_state = 4, .external_lex_state = 2}, - [99] = {.lex_state = 4, .external_lex_state = 2}, - [100] = {.lex_state = 4, .external_lex_state = 2}, - [101] = {.lex_state = 4, .external_lex_state = 2}, - [102] = {.lex_state = 4, .external_lex_state = 2}, - [103] = {.lex_state = 4, .external_lex_state = 2}, - [104] = {.lex_state = 4, .external_lex_state = 2}, - [105] = {.lex_state = 4, .external_lex_state = 2}, - [106] = {.lex_state = 4, .external_lex_state = 2}, - [107] = {.lex_state = 4, .external_lex_state = 2}, - [108] = {.lex_state = 4, .external_lex_state = 2}, - [109] = {.lex_state = 4, .external_lex_state = 2}, - [110] = {.lex_state = 4, .external_lex_state = 2}, - [111] = {.lex_state = 4, .external_lex_state = 2}, - [112] = {.lex_state = 4, .external_lex_state = 2}, - [113] = {.lex_state = 4, .external_lex_state = 2}, - [114] = {.lex_state = 4, .external_lex_state = 2}, - [115] = {.lex_state = 4, .external_lex_state = 2}, - [116] = {.lex_state = 4, .external_lex_state = 2}, - [117] = {.lex_state = 4, .external_lex_state = 2}, - [118] = {.lex_state = 4, .external_lex_state = 2}, - [119] = {.lex_state = 4, .external_lex_state = 2}, - [120] = {.lex_state = 4, .external_lex_state = 2}, - [121] = {.lex_state = 4, .external_lex_state = 2}, - [122] = {.lex_state = 4, .external_lex_state = 2}, - [123] = {.lex_state = 4, .external_lex_state = 2}, - [124] = {.lex_state = 4, .external_lex_state = 2}, - [125] = {.lex_state = 4, .external_lex_state = 2}, - [126] = {.lex_state = 4, .external_lex_state = 2}, - [127] = {.lex_state = 4, .external_lex_state = 2}, - [128] = {.lex_state = 4, .external_lex_state = 2}, - [129] = {.lex_state = 4, .external_lex_state = 2}, - [130] = {.lex_state = 4, .external_lex_state = 2}, - [131] = {.lex_state = 4, .external_lex_state = 2}, - [132] = {.lex_state = 4, .external_lex_state = 2}, - [133] = {.lex_state = 4, .external_lex_state = 2}, - [134] = {.lex_state = 4, .external_lex_state = 2}, - [135] = {.lex_state = 4, .external_lex_state = 2}, - [136] = {.lex_state = 4, .external_lex_state = 2}, - [137] = {.lex_state = 4, .external_lex_state = 2}, - [138] = {.lex_state = 4, .external_lex_state = 2}, - [139] = {.lex_state = 4, .external_lex_state = 2}, - [140] = {.lex_state = 4, .external_lex_state = 2}, - [141] = {.lex_state = 4, .external_lex_state = 2}, - [142] = {.lex_state = 4, .external_lex_state = 2}, - [143] = {.lex_state = 4, .external_lex_state = 2}, - [144] = {.lex_state = 4, .external_lex_state = 2}, - [145] = {.lex_state = 4, .external_lex_state = 2}, - [146] = {.lex_state = 4, .external_lex_state = 2}, - [147] = {.lex_state = 4, .external_lex_state = 2}, - [148] = {.lex_state = 4, .external_lex_state = 2}, - [149] = {.lex_state = 4, .external_lex_state = 2}, - [150] = {.lex_state = 4, .external_lex_state = 2}, - [151] = {.lex_state = 4, .external_lex_state = 2}, - [152] = {.lex_state = 4, .external_lex_state = 2}, - [153] = {.lex_state = 4, .external_lex_state = 2}, - [154] = {.lex_state = 4, .external_lex_state = 2}, - [155] = {.lex_state = 4, .external_lex_state = 2}, - [156] = {.lex_state = 4, .external_lex_state = 2}, - [157] = {.lex_state = 4, .external_lex_state = 2}, - [158] = {.lex_state = 4, .external_lex_state = 2}, - [159] = {.lex_state = 4, .external_lex_state = 2}, - [160] = {.lex_state = 4, .external_lex_state = 2}, - [161] = {.lex_state = 4, .external_lex_state = 2}, - [162] = {.lex_state = 4, .external_lex_state = 2}, - [163] = {.lex_state = 4, .external_lex_state = 2}, - [164] = {.lex_state = 4, .external_lex_state = 2}, - [165] = {.lex_state = 4, .external_lex_state = 2}, - [166] = {.lex_state = 4, .external_lex_state = 2}, - [167] = {.lex_state = 4, .external_lex_state = 2}, - [168] = {.lex_state = 4, .external_lex_state = 2}, - [169] = {.lex_state = 4, .external_lex_state = 2}, - [170] = {.lex_state = 4, .external_lex_state = 2}, - [171] = {.lex_state = 4, .external_lex_state = 2}, - [172] = {.lex_state = 4, .external_lex_state = 2}, - [173] = {.lex_state = 4, .external_lex_state = 2}, - [174] = {.lex_state = 4, .external_lex_state = 2}, - [175] = {.lex_state = 4, .external_lex_state = 2}, - [176] = {.lex_state = 4, .external_lex_state = 2}, - [177] = {.lex_state = 4, .external_lex_state = 2}, - [178] = {.lex_state = 4, .external_lex_state = 2}, - [179] = {.lex_state = 4, .external_lex_state = 2}, - [180] = {.lex_state = 4, .external_lex_state = 2}, - [181] = {.lex_state = 4, .external_lex_state = 2}, - [182] = {.lex_state = 4, .external_lex_state = 2}, - [183] = {.lex_state = 4, .external_lex_state = 2}, - [184] = {.lex_state = 4, .external_lex_state = 2}, - [185] = {.lex_state = 4, .external_lex_state = 2}, - [186] = {.lex_state = 4, .external_lex_state = 2}, - [187] = {.lex_state = 4, .external_lex_state = 2}, - [188] = {.lex_state = 4, .external_lex_state = 2}, - [189] = {.lex_state = 4, .external_lex_state = 2}, - [190] = {.lex_state = 4, .external_lex_state = 2}, - [191] = {.lex_state = 4, .external_lex_state = 2}, - [192] = {.lex_state = 4, .external_lex_state = 2}, - [193] = {.lex_state = 4, .external_lex_state = 2}, - [194] = {.lex_state = 4, .external_lex_state = 2}, - [195] = {.lex_state = 4, .external_lex_state = 2}, - [196] = {.lex_state = 4, .external_lex_state = 2}, - [197] = {.lex_state = 4, .external_lex_state = 2}, - [198] = {.lex_state = 4, .external_lex_state = 2}, - [199] = {.lex_state = 4, .external_lex_state = 2}, - [200] = {.lex_state = 4, .external_lex_state = 2}, - [201] = {.lex_state = 4, .external_lex_state = 2}, - [202] = {.lex_state = 4, .external_lex_state = 2}, - [203] = {.lex_state = 4, .external_lex_state = 2}, - [204] = {.lex_state = 4, .external_lex_state = 2}, - [205] = {.lex_state = 4, .external_lex_state = 2}, - [206] = {.lex_state = 4, .external_lex_state = 2}, - [207] = {.lex_state = 4, .external_lex_state = 2}, - [208] = {.lex_state = 4, .external_lex_state = 2}, - [209] = {.lex_state = 4, .external_lex_state = 2}, - [210] = {.lex_state = 4, .external_lex_state = 2}, - [211] = {.lex_state = 4, .external_lex_state = 2}, - [212] = {.lex_state = 4, .external_lex_state = 2}, - [213] = {.lex_state = 4, .external_lex_state = 2}, - [214] = {.lex_state = 4, .external_lex_state = 2}, - [215] = {.lex_state = 4, .external_lex_state = 2}, - [216] = {.lex_state = 4, .external_lex_state = 2}, - [217] = {.lex_state = 4, .external_lex_state = 2}, - [218] = {.lex_state = 4, .external_lex_state = 2}, - [219] = {.lex_state = 4, .external_lex_state = 2}, - [220] = {.lex_state = 4, .external_lex_state = 2}, - [221] = {.lex_state = 4, .external_lex_state = 2}, - [222] = {.lex_state = 4, .external_lex_state = 2}, - [223] = {.lex_state = 4, .external_lex_state = 2}, - [224] = {.lex_state = 4, .external_lex_state = 2}, - [225] = {.lex_state = 4, .external_lex_state = 2}, - [226] = {.lex_state = 4, .external_lex_state = 2}, - [227] = {.lex_state = 4, .external_lex_state = 2}, - [228] = {.lex_state = 4, .external_lex_state = 2}, - [229] = {.lex_state = 4, .external_lex_state = 2}, - [230] = {.lex_state = 4, .external_lex_state = 2}, - [231] = {.lex_state = 4, .external_lex_state = 2}, - [232] = {.lex_state = 4, .external_lex_state = 2}, - [233] = {.lex_state = 4, .external_lex_state = 2}, - [234] = {.lex_state = 4, .external_lex_state = 2}, - [235] = {.lex_state = 4, .external_lex_state = 2}, - [236] = {.lex_state = 4, .external_lex_state = 2}, - [237] = {.lex_state = 4, .external_lex_state = 2}, - [238] = {.lex_state = 4, .external_lex_state = 2}, - [239] = {.lex_state = 4, .external_lex_state = 2}, - [240] = {.lex_state = 4, .external_lex_state = 2}, - [241] = {.lex_state = 4, .external_lex_state = 2}, - [242] = {.lex_state = 4, .external_lex_state = 2}, - [243] = {.lex_state = 4, .external_lex_state = 2}, - [244] = {.lex_state = 4, .external_lex_state = 2}, - [245] = {.lex_state = 4, .external_lex_state = 2}, - [246] = {.lex_state = 4, .external_lex_state = 2}, - [247] = {.lex_state = 4, .external_lex_state = 2}, - [248] = {.lex_state = 4, .external_lex_state = 2}, - [249] = {.lex_state = 4, .external_lex_state = 2}, - [250] = {.lex_state = 4, .external_lex_state = 2}, - [251] = {.lex_state = 4, .external_lex_state = 2}, - [252] = {.lex_state = 4, .external_lex_state = 2}, - [253] = {.lex_state = 4, .external_lex_state = 2}, - [254] = {.lex_state = 4, .external_lex_state = 2}, - [255] = {.lex_state = 4, .external_lex_state = 2}, - [256] = {.lex_state = 4, .external_lex_state = 2}, - [257] = {.lex_state = 4, .external_lex_state = 2}, - [258] = {.lex_state = 4, .external_lex_state = 2}, - [259] = {.lex_state = 4, .external_lex_state = 2}, - [260] = {.lex_state = 4, .external_lex_state = 2}, - [261] = {.lex_state = 4, .external_lex_state = 2}, - [262] = {.lex_state = 4, .external_lex_state = 2}, - [263] = {.lex_state = 4, .external_lex_state = 2}, - [264] = {.lex_state = 4, .external_lex_state = 2}, - [265] = {.lex_state = 4, .external_lex_state = 2}, - [266] = {.lex_state = 4, .external_lex_state = 2}, - [267] = {.lex_state = 4, .external_lex_state = 2}, - [268] = {.lex_state = 4, .external_lex_state = 2}, - [269] = {.lex_state = 4, .external_lex_state = 2}, - [270] = {.lex_state = 4, .external_lex_state = 2}, - [271] = {.lex_state = 4, .external_lex_state = 2}, - [272] = {.lex_state = 4, .external_lex_state = 2}, - [273] = {.lex_state = 4, .external_lex_state = 2}, - [274] = {.lex_state = 4, .external_lex_state = 2}, - [275] = {.lex_state = 4, .external_lex_state = 2}, - [276] = {.lex_state = 4, .external_lex_state = 2}, - [277] = {.lex_state = 4, .external_lex_state = 2}, - [278] = {.lex_state = 4, .external_lex_state = 2}, - [279] = {.lex_state = 4, .external_lex_state = 2}, - [280] = {.lex_state = 4, .external_lex_state = 2}, - [281] = {.lex_state = 4, .external_lex_state = 2}, - [282] = {.lex_state = 4, .external_lex_state = 2}, - [283] = {.lex_state = 4, .external_lex_state = 2}, - [284] = {.lex_state = 4, .external_lex_state = 2}, - [285] = {.lex_state = 4, .external_lex_state = 2}, - [286] = {.lex_state = 4, .external_lex_state = 2}, - [287] = {.lex_state = 4, .external_lex_state = 2}, - [288] = {.lex_state = 4, .external_lex_state = 2}, - [289] = {.lex_state = 4, .external_lex_state = 2}, - [290] = {.lex_state = 4, .external_lex_state = 2}, - [291] = {.lex_state = 4, .external_lex_state = 2}, - [292] = {.lex_state = 4, .external_lex_state = 2}, - [293] = {.lex_state = 4, .external_lex_state = 2}, - [294] = {.lex_state = 4, .external_lex_state = 2}, - [295] = {.lex_state = 4, .external_lex_state = 2}, - [296] = {.lex_state = 4, .external_lex_state = 2}, - [297] = {.lex_state = 4, .external_lex_state = 2}, - [298] = {.lex_state = 4, .external_lex_state = 2}, - [299] = {.lex_state = 4, .external_lex_state = 2}, - [300] = {.lex_state = 4, .external_lex_state = 2}, - [301] = {.lex_state = 4, .external_lex_state = 2}, - [302] = {.lex_state = 4, .external_lex_state = 2}, - [303] = {.lex_state = 4, .external_lex_state = 2}, - [304] = {.lex_state = 4, .external_lex_state = 2}, - [305] = {.lex_state = 4, .external_lex_state = 2}, - [306] = {.lex_state = 4, .external_lex_state = 2}, - [307] = {.lex_state = 4, .external_lex_state = 2}, - [308] = {.lex_state = 4, .external_lex_state = 2}, - [309] = {.lex_state = 4, .external_lex_state = 2}, - [310] = {.lex_state = 4, .external_lex_state = 2}, - [311] = {.lex_state = 4, .external_lex_state = 2}, - [312] = {.lex_state = 4, .external_lex_state = 2}, - [313] = {.lex_state = 4, .external_lex_state = 2}, - [314] = {.lex_state = 4, .external_lex_state = 2}, - [315] = {.lex_state = 4, .external_lex_state = 2}, - [316] = {.lex_state = 4, .external_lex_state = 2}, - [317] = {.lex_state = 4, .external_lex_state = 2}, - [318] = {.lex_state = 4, .external_lex_state = 2}, - [319] = {.lex_state = 4, .external_lex_state = 2}, - [320] = {.lex_state = 4, .external_lex_state = 2}, - [321] = {.lex_state = 4, .external_lex_state = 2}, - [322] = {.lex_state = 4, .external_lex_state = 2}, - [323] = {.lex_state = 4, .external_lex_state = 2}, - [324] = {.lex_state = 4, .external_lex_state = 2}, - [325] = {.lex_state = 4, .external_lex_state = 2}, - [326] = {.lex_state = 4, .external_lex_state = 2}, - [327] = {.lex_state = 4, .external_lex_state = 2}, - [328] = {.lex_state = 4, .external_lex_state = 2}, - [329] = {.lex_state = 4, .external_lex_state = 2}, - [330] = {.lex_state = 4, .external_lex_state = 2}, - [331] = {.lex_state = 4, .external_lex_state = 2}, - [332] = {.lex_state = 4, .external_lex_state = 2}, - [333] = {.lex_state = 4, .external_lex_state = 2}, - [334] = {.lex_state = 4, .external_lex_state = 2}, - [335] = {.lex_state = 4, .external_lex_state = 2}, - [336] = {.lex_state = 4, .external_lex_state = 2}, - [337] = {.lex_state = 4, .external_lex_state = 2}, - [338] = {.lex_state = 4, .external_lex_state = 2}, - [339] = {.lex_state = 4, .external_lex_state = 2}, - [340] = {.lex_state = 4, .external_lex_state = 2}, - [341] = {.lex_state = 4, .external_lex_state = 2}, - [342] = {.lex_state = 4, .external_lex_state = 2}, - [343] = {.lex_state = 4, .external_lex_state = 2}, - [344] = {.lex_state = 4, .external_lex_state = 2}, - [345] = {.lex_state = 4, .external_lex_state = 2}, - [346] = {.lex_state = 4, .external_lex_state = 2}, - [347] = {.lex_state = 4, .external_lex_state = 2}, - [348] = {.lex_state = 4, .external_lex_state = 2}, - [349] = {.lex_state = 4, .external_lex_state = 2}, - [350] = {.lex_state = 4, .external_lex_state = 2}, - [351] = {.lex_state = 4, .external_lex_state = 2}, - [352] = {.lex_state = 4, .external_lex_state = 2}, - [353] = {.lex_state = 4, .external_lex_state = 2}, - [354] = {.lex_state = 4, .external_lex_state = 2}, - [355] = {.lex_state = 4, .external_lex_state = 2}, - [356] = {.lex_state = 4, .external_lex_state = 2}, - [357] = {.lex_state = 4, .external_lex_state = 2}, - [358] = {.lex_state = 4, .external_lex_state = 2}, - [359] = {.lex_state = 4, .external_lex_state = 2}, - [360] = {.lex_state = 4, .external_lex_state = 2}, - [361] = {.lex_state = 4, .external_lex_state = 2}, - [362] = {.lex_state = 4, .external_lex_state = 2}, - [363] = {.lex_state = 4, .external_lex_state = 2}, - [364] = {.lex_state = 4, .external_lex_state = 2}, - [365] = {.lex_state = 4, .external_lex_state = 2}, - [366] = {.lex_state = 4, .external_lex_state = 2}, - [367] = {.lex_state = 4, .external_lex_state = 2}, - [368] = {.lex_state = 4, .external_lex_state = 2}, - [369] = {.lex_state = 4, .external_lex_state = 2}, - [370] = {.lex_state = 4, .external_lex_state = 2}, - [371] = {.lex_state = 4, .external_lex_state = 2}, - [372] = {.lex_state = 4, .external_lex_state = 2}, - [373] = {.lex_state = 4, .external_lex_state = 2}, - [374] = {.lex_state = 4, .external_lex_state = 2}, - [375] = {.lex_state = 4, .external_lex_state = 2}, - [376] = {.lex_state = 4, .external_lex_state = 2}, - [377] = {.lex_state = 4, .external_lex_state = 2}, - [378] = {.lex_state = 4, .external_lex_state = 2}, - [379] = {.lex_state = 4, .external_lex_state = 2}, - [380] = {.lex_state = 4, .external_lex_state = 2}, - [381] = {.lex_state = 4, .external_lex_state = 2}, - [382] = {.lex_state = 4, .external_lex_state = 2}, - [383] = {.lex_state = 4, .external_lex_state = 2}, - [384] = {.lex_state = 4, .external_lex_state = 2}, - [385] = {.lex_state = 4, .external_lex_state = 2}, - [386] = {.lex_state = 4, .external_lex_state = 2}, - [387] = {.lex_state = 4, .external_lex_state = 2}, - [388] = {.lex_state = 4, .external_lex_state = 2}, - [389] = {.lex_state = 4, .external_lex_state = 2}, - [390] = {.lex_state = 4, .external_lex_state = 2}, - [391] = {.lex_state = 4, .external_lex_state = 2}, - [392] = {.lex_state = 4, .external_lex_state = 2}, - [393] = {.lex_state = 4, .external_lex_state = 2}, - [394] = {.lex_state = 4, .external_lex_state = 2}, - [395] = {.lex_state = 4, .external_lex_state = 2}, - [396] = {.lex_state = 4, .external_lex_state = 2}, - [397] = {.lex_state = 4, .external_lex_state = 2}, - [398] = {.lex_state = 4, .external_lex_state = 2}, - [399] = {.lex_state = 4, .external_lex_state = 2}, - [400] = {.lex_state = 4, .external_lex_state = 2}, - [401] = {.lex_state = 4, .external_lex_state = 2}, - [402] = {.lex_state = 4, .external_lex_state = 2}, - [403] = {.lex_state = 4, .external_lex_state = 2}, - [404] = {.lex_state = 4, .external_lex_state = 2}, - [405] = {.lex_state = 4, .external_lex_state = 2}, - [406] = {.lex_state = 4, .external_lex_state = 2}, - [407] = {.lex_state = 4, .external_lex_state = 2}, - [408] = {.lex_state = 4, .external_lex_state = 2}, - [409] = {.lex_state = 4, .external_lex_state = 2}, - [410] = {.lex_state = 4, .external_lex_state = 2}, - [411] = {.lex_state = 4, .external_lex_state = 2}, - [412] = {.lex_state = 4, .external_lex_state = 2}, - [413] = {.lex_state = 4, .external_lex_state = 2}, - [414] = {.lex_state = 4, .external_lex_state = 2}, - [415] = {.lex_state = 4, .external_lex_state = 2}, - [416] = {.lex_state = 4, .external_lex_state = 2}, - [417] = {.lex_state = 4, .external_lex_state = 2}, - [418] = {.lex_state = 4, .external_lex_state = 2}, - [419] = {.lex_state = 4, .external_lex_state = 2}, - [420] = {.lex_state = 4, .external_lex_state = 2}, - [421] = {.lex_state = 4, .external_lex_state = 2}, - [422] = {.lex_state = 4, .external_lex_state = 2}, - [423] = {.lex_state = 4, .external_lex_state = 2}, - [424] = {.lex_state = 4, .external_lex_state = 2}, - [425] = {.lex_state = 4, .external_lex_state = 2}, - [426] = {.lex_state = 4, .external_lex_state = 2}, - [427] = {.lex_state = 4, .external_lex_state = 2}, - [428] = {.lex_state = 4, .external_lex_state = 2}, - [429] = {.lex_state = 4, .external_lex_state = 2}, - [430] = {.lex_state = 4, .external_lex_state = 2}, - [431] = {.lex_state = 4, .external_lex_state = 2}, - [432] = {.lex_state = 4, .external_lex_state = 2}, - [433] = {.lex_state = 4, .external_lex_state = 2}, - [434] = {.lex_state = 4, .external_lex_state = 2}, - [435] = {.lex_state = 4, .external_lex_state = 2}, - [436] = {.lex_state = 4, .external_lex_state = 2}, - [437] = {.lex_state = 4, .external_lex_state = 2}, - [438] = {.lex_state = 4, .external_lex_state = 2}, - [439] = {.lex_state = 4, .external_lex_state = 2}, - [440] = {.lex_state = 4, .external_lex_state = 2}, - [441] = {.lex_state = 4, .external_lex_state = 2}, - [442] = {.lex_state = 4, .external_lex_state = 2}, - [443] = {.lex_state = 4, .external_lex_state = 2}, - [444] = {.lex_state = 4, .external_lex_state = 2}, - [445] = {.lex_state = 4, .external_lex_state = 2}, - [446] = {.lex_state = 4, .external_lex_state = 2}, - [447] = {.lex_state = 4, .external_lex_state = 2}, - [448] = {.lex_state = 4, .external_lex_state = 2}, - [449] = {.lex_state = 4, .external_lex_state = 2}, - [450] = {.lex_state = 4, .external_lex_state = 2}, - [451] = {.lex_state = 4, .external_lex_state = 2}, - [452] = {.lex_state = 4, .external_lex_state = 2}, - [453] = {.lex_state = 4, .external_lex_state = 2}, - [454] = {.lex_state = 4, .external_lex_state = 2}, - [455] = {.lex_state = 4, .external_lex_state = 2}, - [456] = {.lex_state = 4, .external_lex_state = 2}, - [457] = {.lex_state = 4, .external_lex_state = 2}, - [458] = {.lex_state = 4, .external_lex_state = 2}, - [459] = {.lex_state = 4, .external_lex_state = 2}, - [460] = {.lex_state = 4, .external_lex_state = 2}, - [461] = {.lex_state = 4, .external_lex_state = 2}, - [462] = {.lex_state = 4, .external_lex_state = 2}, - [463] = {.lex_state = 4, .external_lex_state = 2}, - [464] = {.lex_state = 4, .external_lex_state = 2}, - [465] = {.lex_state = 4, .external_lex_state = 2}, - [466] = {.lex_state = 4, .external_lex_state = 2}, - [467] = {.lex_state = 4, .external_lex_state = 2}, - [468] = {.lex_state = 4, .external_lex_state = 2}, - [469] = {.lex_state = 4, .external_lex_state = 2}, - [470] = {.lex_state = 4, .external_lex_state = 2}, - [471] = {.lex_state = 4, .external_lex_state = 2}, - [472] = {.lex_state = 4, .external_lex_state = 2}, - [473] = {.lex_state = 4, .external_lex_state = 2}, - [474] = {.lex_state = 4, .external_lex_state = 2}, - [475] = {.lex_state = 4, .external_lex_state = 2}, - [476] = {.lex_state = 4, .external_lex_state = 2}, - [477] = {.lex_state = 4, .external_lex_state = 2}, - [478] = {.lex_state = 4, .external_lex_state = 2}, - [479] = {.lex_state = 4, .external_lex_state = 2}, - [480] = {.lex_state = 4, .external_lex_state = 2}, - [481] = {.lex_state = 4, .external_lex_state = 2}, - [482] = {.lex_state = 4, .external_lex_state = 2}, - [483] = {.lex_state = 4, .external_lex_state = 2}, - [484] = {.lex_state = 4, .external_lex_state = 2}, - [485] = {.lex_state = 4, .external_lex_state = 2}, - [486] = {.lex_state = 4, .external_lex_state = 2}, - [487] = {.lex_state = 4, .external_lex_state = 2}, - [488] = {.lex_state = 4, .external_lex_state = 2}, - [489] = {.lex_state = 4, .external_lex_state = 2}, - [490] = {.lex_state = 4, .external_lex_state = 2}, - [491] = {.lex_state = 4, .external_lex_state = 2}, - [492] = {.lex_state = 4, .external_lex_state = 2}, - [493] = {.lex_state = 4, .external_lex_state = 2}, - [494] = {.lex_state = 4, .external_lex_state = 2}, - [495] = {.lex_state = 4, .external_lex_state = 2}, - [496] = {.lex_state = 4, .external_lex_state = 2}, - [497] = {.lex_state = 4, .external_lex_state = 2}, - [498] = {.lex_state = 4, .external_lex_state = 2}, - [499] = {.lex_state = 4, .external_lex_state = 2}, - [500] = {.lex_state = 4, .external_lex_state = 2}, - [501] = {.lex_state = 4, .external_lex_state = 2}, - [502] = {.lex_state = 4, .external_lex_state = 2}, - [503] = {.lex_state = 4, .external_lex_state = 2}, - [504] = {.lex_state = 4, .external_lex_state = 2}, - [505] = {.lex_state = 4, .external_lex_state = 2}, - [506] = {.lex_state = 4, .external_lex_state = 2}, - [507] = {.lex_state = 4, .external_lex_state = 2}, - [508] = {.lex_state = 4, .external_lex_state = 2}, - [509] = {.lex_state = 4, .external_lex_state = 2}, - [510] = {.lex_state = 4, .external_lex_state = 2}, - [511] = {.lex_state = 4, .external_lex_state = 2}, - [512] = {.lex_state = 4, .external_lex_state = 2}, - [513] = {.lex_state = 4, .external_lex_state = 2}, - [514] = {.lex_state = 4, .external_lex_state = 2}, - [515] = {.lex_state = 4, .external_lex_state = 2}, - [516] = {.lex_state = 4, .external_lex_state = 2}, - [517] = {.lex_state = 4, .external_lex_state = 2}, - [518] = {.lex_state = 4, .external_lex_state = 2}, - [519] = {.lex_state = 4, .external_lex_state = 2}, - [520] = {.lex_state = 4, .external_lex_state = 2}, - [521] = {.lex_state = 4, .external_lex_state = 2}, - [522] = {.lex_state = 4, .external_lex_state = 2}, - [523] = {.lex_state = 4, .external_lex_state = 2}, - [524] = {.lex_state = 4, .external_lex_state = 2}, - [525] = {.lex_state = 4, .external_lex_state = 2}, - [526] = {.lex_state = 4, .external_lex_state = 2}, - [527] = {.lex_state = 4, .external_lex_state = 2}, - [528] = {.lex_state = 4, .external_lex_state = 2}, - [529] = {.lex_state = 4, .external_lex_state = 2}, - [530] = {.lex_state = 4, .external_lex_state = 2}, - [531] = {.lex_state = 4, .external_lex_state = 2}, - [532] = {.lex_state = 4, .external_lex_state = 2}, - [533] = {.lex_state = 4, .external_lex_state = 2}, - [534] = {.lex_state = 4, .external_lex_state = 2}, - [535] = {.lex_state = 4, .external_lex_state = 2}, - [536] = {.lex_state = 4, .external_lex_state = 2}, - [537] = {.lex_state = 4, .external_lex_state = 2}, - [538] = {.lex_state = 4, .external_lex_state = 2}, - [539] = {.lex_state = 4, .external_lex_state = 2}, - [540] = {.lex_state = 4, .external_lex_state = 2}, - [541] = {.lex_state = 4, .external_lex_state = 2}, - [542] = {.lex_state = 4, .external_lex_state = 2}, - [543] = {.lex_state = 4, .external_lex_state = 2}, - [544] = {.lex_state = 4, .external_lex_state = 2}, - [545] = {.lex_state = 4, .external_lex_state = 2}, - [546] = {.lex_state = 4, .external_lex_state = 2}, - [547] = {.lex_state = 4, .external_lex_state = 2}, - [548] = {.lex_state = 4, .external_lex_state = 2}, - [549] = {.lex_state = 4, .external_lex_state = 2}, - [550] = {.lex_state = 4, .external_lex_state = 2}, - [551] = {.lex_state = 4, .external_lex_state = 2}, - [552] = {.lex_state = 4, .external_lex_state = 2}, - [553] = {.lex_state = 4, .external_lex_state = 2}, - [554] = {.lex_state = 4, .external_lex_state = 2}, - [555] = {.lex_state = 4, .external_lex_state = 2}, - [556] = {.lex_state = 4, .external_lex_state = 2}, - [557] = {.lex_state = 4, .external_lex_state = 2}, - [558] = {.lex_state = 4, .external_lex_state = 2}, - [559] = {.lex_state = 4, .external_lex_state = 2}, - [560] = {.lex_state = 4, .external_lex_state = 2}, - [561] = {.lex_state = 4, .external_lex_state = 2}, - [562] = {.lex_state = 4, .external_lex_state = 2}, - [563] = {.lex_state = 4, .external_lex_state = 2}, - [564] = {.lex_state = 4, .external_lex_state = 2}, - [565] = {.lex_state = 4, .external_lex_state = 2}, - [566] = {.lex_state = 4, .external_lex_state = 2}, - [567] = {.lex_state = 4, .external_lex_state = 2}, - [568] = {.lex_state = 4, .external_lex_state = 2}, - [569] = {.lex_state = 4, .external_lex_state = 2}, - [570] = {.lex_state = 4, .external_lex_state = 2}, - [571] = {.lex_state = 4, .external_lex_state = 2}, - [572] = {.lex_state = 4, .external_lex_state = 2}, - [573] = {.lex_state = 4, .external_lex_state = 2}, - [574] = {.lex_state = 4, .external_lex_state = 2}, - [575] = {.lex_state = 4, .external_lex_state = 2}, - [576] = {.lex_state = 4, .external_lex_state = 2}, - [577] = {.lex_state = 4, .external_lex_state = 2}, - [578] = {.lex_state = 4, .external_lex_state = 2}, - [579] = {.lex_state = 4, .external_lex_state = 2}, - [580] = {.lex_state = 4, .external_lex_state = 2}, - [581] = {.lex_state = 4, .external_lex_state = 2}, - [582] = {.lex_state = 4, .external_lex_state = 2}, - [583] = {.lex_state = 4, .external_lex_state = 2}, - [584] = {.lex_state = 4, .external_lex_state = 2}, - [585] = {.lex_state = 4, .external_lex_state = 2}, - [586] = {.lex_state = 4, .external_lex_state = 2}, - [587] = {.lex_state = 4, .external_lex_state = 2}, - [588] = {.lex_state = 4, .external_lex_state = 2}, - [589] = {.lex_state = 4, .external_lex_state = 2}, - [590] = {.lex_state = 4, .external_lex_state = 2}, - [591] = {.lex_state = 4, .external_lex_state = 2}, - [592] = {.lex_state = 4, .external_lex_state = 2}, - [593] = {.lex_state = 4, .external_lex_state = 2}, - [594] = {.lex_state = 4, .external_lex_state = 2}, - [595] = {.lex_state = 4, .external_lex_state = 2}, - [596] = {.lex_state = 4, .external_lex_state = 2}, - [597] = {.lex_state = 4, .external_lex_state = 2}, - [598] = {.lex_state = 4, .external_lex_state = 2}, - [599] = {.lex_state = 4, .external_lex_state = 2}, - [600] = {.lex_state = 4, .external_lex_state = 2}, - [601] = {.lex_state = 4, .external_lex_state = 2}, - [602] = {.lex_state = 4, .external_lex_state = 2}, - [603] = {.lex_state = 4, .external_lex_state = 2}, - [604] = {.lex_state = 4, .external_lex_state = 2}, - [605] = {.lex_state = 4, .external_lex_state = 2}, - [606] = {.lex_state = 4, .external_lex_state = 2}, - [607] = {.lex_state = 4, .external_lex_state = 2}, - [608] = {.lex_state = 4, .external_lex_state = 2}, - [609] = {.lex_state = 4, .external_lex_state = 2}, - [610] = {.lex_state = 4, .external_lex_state = 2}, - [611] = {.lex_state = 4, .external_lex_state = 2}, - [612] = {.lex_state = 4, .external_lex_state = 2}, - [613] = {.lex_state = 4, .external_lex_state = 2}, - [614] = {.lex_state = 4, .external_lex_state = 2}, - [615] = {.lex_state = 4, .external_lex_state = 2}, - [616] = {.lex_state = 4, .external_lex_state = 2}, - [617] = {.lex_state = 4, .external_lex_state = 2}, - [618] = {.lex_state = 4, .external_lex_state = 2}, - [619] = {.lex_state = 4, .external_lex_state = 2}, - [620] = {.lex_state = 4, .external_lex_state = 2}, - [621] = {.lex_state = 4, .external_lex_state = 2}, - [622] = {.lex_state = 4, .external_lex_state = 2}, - [623] = {.lex_state = 4, .external_lex_state = 2}, - [624] = {.lex_state = 4, .external_lex_state = 2}, - [625] = {.lex_state = 4, .external_lex_state = 2}, - [626] = {.lex_state = 4, .external_lex_state = 2}, - [627] = {.lex_state = 4, .external_lex_state = 2}, - [628] = {.lex_state = 4, .external_lex_state = 2}, - [629] = {.lex_state = 4, .external_lex_state = 2}, - [630] = {.lex_state = 4, .external_lex_state = 2}, - [631] = {.lex_state = 4, .external_lex_state = 2}, - [632] = {.lex_state = 4, .external_lex_state = 2}, - [633] = {.lex_state = 4, .external_lex_state = 2}, - [634] = {.lex_state = 4, .external_lex_state = 2}, - [635] = {.lex_state = 4, .external_lex_state = 2}, - [636] = {.lex_state = 4, .external_lex_state = 2}, - [637] = {.lex_state = 4, .external_lex_state = 2}, - [638] = {.lex_state = 4, .external_lex_state = 2}, - [639] = {.lex_state = 4, .external_lex_state = 2}, - [640] = {.lex_state = 4, .external_lex_state = 2}, - [641] = {.lex_state = 4, .external_lex_state = 2}, - [642] = {.lex_state = 4, .external_lex_state = 2}, - [643] = {.lex_state = 4, .external_lex_state = 2}, - [644] = {.lex_state = 4, .external_lex_state = 2}, - [645] = {.lex_state = 4, .external_lex_state = 2}, - [646] = {.lex_state = 4, .external_lex_state = 2}, - [647] = {.lex_state = 4, .external_lex_state = 2}, - [648] = {.lex_state = 4, .external_lex_state = 2}, - [649] = {.lex_state = 4, .external_lex_state = 2}, - [650] = {.lex_state = 4, .external_lex_state = 2}, - [651] = {.lex_state = 4, .external_lex_state = 2}, - [652] = {.lex_state = 4, .external_lex_state = 2}, - [653] = {.lex_state = 4, .external_lex_state = 2}, - [654] = {.lex_state = 4, .external_lex_state = 2}, - [655] = {.lex_state = 4, .external_lex_state = 2}, - [656] = {.lex_state = 4, .external_lex_state = 2}, - [657] = {.lex_state = 4, .external_lex_state = 2}, - [658] = {.lex_state = 4, .external_lex_state = 2}, - [659] = {.lex_state = 4, .external_lex_state = 2}, - [660] = {.lex_state = 4, .external_lex_state = 2}, - [661] = {.lex_state = 4, .external_lex_state = 2}, - [662] = {.lex_state = 4, .external_lex_state = 2}, - [663] = {.lex_state = 4, .external_lex_state = 2}, - [664] = {.lex_state = 4, .external_lex_state = 2}, - [665] = {.lex_state = 4, .external_lex_state = 2}, - [666] = {.lex_state = 4, .external_lex_state = 2}, - [667] = {.lex_state = 4, .external_lex_state = 2}, - [668] = {.lex_state = 4, .external_lex_state = 2}, - [669] = {.lex_state = 4, .external_lex_state = 2}, - [670] = {.lex_state = 4, .external_lex_state = 2}, - [671] = {.lex_state = 4, .external_lex_state = 2}, - [672] = {.lex_state = 4, .external_lex_state = 2}, - [673] = {.lex_state = 4, .external_lex_state = 2}, - [674] = {.lex_state = 4, .external_lex_state = 2}, - [675] = {.lex_state = 4, .external_lex_state = 2}, - [676] = {.lex_state = 4, .external_lex_state = 2}, - [677] = {.lex_state = 4, .external_lex_state = 2}, - [678] = {.lex_state = 4, .external_lex_state = 2}, - [679] = {.lex_state = 4, .external_lex_state = 2}, - [680] = {.lex_state = 4, .external_lex_state = 2}, - [681] = {.lex_state = 4, .external_lex_state = 2}, - [682] = {.lex_state = 4, .external_lex_state = 2}, - [683] = {.lex_state = 4, .external_lex_state = 2}, - [684] = {.lex_state = 4, .external_lex_state = 2}, - [685] = {.lex_state = 4, .external_lex_state = 2}, - [686] = {.lex_state = 4, .external_lex_state = 2}, - [687] = {.lex_state = 4, .external_lex_state = 2}, - [688] = {.lex_state = 4, .external_lex_state = 2}, - [689] = {.lex_state = 4, .external_lex_state = 2}, - [690] = {.lex_state = 4, .external_lex_state = 2}, - [691] = {.lex_state = 4, .external_lex_state = 2}, - [692] = {.lex_state = 4, .external_lex_state = 2}, - [693] = {.lex_state = 4, .external_lex_state = 2}, - [694] = {.lex_state = 4, .external_lex_state = 2}, - [695] = {.lex_state = 4, .external_lex_state = 2}, - [696] = {.lex_state = 4, .external_lex_state = 2}, - [697] = {.lex_state = 4, .external_lex_state = 2}, - [698] = {.lex_state = 4, .external_lex_state = 2}, - [699] = {.lex_state = 4, .external_lex_state = 2}, - [700] = {.lex_state = 4, .external_lex_state = 2}, - [701] = {.lex_state = 43, .external_lex_state = 2}, - [702] = {.lex_state = 43, .external_lex_state = 2}, - [703] = {.lex_state = 43, .external_lex_state = 2}, - [704] = {.lex_state = 43, .external_lex_state = 2}, - [705] = {.lex_state = 43, .external_lex_state = 2}, - [706] = {.lex_state = 43, .external_lex_state = 2}, - [707] = {.lex_state = 43, .external_lex_state = 2}, - [708] = {.lex_state = 43, .external_lex_state = 2}, - [709] = {.lex_state = 43, .external_lex_state = 2}, - [710] = {.lex_state = 43, .external_lex_state = 2}, - [711] = {.lex_state = 43, .external_lex_state = 2}, - [712] = {.lex_state = 43, .external_lex_state = 2}, - [713] = {.lex_state = 43, .external_lex_state = 2}, - [714] = {.lex_state = 43, .external_lex_state = 2}, - [715] = {.lex_state = 43, .external_lex_state = 2}, - [716] = {.lex_state = 43, .external_lex_state = 2}, - [717] = {.lex_state = 43, .external_lex_state = 2}, - [718] = {.lex_state = 43, .external_lex_state = 2}, - [719] = {.lex_state = 43, .external_lex_state = 2}, - [720] = {.lex_state = 43, .external_lex_state = 2}, - [721] = {.lex_state = 43, .external_lex_state = 2}, - [722] = {.lex_state = 43, .external_lex_state = 2}, - [723] = {.lex_state = 43, .external_lex_state = 2}, - [724] = {.lex_state = 43, .external_lex_state = 2}, - [725] = {.lex_state = 43, .external_lex_state = 2}, - [726] = {.lex_state = 43, .external_lex_state = 2}, - [727] = {.lex_state = 43, .external_lex_state = 2}, - [728] = {.lex_state = 43, .external_lex_state = 2}, - [729] = {.lex_state = 43, .external_lex_state = 2}, - [730] = {.lex_state = 43, .external_lex_state = 2}, - [731] = {.lex_state = 43, .external_lex_state = 2}, - [732] = {.lex_state = 43, .external_lex_state = 2}, - [733] = {.lex_state = 43, .external_lex_state = 2}, - [734] = {.lex_state = 43, .external_lex_state = 2}, - [735] = {.lex_state = 43, .external_lex_state = 2}, - [736] = {.lex_state = 43, .external_lex_state = 2}, - [737] = {.lex_state = 43, .external_lex_state = 2}, - [738] = {.lex_state = 43, .external_lex_state = 2}, - [739] = {.lex_state = 43, .external_lex_state = 2}, - [740] = {.lex_state = 43, .external_lex_state = 2}, - [741] = {.lex_state = 43, .external_lex_state = 2}, - [742] = {.lex_state = 43, .external_lex_state = 2}, - [743] = {.lex_state = 43, .external_lex_state = 2}, - [744] = {.lex_state = 43, .external_lex_state = 2}, - [745] = {.lex_state = 43, .external_lex_state = 2}, - [746] = {.lex_state = 43, .external_lex_state = 2}, - [747] = {.lex_state = 43, .external_lex_state = 2}, - [748] = {.lex_state = 43, .external_lex_state = 2}, - [749] = {.lex_state = 44, .external_lex_state = 2}, - [750] = {.lex_state = 44, .external_lex_state = 2}, - [751] = {.lex_state = 44, .external_lex_state = 2}, - [752] = {.lex_state = 6, .external_lex_state = 2}, - [753] = {.lex_state = 44, .external_lex_state = 2}, - [754] = {.lex_state = 7, .external_lex_state = 2}, - [755] = {.lex_state = 7, .external_lex_state = 2}, - [756] = {.lex_state = 45, .external_lex_state = 2}, - [757] = {.lex_state = 45, .external_lex_state = 2}, - [758] = {.lex_state = 7, .external_lex_state = 2}, - [759] = {.lex_state = 7, .external_lex_state = 2}, - [760] = {.lex_state = 11, .external_lex_state = 2}, - [761] = {.lex_state = 9, .external_lex_state = 2}, - [762] = {.lex_state = 44, .external_lex_state = 2}, - [763] = {.lex_state = 7, .external_lex_state = 2}, - [764] = {.lex_state = 45, .external_lex_state = 2}, - [765] = {.lex_state = 45, .external_lex_state = 2}, - [766] = {.lex_state = 7, .external_lex_state = 2}, - [767] = {.lex_state = 7, .external_lex_state = 2}, - [768] = {.lex_state = 45, .external_lex_state = 2}, - [769] = {.lex_state = 7, .external_lex_state = 2}, - [770] = {.lex_state = 45, .external_lex_state = 2}, - [771] = {.lex_state = 45, .external_lex_state = 2}, - [772] = {.lex_state = 7, .external_lex_state = 2}, - [773] = {.lex_state = 7, .external_lex_state = 2}, - [774] = {.lex_state = 9, .external_lex_state = 2}, - [775] = {.lex_state = 45, .external_lex_state = 2}, - [776] = {.lex_state = 7, .external_lex_state = 2}, - [777] = {.lex_state = 7, .external_lex_state = 2}, - [778] = {.lex_state = 7, .external_lex_state = 2}, - [779] = {.lex_state = 7, .external_lex_state = 2}, - [780] = {.lex_state = 7, .external_lex_state = 2}, - [781] = {.lex_state = 7, .external_lex_state = 2}, - [782] = {.lex_state = 11, .external_lex_state = 2}, - [783] = {.lex_state = 7, .external_lex_state = 2}, - [784] = {.lex_state = 7, .external_lex_state = 2}, - [785] = {.lex_state = 7, .external_lex_state = 2}, - [786] = {.lex_state = 7, .external_lex_state = 2}, - [787] = {.lex_state = 7, .external_lex_state = 2}, - [788] = {.lex_state = 7, .external_lex_state = 2}, - [789] = {.lex_state = 7, .external_lex_state = 2}, - [790] = {.lex_state = 7, .external_lex_state = 2}, - [791] = {.lex_state = 46, .external_lex_state = 2}, - [792] = {.lex_state = 7, .external_lex_state = 2}, - [793] = {.lex_state = 7, .external_lex_state = 2}, - [794] = {.lex_state = 7, .external_lex_state = 2}, - [795] = {.lex_state = 7, .external_lex_state = 2}, - [796] = {.lex_state = 7, .external_lex_state = 2}, - [797] = {.lex_state = 6, .external_lex_state = 2}, - [798] = {.lex_state = 7, .external_lex_state = 2}, - [799] = {.lex_state = 7, .external_lex_state = 2}, - [800] = {.lex_state = 7, .external_lex_state = 2}, - [801] = {.lex_state = 7, .external_lex_state = 2}, - [802] = {.lex_state = 45, .external_lex_state = 2}, - [803] = {.lex_state = 45, .external_lex_state = 2}, - [804] = {.lex_state = 7, .external_lex_state = 2}, - [805] = {.lex_state = 7, .external_lex_state = 2}, - [806] = {.lex_state = 7, .external_lex_state = 2}, - [807] = {.lex_state = 7, .external_lex_state = 2}, - [808] = {.lex_state = 7, .external_lex_state = 2}, - [809] = {.lex_state = 7, .external_lex_state = 2}, - [810] = {.lex_state = 7, .external_lex_state = 2}, - [811] = {.lex_state = 7, .external_lex_state = 2}, - [812] = {.lex_state = 6, .external_lex_state = 2}, - [813] = {.lex_state = 7, .external_lex_state = 2}, - [814] = {.lex_state = 7, .external_lex_state = 2}, - [815] = {.lex_state = 7, .external_lex_state = 2}, - [816] = {.lex_state = 7, .external_lex_state = 2}, - [817] = {.lex_state = 7, .external_lex_state = 2}, - [818] = {.lex_state = 7, .external_lex_state = 2}, - [819] = {.lex_state = 7, .external_lex_state = 2}, - [820] = {.lex_state = 6, .external_lex_state = 2}, - [821] = {.lex_state = 7, .external_lex_state = 2}, - [822] = {.lex_state = 7, .external_lex_state = 2}, - [823] = {.lex_state = 7, .external_lex_state = 2}, - [824] = {.lex_state = 7, .external_lex_state = 2}, - [825] = {.lex_state = 7, .external_lex_state = 2}, - [826] = {.lex_state = 7, .external_lex_state = 2}, - [827] = {.lex_state = 9, .external_lex_state = 2}, - [828] = {.lex_state = 7, .external_lex_state = 2}, - [829] = {.lex_state = 7, .external_lex_state = 2}, - [830] = {.lex_state = 7, .external_lex_state = 2}, - [831] = {.lex_state = 46, .external_lex_state = 2}, - [832] = {.lex_state = 7, .external_lex_state = 2}, - [833] = {.lex_state = 7, .external_lex_state = 2}, - [834] = {.lex_state = 7, .external_lex_state = 2}, - [835] = {.lex_state = 7, .external_lex_state = 2}, - [836] = {.lex_state = 7, .external_lex_state = 2}, - [837] = {.lex_state = 7, .external_lex_state = 2}, - [838] = {.lex_state = 7, .external_lex_state = 2}, - [839] = {.lex_state = 7, .external_lex_state = 2}, - [840] = {.lex_state = 7, .external_lex_state = 2}, - [841] = {.lex_state = 7, .external_lex_state = 2}, - [842] = {.lex_state = 7, .external_lex_state = 2}, - [843] = {.lex_state = 6, .external_lex_state = 2}, - [844] = {.lex_state = 6, .external_lex_state = 2}, - [845] = {.lex_state = 6, .external_lex_state = 2}, - [846] = {.lex_state = 7, .external_lex_state = 2}, - [847] = {.lex_state = 6, .external_lex_state = 2}, - [848] = {.lex_state = 6, .external_lex_state = 2}, - [849] = {.lex_state = 6, .external_lex_state = 2}, - [850] = {.lex_state = 45, .external_lex_state = 2}, - [851] = {.lex_state = 7, .external_lex_state = 2}, - [852] = {.lex_state = 6, .external_lex_state = 2}, - [853] = {.lex_state = 45, .external_lex_state = 2}, - [854] = {.lex_state = 45, .external_lex_state = 2}, - [855] = {.lex_state = 7, .external_lex_state = 2}, - [856] = {.lex_state = 45, .external_lex_state = 2}, - [857] = {.lex_state = 45, .external_lex_state = 2}, - [858] = {.lex_state = 47, .external_lex_state = 2}, - [859] = {.lex_state = 11, .external_lex_state = 2}, - [860] = {.lex_state = 47, .external_lex_state = 2}, - [861] = {.lex_state = 7, .external_lex_state = 2}, - [862] = {.lex_state = 6, .external_lex_state = 2}, - [863] = {.lex_state = 45, .external_lex_state = 2}, - [864] = {.lex_state = 9, .external_lex_state = 2}, - [865] = {.lex_state = 7, .external_lex_state = 2}, - [866] = {.lex_state = 7, .external_lex_state = 2}, - [867] = {.lex_state = 6, .external_lex_state = 2}, - [868] = {.lex_state = 7, .external_lex_state = 2}, - [869] = {.lex_state = 6, .external_lex_state = 2}, - [870] = {.lex_state = 9, .external_lex_state = 2}, - [871] = {.lex_state = 9, .external_lex_state = 2}, - [872] = {.lex_state = 8, .external_lex_state = 2}, - [873] = {.lex_state = 6, .external_lex_state = 2}, - [874] = {.lex_state = 6, .external_lex_state = 2}, - [875] = {.lex_state = 45, .external_lex_state = 2}, - [876] = {.lex_state = 7, .external_lex_state = 2}, - [877] = {.lex_state = 7, .external_lex_state = 2}, - [878] = {.lex_state = 7, .external_lex_state = 2}, - [879] = {.lex_state = 45, .external_lex_state = 2}, - [880] = {.lex_state = 7, .external_lex_state = 2}, - [881] = {.lex_state = 45, .external_lex_state = 2}, - [882] = {.lex_state = 7, .external_lex_state = 2}, - [883] = {.lex_state = 45, .external_lex_state = 2}, - [884] = {.lex_state = 9, .external_lex_state = 2}, - [885] = {.lex_state = 45, .external_lex_state = 2}, - [886] = {.lex_state = 45, .external_lex_state = 2}, - [887] = {.lex_state = 7, .external_lex_state = 2}, - [888] = {.lex_state = 6, .external_lex_state = 2}, - [889] = {.lex_state = 7, .external_lex_state = 2}, - [890] = {.lex_state = 45, .external_lex_state = 2}, - [891] = {.lex_state = 6, .external_lex_state = 2}, - [892] = {.lex_state = 45, .external_lex_state = 2}, - [893] = {.lex_state = 6, .external_lex_state = 2}, - [894] = {.lex_state = 6, .external_lex_state = 2}, - [895] = {.lex_state = 6, .external_lex_state = 2}, - [896] = {.lex_state = 6, .external_lex_state = 2}, - [897] = {.lex_state = 6, .external_lex_state = 2}, - [898] = {.lex_state = 6, .external_lex_state = 2}, - [899] = {.lex_state = 6, .external_lex_state = 2}, - [900] = {.lex_state = 6, .external_lex_state = 2}, - [901] = {.lex_state = 6, .external_lex_state = 2}, - [902] = {.lex_state = 6, .external_lex_state = 2}, - [903] = {.lex_state = 6, .external_lex_state = 2}, - [904] = {.lex_state = 6, .external_lex_state = 2}, - [905] = {.lex_state = 6, .external_lex_state = 2}, - [906] = {.lex_state = 6, .external_lex_state = 2}, - [907] = {.lex_state = 6, .external_lex_state = 2}, - [908] = {.lex_state = 6, .external_lex_state = 2}, - [909] = {.lex_state = 6, .external_lex_state = 2}, - [910] = {.lex_state = 7, .external_lex_state = 2}, - [911] = {.lex_state = 7, .external_lex_state = 2}, - [912] = {.lex_state = 7, .external_lex_state = 2}, - [913] = {.lex_state = 45, .external_lex_state = 2}, - [914] = {.lex_state = 6, .external_lex_state = 2}, - [915] = {.lex_state = 6, .external_lex_state = 2}, - [916] = {.lex_state = 45, .external_lex_state = 2}, - [917] = {.lex_state = 7, .external_lex_state = 2}, - [918] = {.lex_state = 7, .external_lex_state = 2}, - [919] = {.lex_state = 45, .external_lex_state = 2}, - [920] = {.lex_state = 45, .external_lex_state = 2}, - [921] = {.lex_state = 45, .external_lex_state = 2}, - [922] = {.lex_state = 7, .external_lex_state = 2}, - [923] = {.lex_state = 7, .external_lex_state = 2}, - [924] = {.lex_state = 45, .external_lex_state = 2}, - [925] = {.lex_state = 6, .external_lex_state = 2}, - [926] = {.lex_state = 6, .external_lex_state = 2}, - [927] = {.lex_state = 6, .external_lex_state = 2}, - [928] = {.lex_state = 6, .external_lex_state = 2}, - [929] = {.lex_state = 6, .external_lex_state = 2}, - [930] = {.lex_state = 6, .external_lex_state = 2}, - [931] = {.lex_state = 6, .external_lex_state = 2}, - [932] = {.lex_state = 6, .external_lex_state = 2}, - [933] = {.lex_state = 6, .external_lex_state = 2}, - [934] = {.lex_state = 6, .external_lex_state = 2}, - [935] = {.lex_state = 6, .external_lex_state = 2}, - [936] = {.lex_state = 45, .external_lex_state = 2}, - [937] = {.lex_state = 6, .external_lex_state = 2}, - [938] = {.lex_state = 6, .external_lex_state = 2}, - [939] = {.lex_state = 45, .external_lex_state = 2}, - [940] = {.lex_state = 6, .external_lex_state = 2}, - [941] = {.lex_state = 6, .external_lex_state = 2}, - [942] = {.lex_state = 6, .external_lex_state = 2}, - [943] = {.lex_state = 6, .external_lex_state = 2}, - [944] = {.lex_state = 45, .external_lex_state = 2}, - [945] = {.lex_state = 6, .external_lex_state = 2}, - [946] = {.lex_state = 45, .external_lex_state = 2}, - [947] = {.lex_state = 45, .external_lex_state = 2}, - [948] = {.lex_state = 45, .external_lex_state = 2}, - [949] = {.lex_state = 45, .external_lex_state = 2}, - [950] = {.lex_state = 6, .external_lex_state = 2}, - [951] = {.lex_state = 6, .external_lex_state = 2}, - [952] = {.lex_state = 45, .external_lex_state = 2}, - [953] = {.lex_state = 6, .external_lex_state = 2}, - [954] = {.lex_state = 6, .external_lex_state = 2}, - [955] = {.lex_state = 6, .external_lex_state = 2}, - [956] = {.lex_state = 6, .external_lex_state = 2}, - [957] = {.lex_state = 6, .external_lex_state = 2}, - [958] = {.lex_state = 45, .external_lex_state = 2}, - [959] = {.lex_state = 6, .external_lex_state = 2}, - [960] = {.lex_state = 6, .external_lex_state = 2}, - [961] = {.lex_state = 6, .external_lex_state = 2}, - [962] = {.lex_state = 6, .external_lex_state = 2}, - [963] = {.lex_state = 6, .external_lex_state = 2}, - [964] = {.lex_state = 6, .external_lex_state = 2}, - [965] = {.lex_state = 6, .external_lex_state = 2}, - [966] = {.lex_state = 6, .external_lex_state = 2}, - [967] = {.lex_state = 6, .external_lex_state = 2}, - [968] = {.lex_state = 6, .external_lex_state = 2}, - [969] = {.lex_state = 6, .external_lex_state = 2}, - [970] = {.lex_state = 6, .external_lex_state = 2}, - [971] = {.lex_state = 7, .external_lex_state = 2}, - [972] = {.lex_state = 6, .external_lex_state = 2}, - [973] = {.lex_state = 6, .external_lex_state = 2}, - [974] = {.lex_state = 6, .external_lex_state = 2}, - [975] = {.lex_state = 6, .external_lex_state = 2}, - [976] = {.lex_state = 6, .external_lex_state = 2}, - [977] = {.lex_state = 6, .external_lex_state = 2}, - [978] = {.lex_state = 6, .external_lex_state = 2}, - [979] = {.lex_state = 6, .external_lex_state = 2}, - [980] = {.lex_state = 6, .external_lex_state = 2}, - [981] = {.lex_state = 45, .external_lex_state = 2}, - [982] = {.lex_state = 45, .external_lex_state = 2}, - [983] = {.lex_state = 6, .external_lex_state = 2}, - [984] = {.lex_state = 6, .external_lex_state = 2}, - [985] = {.lex_state = 6, .external_lex_state = 2}, - [986] = {.lex_state = 7, .external_lex_state = 2}, - [987] = {.lex_state = 45, .external_lex_state = 2}, - [988] = {.lex_state = 45, .external_lex_state = 2}, - [989] = {.lex_state = 6, .external_lex_state = 2}, - [990] = {.lex_state = 6, .external_lex_state = 2}, - [991] = {.lex_state = 6, .external_lex_state = 2}, - [992] = {.lex_state = 6, .external_lex_state = 2}, - [993] = {.lex_state = 6, .external_lex_state = 2}, - [994] = {.lex_state = 6, .external_lex_state = 2}, - [995] = {.lex_state = 6, .external_lex_state = 2}, - [996] = {.lex_state = 6, .external_lex_state = 2}, - [997] = {.lex_state = 6, .external_lex_state = 2}, - [998] = {.lex_state = 6, .external_lex_state = 2}, - [999] = {.lex_state = 6, .external_lex_state = 2}, - [1000] = {.lex_state = 6, .external_lex_state = 2}, - [1001] = {.lex_state = 6, .external_lex_state = 2}, - [1002] = {.lex_state = 6, .external_lex_state = 2}, - [1003] = {.lex_state = 6, .external_lex_state = 2}, - [1004] = {.lex_state = 6, .external_lex_state = 2}, - [1005] = {.lex_state = 6, .external_lex_state = 2}, - [1006] = {.lex_state = 6, .external_lex_state = 2}, - [1007] = {.lex_state = 6, .external_lex_state = 2}, - [1008] = {.lex_state = 6, .external_lex_state = 2}, - [1009] = {.lex_state = 45, .external_lex_state = 2}, - [1010] = {.lex_state = 6, .external_lex_state = 2}, - [1011] = {.lex_state = 6, .external_lex_state = 2}, - [1012] = {.lex_state = 6, .external_lex_state = 2}, - [1013] = {.lex_state = 6, .external_lex_state = 2}, - [1014] = {.lex_state = 6, .external_lex_state = 2}, - [1015] = {.lex_state = 6, .external_lex_state = 2}, - [1016] = {.lex_state = 6, .external_lex_state = 2}, - [1017] = {.lex_state = 45, .external_lex_state = 2}, - [1018] = {.lex_state = 45, .external_lex_state = 2}, - [1019] = {.lex_state = 6, .external_lex_state = 2}, - [1020] = {.lex_state = 6, .external_lex_state = 2}, - [1021] = {.lex_state = 45, .external_lex_state = 2}, - [1022] = {.lex_state = 45, .external_lex_state = 2}, - [1023] = {.lex_state = 6, .external_lex_state = 2}, - [1024] = {.lex_state = 45, .external_lex_state = 2}, - [1025] = {.lex_state = 6, .external_lex_state = 2}, - [1026] = {.lex_state = 6, .external_lex_state = 2}, - [1027] = {.lex_state = 45, .external_lex_state = 2}, - [1028] = {.lex_state = 58, .external_lex_state = 3}, - [1029] = {.lex_state = 58, .external_lex_state = 3}, - [1030] = {.lex_state = 58, .external_lex_state = 3}, - [1031] = {.lex_state = 58, .external_lex_state = 3}, - [1032] = {.lex_state = 58, .external_lex_state = 3}, - [1033] = {.lex_state = 58, .external_lex_state = 3}, - [1034] = {.lex_state = 58, .external_lex_state = 3}, - [1035] = {.lex_state = 13, .external_lex_state = 3}, - [1036] = {.lex_state = 19, .external_lex_state = 3}, - [1037] = {.lex_state = 19, .external_lex_state = 3}, - [1038] = {.lex_state = 19, .external_lex_state = 3}, - [1039] = {.lex_state = 19, .external_lex_state = 3}, - [1040] = {.lex_state = 19, .external_lex_state = 3}, - [1041] = {.lex_state = 19, .external_lex_state = 3}, - [1042] = {.lex_state = 19, .external_lex_state = 3}, - [1043] = {.lex_state = 19, .external_lex_state = 3}, - [1044] = {.lex_state = 19, .external_lex_state = 3}, - [1045] = {.lex_state = 19, .external_lex_state = 3}, - [1046] = {.lex_state = 6, .external_lex_state = 2}, - [1047] = {.lex_state = 19, .external_lex_state = 3}, - [1048] = {.lex_state = 19, .external_lex_state = 3}, - [1049] = {.lex_state = 19, .external_lex_state = 3}, - [1050] = {.lex_state = 19, .external_lex_state = 3}, - [1051] = {.lex_state = 19, .external_lex_state = 3}, - [1052] = {.lex_state = 6, .external_lex_state = 2}, - [1053] = {.lex_state = 19, .external_lex_state = 3}, - [1054] = {.lex_state = 6, .external_lex_state = 2}, - [1055] = {.lex_state = 19, .external_lex_state = 3}, - [1056] = {.lex_state = 19, .external_lex_state = 3}, - [1057] = {.lex_state = 6, .external_lex_state = 2}, - [1058] = {.lex_state = 19, .external_lex_state = 3}, - [1059] = {.lex_state = 19, .external_lex_state = 3}, - [1060] = {.lex_state = 19, .external_lex_state = 3}, - [1061] = {.lex_state = 6, .external_lex_state = 2}, - [1062] = {.lex_state = 6, .external_lex_state = 2}, - [1063] = {.lex_state = 6, .external_lex_state = 2}, - [1064] = {.lex_state = 6, .external_lex_state = 2}, - [1065] = {.lex_state = 19, .external_lex_state = 3}, - [1066] = {.lex_state = 19, .external_lex_state = 3}, - [1067] = {.lex_state = 6, .external_lex_state = 2}, - [1068] = {.lex_state = 19, .external_lex_state = 3}, - [1069] = {.lex_state = 6, .external_lex_state = 2}, - [1070] = {.lex_state = 19, .external_lex_state = 3}, - [1071] = {.lex_state = 19, .external_lex_state = 3}, - [1072] = {.lex_state = 19, .external_lex_state = 3}, - [1073] = {.lex_state = 19, .external_lex_state = 3}, - [1074] = {.lex_state = 19, .external_lex_state = 3}, - [1075] = {.lex_state = 19, .external_lex_state = 3}, - [1076] = {.lex_state = 6, .external_lex_state = 2}, - [1077] = {.lex_state = 19, .external_lex_state = 3}, - [1078] = {.lex_state = 19, .external_lex_state = 3}, - [1079] = {.lex_state = 19, .external_lex_state = 3}, - [1080] = {.lex_state = 19, .external_lex_state = 3}, - [1081] = {.lex_state = 19, .external_lex_state = 3}, - [1082] = {.lex_state = 19, .external_lex_state = 3}, - [1083] = {.lex_state = 19, .external_lex_state = 3}, - [1084] = {.lex_state = 19, .external_lex_state = 3}, - [1085] = {.lex_state = 6, .external_lex_state = 2}, - [1086] = {.lex_state = 18, .external_lex_state = 4}, - [1087] = {.lex_state = 18, .external_lex_state = 3}, - [1088] = {.lex_state = 19, .external_lex_state = 3}, - [1089] = {.lex_state = 58, .external_lex_state = 3}, - [1090] = {.lex_state = 58, .external_lex_state = 3}, - [1091] = {.lex_state = 19, .external_lex_state = 3}, - [1092] = {.lex_state = 19, .external_lex_state = 3}, - [1093] = {.lex_state = 19, .external_lex_state = 3}, - [1094] = {.lex_state = 27, .external_lex_state = 4}, - [1095] = {.lex_state = 27, .external_lex_state = 4}, - [1096] = {.lex_state = 20, .external_lex_state = 3}, - [1097] = {.lex_state = 20, .external_lex_state = 3}, - [1098] = {.lex_state = 58, .external_lex_state = 3}, - [1099] = {.lex_state = 19, .external_lex_state = 3}, - [1100] = {.lex_state = 14, .external_lex_state = 3}, - [1101] = {.lex_state = 19, .external_lex_state = 3}, - [1102] = {.lex_state = 19, .external_lex_state = 3}, - [1103] = {.lex_state = 58, .external_lex_state = 3}, - [1104] = {.lex_state = 18, .external_lex_state = 4}, - [1105] = {.lex_state = 58, .external_lex_state = 3}, - [1106] = {.lex_state = 19, .external_lex_state = 3}, - [1107] = {.lex_state = 19, .external_lex_state = 3}, - [1108] = {.lex_state = 19, .external_lex_state = 3}, - [1109] = {.lex_state = 19, .external_lex_state = 3}, - [1110] = {.lex_state = 69, .external_lex_state = 3}, - [1111] = {.lex_state = 69, .external_lex_state = 3}, - [1112] = {.lex_state = 18, .external_lex_state = 3}, - [1113] = {.lex_state = 19, .external_lex_state = 3}, - [1114] = {.lex_state = 69, .external_lex_state = 3}, - [1115] = {.lex_state = 69, .external_lex_state = 3}, - [1116] = {.lex_state = 19, .external_lex_state = 3}, - [1117] = {.lex_state = 31, .external_lex_state = 4}, - [1118] = {.lex_state = 31, .external_lex_state = 4}, - [1119] = {.lex_state = 31, .external_lex_state = 4}, - [1120] = {.lex_state = 33, .external_lex_state = 3}, - [1121] = {.lex_state = 31, .external_lex_state = 4}, - [1122] = {.lex_state = 18, .external_lex_state = 3}, - [1123] = {.lex_state = 19, .external_lex_state = 3}, - [1124] = {.lex_state = 19, .external_lex_state = 3}, - [1125] = {.lex_state = 18, .external_lex_state = 3}, - [1126] = {.lex_state = 58, .external_lex_state = 3}, - [1127] = {.lex_state = 58, .external_lex_state = 3}, - [1128] = {.lex_state = 31, .external_lex_state = 4}, - [1129] = {.lex_state = 19, .external_lex_state = 3}, - [1130] = {.lex_state = 31, .external_lex_state = 4}, - [1131] = {.lex_state = 31, .external_lex_state = 4}, - [1132] = {.lex_state = 58, .external_lex_state = 3}, - [1133] = {.lex_state = 31, .external_lex_state = 4}, - [1134] = {.lex_state = 31, .external_lex_state = 4}, - [1135] = {.lex_state = 31, .external_lex_state = 4}, - [1136] = {.lex_state = 31, .external_lex_state = 4}, - [1137] = {.lex_state = 19, .external_lex_state = 3}, - [1138] = {.lex_state = 58, .external_lex_state = 3}, - [1139] = {.lex_state = 58, .external_lex_state = 3}, - [1140] = {.lex_state = 58, .external_lex_state = 3}, - [1141] = {.lex_state = 31, .external_lex_state = 4}, - [1142] = {.lex_state = 31, .external_lex_state = 4}, - [1143] = {.lex_state = 31, .external_lex_state = 4}, - [1144] = {.lex_state = 19, .external_lex_state = 3}, - [1145] = {.lex_state = 58, .external_lex_state = 3}, - [1146] = {.lex_state = 19, .external_lex_state = 3}, - [1147] = {.lex_state = 58, .external_lex_state = 3}, - [1148] = {.lex_state = 19, .external_lex_state = 3}, - [1149] = {.lex_state = 58, .external_lex_state = 3}, - [1150] = {.lex_state = 58, .external_lex_state = 3}, - [1151] = {.lex_state = 58, .external_lex_state = 3}, - [1152] = {.lex_state = 58, .external_lex_state = 3}, - [1153] = {.lex_state = 31, .external_lex_state = 4}, - [1154] = {.lex_state = 31, .external_lex_state = 4}, - [1155] = {.lex_state = 31, .external_lex_state = 4}, - [1156] = {.lex_state = 31, .external_lex_state = 4}, - [1157] = {.lex_state = 31, .external_lex_state = 4}, - [1158] = {.lex_state = 19, .external_lex_state = 3}, - [1159] = {.lex_state = 69, .external_lex_state = 3}, - [1160] = {.lex_state = 58, .external_lex_state = 3}, - [1161] = {.lex_state = 58, .external_lex_state = 3}, - [1162] = {.lex_state = 24, .external_lex_state = 3}, - [1163] = {.lex_state = 19, .external_lex_state = 3}, - [1164] = {.lex_state = 58, .external_lex_state = 3}, - [1165] = {.lex_state = 58, .external_lex_state = 3}, - [1166] = {.lex_state = 58, .external_lex_state = 3}, - [1167] = {.lex_state = 58, .external_lex_state = 3}, - [1168] = {.lex_state = 58, .external_lex_state = 3}, - [1169] = {.lex_state = 58, .external_lex_state = 3}, - [1170] = {.lex_state = 58, .external_lex_state = 3}, - [1171] = {.lex_state = 58, .external_lex_state = 3}, - [1172] = {.lex_state = 58, .external_lex_state = 3}, - [1173] = {.lex_state = 58, .external_lex_state = 3}, - [1174] = {.lex_state = 58, .external_lex_state = 3}, - [1175] = {.lex_state = 69, .external_lex_state = 3}, - [1176] = {.lex_state = 19, .external_lex_state = 3}, - [1177] = {.lex_state = 31, .external_lex_state = 4}, - [1178] = {.lex_state = 19, .external_lex_state = 3}, - [1179] = {.lex_state = 24, .external_lex_state = 3}, - [1180] = {.lex_state = 31, .external_lex_state = 4}, - [1181] = {.lex_state = 31, .external_lex_state = 4}, - [1182] = {.lex_state = 69, .external_lex_state = 3}, - [1183] = {.lex_state = 31, .external_lex_state = 4}, - [1184] = {.lex_state = 58, .external_lex_state = 3}, - [1185] = {.lex_state = 31, .external_lex_state = 4}, - [1186] = {.lex_state = 31, .external_lex_state = 4}, - [1187] = {.lex_state = 31, .external_lex_state = 4}, - [1188] = {.lex_state = 31, .external_lex_state = 4}, - [1189] = {.lex_state = 31, .external_lex_state = 4}, - [1190] = {.lex_state = 58, .external_lex_state = 3}, - [1191] = {.lex_state = 31, .external_lex_state = 4}, - [1192] = {.lex_state = 58, .external_lex_state = 3}, - [1193] = {.lex_state = 31, .external_lex_state = 4}, - [1194] = {.lex_state = 31, .external_lex_state = 4}, - [1195] = {.lex_state = 58, .external_lex_state = 3}, - [1196] = {.lex_state = 31, .external_lex_state = 4}, - [1197] = {.lex_state = 31, .external_lex_state = 4}, - [1198] = {.lex_state = 31, .external_lex_state = 4}, - [1199] = {.lex_state = 19, .external_lex_state = 3}, - [1200] = {.lex_state = 24, .external_lex_state = 3}, - [1201] = {.lex_state = 58, .external_lex_state = 3}, - [1202] = {.lex_state = 31, .external_lex_state = 4}, - [1203] = {.lex_state = 58, .external_lex_state = 3}, - [1204] = {.lex_state = 19, .external_lex_state = 3}, - [1205] = {.lex_state = 19, .external_lex_state = 3}, - [1206] = {.lex_state = 31, .external_lex_state = 4}, - [1207] = {.lex_state = 69, .external_lex_state = 3}, - [1208] = {.lex_state = 31, .external_lex_state = 4}, - [1209] = {.lex_state = 58, .external_lex_state = 3}, - [1210] = {.lex_state = 31, .external_lex_state = 4}, - [1211] = {.lex_state = 69, .external_lex_state = 3}, - [1212] = {.lex_state = 19, .external_lex_state = 3}, - [1213] = {.lex_state = 31, .external_lex_state = 4}, - [1214] = {.lex_state = 69, .external_lex_state = 3}, - [1215] = {.lex_state = 58, .external_lex_state = 3}, - [1216] = {.lex_state = 58, .external_lex_state = 3}, - [1217] = {.lex_state = 69, .external_lex_state = 3}, - [1218] = {.lex_state = 69, .external_lex_state = 3}, - [1219] = {.lex_state = 58, .external_lex_state = 3}, - [1220] = {.lex_state = 58, .external_lex_state = 3}, - [1221] = {.lex_state = 58, .external_lex_state = 3}, - [1222] = {.lex_state = 19, .external_lex_state = 3}, - [1223] = {.lex_state = 58, .external_lex_state = 3}, - [1224] = {.lex_state = 24, .external_lex_state = 3}, - [1225] = {.lex_state = 24, .external_lex_state = 3}, - [1226] = {.lex_state = 24, .external_lex_state = 3}, - [1227] = {.lex_state = 24, .external_lex_state = 3}, - [1228] = {.lex_state = 32, .external_lex_state = 3}, - [1229] = {.lex_state = 58, .external_lex_state = 3}, - [1230] = {.lex_state = 58, .external_lex_state = 3}, - [1231] = {.lex_state = 58, .external_lex_state = 3}, - [1232] = {.lex_state = 58, .external_lex_state = 3}, - [1233] = {.lex_state = 58, .external_lex_state = 3}, - [1234] = {.lex_state = 58, .external_lex_state = 3}, - [1235] = {.lex_state = 58, .external_lex_state = 3}, - [1236] = {.lex_state = 58, .external_lex_state = 3}, - [1237] = {.lex_state = 58, .external_lex_state = 3}, - [1238] = {.lex_state = 58, .external_lex_state = 3}, - [1239] = {.lex_state = 58, .external_lex_state = 3}, - [1240] = {.lex_state = 19, .external_lex_state = 3}, - [1241] = {.lex_state = 58, .external_lex_state = 3}, - [1242] = {.lex_state = 58, .external_lex_state = 3}, - [1243] = {.lex_state = 58, .external_lex_state = 3}, - [1244] = {.lex_state = 58, .external_lex_state = 3}, - [1245] = {.lex_state = 58, .external_lex_state = 3}, - [1246] = {.lex_state = 58, .external_lex_state = 3}, - [1247] = {.lex_state = 19, .external_lex_state = 3}, - [1248] = {.lex_state = 58, .external_lex_state = 3}, - [1249] = {.lex_state = 58, .external_lex_state = 3}, - [1250] = {.lex_state = 58, .external_lex_state = 3}, - [1251] = {.lex_state = 58, .external_lex_state = 3}, - [1252] = {.lex_state = 58, .external_lex_state = 3}, - [1253] = {.lex_state = 58, .external_lex_state = 3}, - [1254] = {.lex_state = 58, .external_lex_state = 3}, - [1255] = {.lex_state = 58, .external_lex_state = 3}, - [1256] = {.lex_state = 58, .external_lex_state = 3}, - [1257] = {.lex_state = 58, .external_lex_state = 3}, - [1258] = {.lex_state = 58, .external_lex_state = 3}, - [1259] = {.lex_state = 58, .external_lex_state = 3}, - [1260] = {.lex_state = 58, .external_lex_state = 3}, - [1261] = {.lex_state = 58, .external_lex_state = 3}, - [1262] = {.lex_state = 58, .external_lex_state = 3}, - [1263] = {.lex_state = 58, .external_lex_state = 3}, - [1264] = {.lex_state = 58, .external_lex_state = 3}, - [1265] = {.lex_state = 58, .external_lex_state = 3}, - [1266] = {.lex_state = 58, .external_lex_state = 3}, - [1267] = {.lex_state = 58, .external_lex_state = 3}, - [1268] = {.lex_state = 58, .external_lex_state = 3}, - [1269] = {.lex_state = 58, .external_lex_state = 3}, - [1270] = {.lex_state = 58, .external_lex_state = 3}, - [1271] = {.lex_state = 58, .external_lex_state = 3}, - [1272] = {.lex_state = 58, .external_lex_state = 3}, - [1273] = {.lex_state = 58, .external_lex_state = 3}, - [1274] = {.lex_state = 58, .external_lex_state = 3}, - [1275] = {.lex_state = 58, .external_lex_state = 3}, - [1276] = {.lex_state = 58, .external_lex_state = 3}, - [1277] = {.lex_state = 58, .external_lex_state = 3}, - [1278] = {.lex_state = 58, .external_lex_state = 3}, - [1279] = {.lex_state = 58, .external_lex_state = 3}, - [1280] = {.lex_state = 58, .external_lex_state = 3}, - [1281] = {.lex_state = 58, .external_lex_state = 3}, - [1282] = {.lex_state = 58, .external_lex_state = 3}, - [1283] = {.lex_state = 58, .external_lex_state = 3}, - [1284] = {.lex_state = 58, .external_lex_state = 3}, - [1285] = {.lex_state = 58, .external_lex_state = 3}, - [1286] = {.lex_state = 58, .external_lex_state = 3}, - [1287] = {.lex_state = 58, .external_lex_state = 3}, - [1288] = {.lex_state = 58, .external_lex_state = 3}, - [1289] = {.lex_state = 58, .external_lex_state = 3}, - [1290] = {.lex_state = 58, .external_lex_state = 3}, - [1291] = {.lex_state = 58, .external_lex_state = 3}, - [1292] = {.lex_state = 58, .external_lex_state = 3}, - [1293] = {.lex_state = 58, .external_lex_state = 3}, - [1294] = {.lex_state = 58, .external_lex_state = 3}, - [1295] = {.lex_state = 58, .external_lex_state = 3}, - [1296] = {.lex_state = 58, .external_lex_state = 3}, - [1297] = {.lex_state = 58, .external_lex_state = 3}, - [1298] = {.lex_state = 58, .external_lex_state = 3}, - [1299] = {.lex_state = 58, .external_lex_state = 3}, - [1300] = {.lex_state = 58, .external_lex_state = 3}, - [1301] = {.lex_state = 58, .external_lex_state = 3}, - [1302] = {.lex_state = 58, .external_lex_state = 3}, - [1303] = {.lex_state = 58, .external_lex_state = 3}, - [1304] = {.lex_state = 58, .external_lex_state = 3}, - [1305] = {.lex_state = 58, .external_lex_state = 3}, - [1306] = {.lex_state = 58, .external_lex_state = 3}, - [1307] = {.lex_state = 58, .external_lex_state = 3}, - [1308] = {.lex_state = 58, .external_lex_state = 3}, - [1309] = {.lex_state = 58, .external_lex_state = 3}, - [1310] = {.lex_state = 58, .external_lex_state = 3}, - [1311] = {.lex_state = 58, .external_lex_state = 3}, - [1312] = {.lex_state = 58, .external_lex_state = 3}, - [1313] = {.lex_state = 58, .external_lex_state = 3}, - [1314] = {.lex_state = 58, .external_lex_state = 3}, - [1315] = {.lex_state = 58, .external_lex_state = 3}, - [1316] = {.lex_state = 58, .external_lex_state = 3}, - [1317] = {.lex_state = 58, .external_lex_state = 3}, - [1318] = {.lex_state = 58, .external_lex_state = 3}, - [1319] = {.lex_state = 58, .external_lex_state = 3}, - [1320] = {.lex_state = 58, .external_lex_state = 3}, - [1321] = {.lex_state = 58, .external_lex_state = 3}, - [1322] = {.lex_state = 58, .external_lex_state = 3}, - [1323] = {.lex_state = 58, .external_lex_state = 3}, - [1324] = {.lex_state = 58, .external_lex_state = 3}, - [1325] = {.lex_state = 19, .external_lex_state = 3}, - [1326] = {.lex_state = 58, .external_lex_state = 3}, - [1327] = {.lex_state = 19, .external_lex_state = 4}, - [1328] = {.lex_state = 58, .external_lex_state = 3}, - [1329] = {.lex_state = 58, .external_lex_state = 3}, - [1330] = {.lex_state = 58, .external_lex_state = 3}, - [1331] = {.lex_state = 58, .external_lex_state = 3}, - [1332] = {.lex_state = 58, .external_lex_state = 3}, - [1333] = {.lex_state = 58, .external_lex_state = 3}, - [1334] = {.lex_state = 58, .external_lex_state = 3}, - [1335] = {.lex_state = 58, .external_lex_state = 3}, - [1336] = {.lex_state = 58, .external_lex_state = 3}, - [1337] = {.lex_state = 58, .external_lex_state = 3}, - [1338] = {.lex_state = 58, .external_lex_state = 3}, - [1339] = {.lex_state = 58, .external_lex_state = 3}, - [1340] = {.lex_state = 58, .external_lex_state = 3}, - [1341] = {.lex_state = 58, .external_lex_state = 3}, - [1342] = {.lex_state = 58, .external_lex_state = 3}, - [1343] = {.lex_state = 58, .external_lex_state = 3}, - [1344] = {.lex_state = 58, .external_lex_state = 3}, - [1345] = {.lex_state = 58, .external_lex_state = 3}, - [1346] = {.lex_state = 58, .external_lex_state = 3}, - [1347] = {.lex_state = 58, .external_lex_state = 3}, - [1348] = {.lex_state = 58, .external_lex_state = 3}, - [1349] = {.lex_state = 58, .external_lex_state = 3}, - [1350] = {.lex_state = 58, .external_lex_state = 3}, - [1351] = {.lex_state = 58, .external_lex_state = 3}, - [1352] = {.lex_state = 58, .external_lex_state = 3}, - [1353] = {.lex_state = 58, .external_lex_state = 3}, - [1354] = {.lex_state = 58, .external_lex_state = 3}, - [1355] = {.lex_state = 58, .external_lex_state = 3}, - [1356] = {.lex_state = 58, .external_lex_state = 3}, - [1357] = {.lex_state = 58, .external_lex_state = 3}, - [1358] = {.lex_state = 20, .external_lex_state = 3}, - [1359] = {.lex_state = 58, .external_lex_state = 3}, - [1360] = {.lex_state = 58, .external_lex_state = 3}, - [1361] = {.lex_state = 58, .external_lex_state = 3}, - [1362] = {.lex_state = 58, .external_lex_state = 3}, - [1363] = {.lex_state = 58, .external_lex_state = 3}, - [1364] = {.lex_state = 58, .external_lex_state = 3}, - [1365] = {.lex_state = 58, .external_lex_state = 3}, - [1366] = {.lex_state = 19, .external_lex_state = 4}, - [1367] = {.lex_state = 58, .external_lex_state = 3}, - [1368] = {.lex_state = 58, .external_lex_state = 3}, - [1369] = {.lex_state = 18, .external_lex_state = 3}, - [1370] = {.lex_state = 58, .external_lex_state = 3}, - [1371] = {.lex_state = 58, .external_lex_state = 3}, - [1372] = {.lex_state = 58, .external_lex_state = 3}, - [1373] = {.lex_state = 58, .external_lex_state = 3}, - [1374] = {.lex_state = 58, .external_lex_state = 3}, - [1375] = {.lex_state = 58, .external_lex_state = 3}, - [1376] = {.lex_state = 19, .external_lex_state = 3}, - [1377] = {.lex_state = 58, .external_lex_state = 3}, - [1378] = {.lex_state = 19, .external_lex_state = 4}, - [1379] = {.lex_state = 58, .external_lex_state = 3}, - [1380] = {.lex_state = 19, .external_lex_state = 3}, - [1381] = {.lex_state = 58, .external_lex_state = 3}, - [1382] = {.lex_state = 19, .external_lex_state = 3}, - [1383] = {.lex_state = 58, .external_lex_state = 3}, - [1384] = {.lex_state = 58, .external_lex_state = 3}, - [1385] = {.lex_state = 21, .external_lex_state = 3}, - [1386] = {.lex_state = 58, .external_lex_state = 3}, - [1387] = {.lex_state = 58, .external_lex_state = 3}, - [1388] = {.lex_state = 58, .external_lex_state = 3}, - [1389] = {.lex_state = 58, .external_lex_state = 3}, - [1390] = {.lex_state = 58, .external_lex_state = 3}, - [1391] = {.lex_state = 58, .external_lex_state = 3}, - [1392] = {.lex_state = 58, .external_lex_state = 3}, - [1393] = {.lex_state = 58, .external_lex_state = 3}, - [1394] = {.lex_state = 58, .external_lex_state = 3}, - [1395] = {.lex_state = 58, .external_lex_state = 3}, - [1396] = {.lex_state = 58, .external_lex_state = 3}, - [1397] = {.lex_state = 19, .external_lex_state = 3}, - [1398] = {.lex_state = 58, .external_lex_state = 3}, - [1399] = {.lex_state = 58, .external_lex_state = 3}, - [1400] = {.lex_state = 58, .external_lex_state = 3}, - [1401] = {.lex_state = 19, .external_lex_state = 3}, - [1402] = {.lex_state = 21, .external_lex_state = 3}, - [1403] = {.lex_state = 58, .external_lex_state = 3}, - [1404] = {.lex_state = 58, .external_lex_state = 3}, - [1405] = {.lex_state = 58, .external_lex_state = 3}, - [1406] = {.lex_state = 58, .external_lex_state = 3}, - [1407] = {.lex_state = 58, .external_lex_state = 3}, - [1408] = {.lex_state = 58, .external_lex_state = 3}, - [1409] = {.lex_state = 58, .external_lex_state = 3}, - [1410] = {.lex_state = 28, .external_lex_state = 4}, - [1411] = {.lex_state = 20, .external_lex_state = 3}, - [1412] = {.lex_state = 28, .external_lex_state = 4}, - [1413] = {.lex_state = 19, .external_lex_state = 3}, - [1414] = {.lex_state = 19, .external_lex_state = 4}, - [1415] = {.lex_state = 25, .external_lex_state = 3}, - [1416] = {.lex_state = 19, .external_lex_state = 3}, - [1417] = {.lex_state = 19, .external_lex_state = 3}, - [1418] = {.lex_state = 268, .external_lex_state = 2}, - [1419] = {.lex_state = 19, .external_lex_state = 3}, - [1420] = {.lex_state = 19, .external_lex_state = 3}, - [1421] = {.lex_state = 19, .external_lex_state = 3}, - [1422] = {.lex_state = 19, .external_lex_state = 3}, - [1423] = {.lex_state = 19, .external_lex_state = 3}, - [1424] = {.lex_state = 19, .external_lex_state = 3}, - [1425] = {.lex_state = 19, .external_lex_state = 3}, - [1426] = {.lex_state = 19, .external_lex_state = 3}, - [1427] = {.lex_state = 19, .external_lex_state = 3}, - [1428] = {.lex_state = 19, .external_lex_state = 3}, - [1429] = {.lex_state = 19, .external_lex_state = 3}, - [1430] = {.lex_state = 19, .external_lex_state = 3}, - [1431] = {.lex_state = 19, .external_lex_state = 3}, - [1432] = {.lex_state = 19, .external_lex_state = 3}, - [1433] = {.lex_state = 19, .external_lex_state = 3}, - [1434] = {.lex_state = 19, .external_lex_state = 3}, - [1435] = {.lex_state = 19, .external_lex_state = 3}, - [1436] = {.lex_state = 19, .external_lex_state = 3}, - [1437] = {.lex_state = 31, .external_lex_state = 4}, - [1438] = {.lex_state = 19, .external_lex_state = 3}, - [1439] = {.lex_state = 19, .external_lex_state = 3}, - [1440] = {.lex_state = 19, .external_lex_state = 3}, - [1441] = {.lex_state = 19, .external_lex_state = 3}, - [1442] = {.lex_state = 19, .external_lex_state = 4}, - [1443] = {.lex_state = 19, .external_lex_state = 3}, - [1444] = {.lex_state = 19, .external_lex_state = 3}, - [1445] = {.lex_state = 19, .external_lex_state = 4}, - [1446] = {.lex_state = 19, .external_lex_state = 3}, - [1447] = {.lex_state = 19, .external_lex_state = 3}, - [1448] = {.lex_state = 19, .external_lex_state = 3}, - [1449] = {.lex_state = 19, .external_lex_state = 3}, - [1450] = {.lex_state = 19, .external_lex_state = 3}, - [1451] = {.lex_state = 19, .external_lex_state = 3}, - [1452] = {.lex_state = 19, .external_lex_state = 3}, - [1453] = {.lex_state = 19, .external_lex_state = 4}, - [1454] = {.lex_state = 19, .external_lex_state = 3}, - [1455] = {.lex_state = 19, .external_lex_state = 3}, - [1456] = {.lex_state = 19, .external_lex_state = 3}, - [1457] = {.lex_state = 19, .external_lex_state = 3}, - [1458] = {.lex_state = 19, .external_lex_state = 3}, - [1459] = {.lex_state = 19, .external_lex_state = 3}, - [1460] = {.lex_state = 19, .external_lex_state = 3}, - [1461] = {.lex_state = 19, .external_lex_state = 3}, - [1462] = {.lex_state = 19, .external_lex_state = 3}, - [1463] = {.lex_state = 19, .external_lex_state = 3}, - [1464] = {.lex_state = 19, .external_lex_state = 3}, - [1465] = {.lex_state = 19, .external_lex_state = 3}, - [1466] = {.lex_state = 19, .external_lex_state = 3}, - [1467] = {.lex_state = 19, .external_lex_state = 3}, - [1468] = {.lex_state = 19, .external_lex_state = 3}, - [1469] = {.lex_state = 19, .external_lex_state = 3}, - [1470] = {.lex_state = 19, .external_lex_state = 3}, - [1471] = {.lex_state = 19, .external_lex_state = 4}, - [1472] = {.lex_state = 19, .external_lex_state = 3}, - [1473] = {.lex_state = 19, .external_lex_state = 3}, - [1474] = {.lex_state = 19, .external_lex_state = 3}, - [1475] = {.lex_state = 19, .external_lex_state = 3}, - [1476] = {.lex_state = 19, .external_lex_state = 3}, - [1477] = {.lex_state = 20, .external_lex_state = 3}, - [1478] = {.lex_state = 19, .external_lex_state = 3}, - [1479] = {.lex_state = 19, .external_lex_state = 3}, - [1480] = {.lex_state = 19, .external_lex_state = 3}, - [1481] = {.lex_state = 19, .external_lex_state = 3}, - [1482] = {.lex_state = 19, .external_lex_state = 3}, - [1483] = {.lex_state = 19, .external_lex_state = 3}, - [1484] = {.lex_state = 19, .external_lex_state = 3}, - [1485] = {.lex_state = 268, .external_lex_state = 2}, - [1486] = {.lex_state = 19, .external_lex_state = 3}, - [1487] = {.lex_state = 19, .external_lex_state = 3}, - [1488] = {.lex_state = 19, .external_lex_state = 3}, - [1489] = {.lex_state = 19, .external_lex_state = 3}, - [1490] = {.lex_state = 19, .external_lex_state = 3}, - [1491] = {.lex_state = 19, .external_lex_state = 4}, - [1492] = {.lex_state = 19, .external_lex_state = 3}, - [1493] = {.lex_state = 19, .external_lex_state = 3}, - [1494] = {.lex_state = 19, .external_lex_state = 3}, - [1495] = {.lex_state = 19, .external_lex_state = 3}, - [1496] = {.lex_state = 19, .external_lex_state = 3}, - [1497] = {.lex_state = 19, .external_lex_state = 3}, - [1498] = {.lex_state = 19, .external_lex_state = 3}, - [1499] = {.lex_state = 19, .external_lex_state = 3}, - [1500] = {.lex_state = 19, .external_lex_state = 3}, - [1501] = {.lex_state = 19, .external_lex_state = 3}, - [1502] = {.lex_state = 19, .external_lex_state = 3}, - [1503] = {.lex_state = 19, .external_lex_state = 3}, - [1504] = {.lex_state = 19, .external_lex_state = 3}, - [1505] = {.lex_state = 19, .external_lex_state = 3}, - [1506] = {.lex_state = 19, .external_lex_state = 3}, - [1507] = {.lex_state = 19, .external_lex_state = 3}, - [1508] = {.lex_state = 19, .external_lex_state = 3}, - [1509] = {.lex_state = 19, .external_lex_state = 3}, - [1510] = {.lex_state = 19, .external_lex_state = 3}, - [1511] = {.lex_state = 15, .external_lex_state = 3}, - [1512] = {.lex_state = 20, .external_lex_state = 3}, - [1513] = {.lex_state = 20, .external_lex_state = 3}, - [1514] = {.lex_state = 20, .external_lex_state = 3}, - [1515] = {.lex_state = 20, .external_lex_state = 3}, - [1516] = {.lex_state = 20, .external_lex_state = 3}, - [1517] = {.lex_state = 19, .external_lex_state = 3}, - [1518] = {.lex_state = 19, .external_lex_state = 3}, - [1519] = {.lex_state = 20, .external_lex_state = 3}, - [1520] = {.lex_state = 37, .external_lex_state = 3}, - [1521] = {.lex_state = 19, .external_lex_state = 3}, - [1522] = {.lex_state = 21, .external_lex_state = 4}, - [1523] = {.lex_state = 19, .external_lex_state = 3}, - [1524] = {.lex_state = 20, .external_lex_state = 3}, - [1525] = {.lex_state = 19, .external_lex_state = 4}, - [1526] = {.lex_state = 19, .external_lex_state = 4}, - [1527] = {.lex_state = 19, .external_lex_state = 4}, - [1528] = {.lex_state = 37, .external_lex_state = 3}, - [1529] = {.lex_state = 19, .external_lex_state = 3}, - [1530] = {.lex_state = 19, .external_lex_state = 3}, - [1531] = {.lex_state = 19, .external_lex_state = 4}, - [1532] = {.lex_state = 19, .external_lex_state = 3}, - [1533] = {.lex_state = 19, .external_lex_state = 3}, - [1534] = {.lex_state = 15, .external_lex_state = 3}, - [1535] = {.lex_state = 12, .external_lex_state = 3}, - [1536] = {.lex_state = 19, .external_lex_state = 3}, - [1537] = {.lex_state = 20, .external_lex_state = 3}, - [1538] = {.lex_state = 19, .external_lex_state = 4}, - [1539] = {.lex_state = 20, .external_lex_state = 3}, - [1540] = {.lex_state = 19, .external_lex_state = 4}, - [1541] = {.lex_state = 12, .external_lex_state = 3}, - [1542] = {.lex_state = 20, .external_lex_state = 3}, - [1543] = {.lex_state = 20, .external_lex_state = 3}, - [1544] = {.lex_state = 19, .external_lex_state = 4}, - [1545] = {.lex_state = 21, .external_lex_state = 4}, - [1546] = {.lex_state = 19, .external_lex_state = 4}, - [1547] = {.lex_state = 268, .external_lex_state = 2}, - [1548] = {.lex_state = 13, .external_lex_state = 3}, - [1549] = {.lex_state = 19, .external_lex_state = 4}, - [1550] = {.lex_state = 19, .external_lex_state = 4}, - [1551] = {.lex_state = 19, .external_lex_state = 4}, - [1552] = {.lex_state = 19, .external_lex_state = 4}, - [1553] = {.lex_state = 19, .external_lex_state = 4}, - [1554] = {.lex_state = 19, .external_lex_state = 4}, - [1555] = {.lex_state = 20, .external_lex_state = 3}, - [1556] = {.lex_state = 20, .external_lex_state = 3}, - [1557] = {.lex_state = 20, .external_lex_state = 3}, - [1558] = {.lex_state = 19, .external_lex_state = 3}, - [1559] = {.lex_state = 20, .external_lex_state = 3}, - [1560] = {.lex_state = 19, .external_lex_state = 3}, - [1561] = {.lex_state = 19, .external_lex_state = 3}, - [1562] = {.lex_state = 19, .external_lex_state = 3}, - [1563] = {.lex_state = 19, .external_lex_state = 3}, - [1564] = {.lex_state = 19, .external_lex_state = 4}, - [1565] = {.lex_state = 19, .external_lex_state = 4}, - [1566] = {.lex_state = 19, .external_lex_state = 4}, - [1567] = {.lex_state = 19, .external_lex_state = 4}, - [1568] = {.lex_state = 20, .external_lex_state = 3}, - [1569] = {.lex_state = 268, .external_lex_state = 2}, - [1570] = {.lex_state = 19, .external_lex_state = 4}, - [1571] = {.lex_state = 19, .external_lex_state = 4}, - [1572] = {.lex_state = 13, .external_lex_state = 3}, - [1573] = {.lex_state = 23, .external_lex_state = 3}, - [1574] = {.lex_state = 37, .external_lex_state = 3}, - [1575] = {.lex_state = 19, .external_lex_state = 4}, - [1576] = {.lex_state = 19, .external_lex_state = 4}, - [1577] = {.lex_state = 20, .external_lex_state = 3}, - [1578] = {.lex_state = 19, .external_lex_state = 4}, - [1579] = {.lex_state = 13, .external_lex_state = 3}, - [1580] = {.lex_state = 19, .external_lex_state = 4}, - [1581] = {.lex_state = 19, .external_lex_state = 4}, - [1582] = {.lex_state = 20, .external_lex_state = 3}, - [1583] = {.lex_state = 20, .external_lex_state = 3}, - [1584] = {.lex_state = 19, .external_lex_state = 4}, - [1585] = {.lex_state = 19, .external_lex_state = 4}, - [1586] = {.lex_state = 20, .external_lex_state = 3}, - [1587] = {.lex_state = 20, .external_lex_state = 3}, - [1588] = {.lex_state = 13, .external_lex_state = 3}, - [1589] = {.lex_state = 19, .external_lex_state = 4}, - [1590] = {.lex_state = 20, .external_lex_state = 3}, - [1591] = {.lex_state = 20, .external_lex_state = 3}, - [1592] = {.lex_state = 20, .external_lex_state = 3}, - [1593] = {.lex_state = 18, .external_lex_state = 3}, - [1594] = {.lex_state = 13, .external_lex_state = 3}, - [1595] = {.lex_state = 18, .external_lex_state = 3}, - [1596] = {.lex_state = 19, .external_lex_state = 4}, - [1597] = {.lex_state = 20, .external_lex_state = 3}, - [1598] = {.lex_state = 20, .external_lex_state = 3}, - [1599] = {.lex_state = 13, .external_lex_state = 3}, - [1600] = {.lex_state = 20, .external_lex_state = 3}, - [1601] = {.lex_state = 20, .external_lex_state = 3}, - [1602] = {.lex_state = 18, .external_lex_state = 3}, - [1603] = {.lex_state = 19, .external_lex_state = 4}, - [1604] = {.lex_state = 19, .external_lex_state = 3}, - [1605] = {.lex_state = 20, .external_lex_state = 3}, - [1606] = {.lex_state = 20, .external_lex_state = 3}, - [1607] = {.lex_state = 20, .external_lex_state = 3}, - [1608] = {.lex_state = 20, .external_lex_state = 3}, - [1609] = {.lex_state = 20, .external_lex_state = 3}, - [1610] = {.lex_state = 20, .external_lex_state = 3}, - [1611] = {.lex_state = 20, .external_lex_state = 3}, - [1612] = {.lex_state = 20, .external_lex_state = 3}, - [1613] = {.lex_state = 20, .external_lex_state = 3}, - [1614] = {.lex_state = 20, .external_lex_state = 3}, - [1615] = {.lex_state = 20, .external_lex_state = 3}, - [1616] = {.lex_state = 24, .external_lex_state = 3}, - [1617] = {.lex_state = 19, .external_lex_state = 4}, - [1618] = {.lex_state = 20, .external_lex_state = 3}, - [1619] = {.lex_state = 20, .external_lex_state = 3}, - [1620] = {.lex_state = 20, .external_lex_state = 3}, - [1621] = {.lex_state = 20, .external_lex_state = 3}, - [1622] = {.lex_state = 19, .external_lex_state = 3}, - [1623] = {.lex_state = 20, .external_lex_state = 3}, - [1624] = {.lex_state = 20, .external_lex_state = 3}, - [1625] = {.lex_state = 20, .external_lex_state = 3}, - [1626] = {.lex_state = 19, .external_lex_state = 4}, - [1627] = {.lex_state = 20, .external_lex_state = 3}, - [1628] = {.lex_state = 20, .external_lex_state = 3}, - [1629] = {.lex_state = 20, .external_lex_state = 3}, - [1630] = {.lex_state = 20, .external_lex_state = 3}, - [1631] = {.lex_state = 20, .external_lex_state = 3}, - [1632] = {.lex_state = 20, .external_lex_state = 3}, - [1633] = {.lex_state = 20, .external_lex_state = 3}, - [1634] = {.lex_state = 20, .external_lex_state = 3}, - [1635] = {.lex_state = 20, .external_lex_state = 3}, - [1636] = {.lex_state = 20, .external_lex_state = 3}, - [1637] = {.lex_state = 20, .external_lex_state = 3}, - [1638] = {.lex_state = 20, .external_lex_state = 3}, - [1639] = {.lex_state = 20, .external_lex_state = 3}, - [1640] = {.lex_state = 19, .external_lex_state = 4}, - [1641] = {.lex_state = 19, .external_lex_state = 4}, - [1642] = {.lex_state = 19, .external_lex_state = 4}, - [1643] = {.lex_state = 20, .external_lex_state = 3}, - [1644] = {.lex_state = 19, .external_lex_state = 4}, - [1645] = {.lex_state = 20, .external_lex_state = 3}, - [1646] = {.lex_state = 19, .external_lex_state = 4}, - [1647] = {.lex_state = 13, .external_lex_state = 3}, - [1648] = {.lex_state = 13, .external_lex_state = 3}, - [1649] = {.lex_state = 13, .external_lex_state = 3}, - [1650] = {.lex_state = 13, .external_lex_state = 3}, - [1651] = {.lex_state = 13, .external_lex_state = 3}, - [1652] = {.lex_state = 13, .external_lex_state = 3}, - [1653] = {.lex_state = 13, .external_lex_state = 3}, - [1654] = {.lex_state = 19, .external_lex_state = 4}, - [1655] = {.lex_state = 19, .external_lex_state = 4}, - [1656] = {.lex_state = 19, .external_lex_state = 4}, - [1657] = {.lex_state = 19, .external_lex_state = 4}, - [1658] = {.lex_state = 19, .external_lex_state = 4}, - [1659] = {.lex_state = 20, .external_lex_state = 3}, - [1660] = {.lex_state = 20, .external_lex_state = 3}, - [1661] = {.lex_state = 19, .external_lex_state = 4}, - [1662] = {.lex_state = 19, .external_lex_state = 4}, - [1663] = {.lex_state = 19, .external_lex_state = 4}, - [1664] = {.lex_state = 19, .external_lex_state = 4}, - [1665] = {.lex_state = 19, .external_lex_state = 4}, - [1666] = {.lex_state = 19, .external_lex_state = 4}, - [1667] = {.lex_state = 19, .external_lex_state = 4}, - [1668] = {.lex_state = 19, .external_lex_state = 4}, - [1669] = {.lex_state = 19, .external_lex_state = 4}, - [1670] = {.lex_state = 13, .external_lex_state = 3}, - [1671] = {.lex_state = 13, .external_lex_state = 3}, - [1672] = {.lex_state = 19, .external_lex_state = 4}, - [1673] = {.lex_state = 20, .external_lex_state = 3}, - [1674] = {.lex_state = 19, .external_lex_state = 4}, - [1675] = {.lex_state = 19, .external_lex_state = 3}, - [1676] = {.lex_state = 13, .external_lex_state = 3}, - [1677] = {.lex_state = 13, .external_lex_state = 3}, - [1678] = {.lex_state = 19, .external_lex_state = 3}, - [1679] = {.lex_state = 19, .external_lex_state = 3}, - [1680] = {.lex_state = 13, .external_lex_state = 3}, - [1681] = {.lex_state = 13, .external_lex_state = 3}, - [1682] = {.lex_state = 13, .external_lex_state = 3}, - [1683] = {.lex_state = 13, .external_lex_state = 3}, - [1684] = {.lex_state = 19, .external_lex_state = 4}, - [1685] = {.lex_state = 13, .external_lex_state = 3}, - [1686] = {.lex_state = 13, .external_lex_state = 3}, - [1687] = {.lex_state = 13, .external_lex_state = 3}, - [1688] = {.lex_state = 19, .external_lex_state = 4}, - [1689] = {.lex_state = 19, .external_lex_state = 4}, - [1690] = {.lex_state = 13, .external_lex_state = 3}, - [1691] = {.lex_state = 13, .external_lex_state = 3}, - [1692] = {.lex_state = 13, .external_lex_state = 3}, - [1693] = {.lex_state = 13, .external_lex_state = 3}, - [1694] = {.lex_state = 13, .external_lex_state = 3}, - [1695] = {.lex_state = 13, .external_lex_state = 3}, - [1696] = {.lex_state = 19, .external_lex_state = 4}, - [1697] = {.lex_state = 19, .external_lex_state = 4}, - [1698] = {.lex_state = 13, .external_lex_state = 3}, - [1699] = {.lex_state = 13, .external_lex_state = 3}, - [1700] = {.lex_state = 21, .external_lex_state = 3}, - [1701] = {.lex_state = 18, .external_lex_state = 3}, - [1702] = {.lex_state = 13, .external_lex_state = 3}, - [1703] = {.lex_state = 19, .external_lex_state = 4}, - [1704] = {.lex_state = 19, .external_lex_state = 3}, - [1705] = {.lex_state = 19, .external_lex_state = 3}, - [1706] = {.lex_state = 19, .external_lex_state = 4}, - [1707] = {.lex_state = 13, .external_lex_state = 3}, - [1708] = {.lex_state = 13, .external_lex_state = 3}, - [1709] = {.lex_state = 13, .external_lex_state = 3}, - [1710] = {.lex_state = 13, .external_lex_state = 3}, - [1711] = {.lex_state = 13, .external_lex_state = 3}, - [1712] = {.lex_state = 19, .external_lex_state = 3}, - [1713] = {.lex_state = 29, .external_lex_state = 4}, - [1714] = {.lex_state = 13, .external_lex_state = 3}, - [1715] = {.lex_state = 13, .external_lex_state = 3}, - [1716] = {.lex_state = 13, .external_lex_state = 3}, - [1717] = {.lex_state = 18, .external_lex_state = 3}, - [1718] = {.lex_state = 19, .external_lex_state = 4}, - [1719] = {.lex_state = 13, .external_lex_state = 3}, - [1720] = {.lex_state = 13, .external_lex_state = 3}, - [1721] = {.lex_state = 18, .external_lex_state = 3}, - [1722] = {.lex_state = 58, .external_lex_state = 3}, - [1723] = {.lex_state = 13, .external_lex_state = 3}, - [1724] = {.lex_state = 58, .external_lex_state = 3}, - [1725] = {.lex_state = 13, .external_lex_state = 3}, - [1726] = {.lex_state = 19, .external_lex_state = 4}, - [1727] = {.lex_state = 19, .external_lex_state = 4}, - [1728] = {.lex_state = 13, .external_lex_state = 3}, - [1729] = {.lex_state = 19, .external_lex_state = 4}, - [1730] = {.lex_state = 13, .external_lex_state = 4}, - [1731] = {.lex_state = 19, .external_lex_state = 3}, - [1732] = {.lex_state = 13, .external_lex_state = 3}, - [1733] = {.lex_state = 13, .external_lex_state = 3}, - [1734] = {.lex_state = 13, .external_lex_state = 3}, - [1735] = {.lex_state = 18, .external_lex_state = 3}, - [1736] = {.lex_state = 18, .external_lex_state = 3}, - [1737] = {.lex_state = 13, .external_lex_state = 3}, - [1738] = {.lex_state = 35, .external_lex_state = 3}, - [1739] = {.lex_state = 13, .external_lex_state = 3}, - [1740] = {.lex_state = 13, .external_lex_state = 3}, - [1741] = {.lex_state = 13, .external_lex_state = 3}, - [1742] = {.lex_state = 13, .external_lex_state = 3}, - [1743] = {.lex_state = 19, .external_lex_state = 4}, - [1744] = {.lex_state = 19, .external_lex_state = 4}, - [1745] = {.lex_state = 13, .external_lex_state = 3}, - [1746] = {.lex_state = 18, .external_lex_state = 3}, - [1747] = {.lex_state = 19, .external_lex_state = 4}, - [1748] = {.lex_state = 58, .external_lex_state = 3}, - [1749] = {.lex_state = 13, .external_lex_state = 3}, - [1750] = {.lex_state = 18, .external_lex_state = 3}, - [1751] = {.lex_state = 19, .external_lex_state = 4}, - [1752] = {.lex_state = 19, .external_lex_state = 3}, - [1753] = {.lex_state = 58, .external_lex_state = 3}, - [1754] = {.lex_state = 19, .external_lex_state = 4}, - [1755] = {.lex_state = 13, .external_lex_state = 3}, - [1756] = {.lex_state = 13, .external_lex_state = 3}, - [1757] = {.lex_state = 13, .external_lex_state = 3}, - [1758] = {.lex_state = 35, .external_lex_state = 3}, - [1759] = {.lex_state = 13, .external_lex_state = 3}, - [1760] = {.lex_state = 13, .external_lex_state = 3}, - [1761] = {.lex_state = 13, .external_lex_state = 3}, - [1762] = {.lex_state = 13, .external_lex_state = 3}, - [1763] = {.lex_state = 13, .external_lex_state = 3}, - [1764] = {.lex_state = 19, .external_lex_state = 4}, - [1765] = {.lex_state = 19, .external_lex_state = 4}, - [1766] = {.lex_state = 13, .external_lex_state = 3}, - [1767] = {.lex_state = 13, .external_lex_state = 3}, - [1768] = {.lex_state = 13, .external_lex_state = 3}, - [1769] = {.lex_state = 58, .external_lex_state = 3}, - [1770] = {.lex_state = 13, .external_lex_state = 3}, - [1771] = {.lex_state = 58, .external_lex_state = 3}, - [1772] = {.lex_state = 13, .external_lex_state = 3}, - [1773] = {.lex_state = 19, .external_lex_state = 3}, - [1774] = {.lex_state = 13, .external_lex_state = 3}, - [1775] = {.lex_state = 19, .external_lex_state = 4}, - [1776] = {.lex_state = 19, .external_lex_state = 4}, - [1777] = {.lex_state = 13, .external_lex_state = 3}, - [1778] = {.lex_state = 13, .external_lex_state = 3}, - [1779] = {.lex_state = 13, .external_lex_state = 3}, - [1780] = {.lex_state = 19, .external_lex_state = 4}, - [1781] = {.lex_state = 19, .external_lex_state = 4}, - [1782] = {.lex_state = 13, .external_lex_state = 3}, - [1783] = {.lex_state = 19, .external_lex_state = 4}, - [1784] = {.lex_state = 19, .external_lex_state = 4}, - [1785] = {.lex_state = 58, .external_lex_state = 3}, - [1786] = {.lex_state = 19, .external_lex_state = 4}, - [1787] = {.lex_state = 19, .external_lex_state = 4}, - [1788] = {.lex_state = 19, .external_lex_state = 4}, - [1789] = {.lex_state = 19, .external_lex_state = 4}, - [1790] = {.lex_state = 19, .external_lex_state = 4}, - [1791] = {.lex_state = 19, .external_lex_state = 4}, - [1792] = {.lex_state = 19, .external_lex_state = 4}, - [1793] = {.lex_state = 19, .external_lex_state = 4}, - [1794] = {.lex_state = 19, .external_lex_state = 4}, - [1795] = {.lex_state = 19, .external_lex_state = 4}, - [1796] = {.lex_state = 58, .external_lex_state = 3}, - [1797] = {.lex_state = 19, .external_lex_state = 3}, - [1798] = {.lex_state = 19, .external_lex_state = 4}, - [1799] = {.lex_state = 19, .external_lex_state = 4}, - [1800] = {.lex_state = 19, .external_lex_state = 4}, - [1801] = {.lex_state = 19, .external_lex_state = 4}, - [1802] = {.lex_state = 19, .external_lex_state = 4}, - [1803] = {.lex_state = 19, .external_lex_state = 4}, - [1804] = {.lex_state = 19, .external_lex_state = 4}, - [1805] = {.lex_state = 23, .external_lex_state = 4}, - [1806] = {.lex_state = 13, .external_lex_state = 4}, - [1807] = {.lex_state = 18, .external_lex_state = 3}, - [1808] = {.lex_state = 58, .external_lex_state = 3}, - [1809] = {.lex_state = 20, .external_lex_state = 3}, - [1810] = {.lex_state = 19, .external_lex_state = 4}, - [1811] = {.lex_state = 18, .external_lex_state = 3}, - [1812] = {.lex_state = 58, .external_lex_state = 3}, - [1813] = {.lex_state = 19, .external_lex_state = 4}, - [1814] = {.lex_state = 18, .external_lex_state = 3}, - [1815] = {.lex_state = 37, .external_lex_state = 3}, - [1816] = {.lex_state = 19, .external_lex_state = 3}, - [1817] = {.lex_state = 34, .external_lex_state = 3}, - [1818] = {.lex_state = 13, .external_lex_state = 4}, - [1819] = {.lex_state = 58, .external_lex_state = 3}, - [1820] = {.lex_state = 19, .external_lex_state = 4}, - [1821] = {.lex_state = 13, .external_lex_state = 3}, - [1822] = {.lex_state = 19, .external_lex_state = 4}, - [1823] = {.lex_state = 19, .external_lex_state = 3}, - [1824] = {.lex_state = 19, .external_lex_state = 4}, - [1825] = {.lex_state = 19, .external_lex_state = 3}, - [1826] = {.lex_state = 19, .external_lex_state = 4}, - [1827] = {.lex_state = 19, .external_lex_state = 4}, - [1828] = {.lex_state = 19, .external_lex_state = 4}, - [1829] = {.lex_state = 19, .external_lex_state = 4}, - [1830] = {.lex_state = 19, .external_lex_state = 3}, - [1831] = {.lex_state = 19, .external_lex_state = 4}, - [1832] = {.lex_state = 19, .external_lex_state = 4}, - [1833] = {.lex_state = 19, .external_lex_state = 3}, - [1834] = {.lex_state = 19, .external_lex_state = 3}, - [1835] = {.lex_state = 19, .external_lex_state = 3}, - [1836] = {.lex_state = 37, .external_lex_state = 3}, - [1837] = {.lex_state = 19, .external_lex_state = 4}, - [1838] = {.lex_state = 19, .external_lex_state = 4}, - [1839] = {.lex_state = 19, .external_lex_state = 4}, - [1840] = {.lex_state = 34, .external_lex_state = 3}, - [1841] = {.lex_state = 19, .external_lex_state = 4}, - [1842] = {.lex_state = 19, .external_lex_state = 4}, - [1843] = {.lex_state = 19, .external_lex_state = 4}, - [1844] = {.lex_state = 19, .external_lex_state = 4}, - [1845] = {.lex_state = 19, .external_lex_state = 4}, - [1846] = {.lex_state = 19, .external_lex_state = 4}, - [1847] = {.lex_state = 18, .external_lex_state = 3}, - [1848] = {.lex_state = 19, .external_lex_state = 4}, - [1849] = {.lex_state = 19, .external_lex_state = 4}, - [1850] = {.lex_state = 19, .external_lex_state = 4}, - [1851] = {.lex_state = 19, .external_lex_state = 4}, - [1852] = {.lex_state = 19, .external_lex_state = 4}, - [1853] = {.lex_state = 19, .external_lex_state = 4}, - [1854] = {.lex_state = 58, .external_lex_state = 3}, - [1855] = {.lex_state = 19, .external_lex_state = 3}, - [1856] = {.lex_state = 19, .external_lex_state = 4}, - [1857] = {.lex_state = 19, .external_lex_state = 4}, - [1858] = {.lex_state = 19, .external_lex_state = 4}, - [1859] = {.lex_state = 19, .external_lex_state = 4}, - [1860] = {.lex_state = 36, .external_lex_state = 3}, - [1861] = {.lex_state = 13, .external_lex_state = 3}, - [1862] = {.lex_state = 13, .external_lex_state = 3}, - [1863] = {.lex_state = 13, .external_lex_state = 3}, - [1864] = {.lex_state = 19, .external_lex_state = 4}, - [1865] = {.lex_state = 19, .external_lex_state = 4}, - [1866] = {.lex_state = 19, .external_lex_state = 4}, - [1867] = {.lex_state = 13, .external_lex_state = 3}, - [1868] = {.lex_state = 19, .external_lex_state = 4}, - [1869] = {.lex_state = 19, .external_lex_state = 4}, - [1870] = {.lex_state = 18, .external_lex_state = 3}, - [1871] = {.lex_state = 19, .external_lex_state = 4}, - [1872] = {.lex_state = 28, .external_lex_state = 4}, - [1873] = {.lex_state = 13, .external_lex_state = 3}, - [1874] = {.lex_state = 58, .external_lex_state = 3}, - [1875] = {.lex_state = 19, .external_lex_state = 3}, - [1876] = {.lex_state = 19, .external_lex_state = 4}, - [1877] = {.lex_state = 19, .external_lex_state = 4}, - [1878] = {.lex_state = 19, .external_lex_state = 4}, - [1879] = {.lex_state = 18, .external_lex_state = 3}, - [1880] = {.lex_state = 19, .external_lex_state = 4}, - [1881] = {.lex_state = 19, .external_lex_state = 4}, - [1882] = {.lex_state = 19, .external_lex_state = 4}, - [1883] = {.lex_state = 19, .external_lex_state = 4}, - [1884] = {.lex_state = 19, .external_lex_state = 4}, - [1885] = {.lex_state = 19, .external_lex_state = 4}, - [1886] = {.lex_state = 37, .external_lex_state = 3}, - [1887] = {.lex_state = 19, .external_lex_state = 4}, - [1888] = {.lex_state = 19, .external_lex_state = 4}, - [1889] = {.lex_state = 19, .external_lex_state = 4}, - [1890] = {.lex_state = 19, .external_lex_state = 3}, - [1891] = {.lex_state = 19, .external_lex_state = 3}, - [1892] = {.lex_state = 19, .external_lex_state = 3}, - [1893] = {.lex_state = 19, .external_lex_state = 3}, - [1894] = {.lex_state = 19, .external_lex_state = 3}, - [1895] = {.lex_state = 19, .external_lex_state = 3}, - [1896] = {.lex_state = 19, .external_lex_state = 4}, - [1897] = {.lex_state = 19, .external_lex_state = 4}, - [1898] = {.lex_state = 19, .external_lex_state = 4}, - [1899] = {.lex_state = 19, .external_lex_state = 3}, - [1900] = {.lex_state = 19, .external_lex_state = 4}, - [1901] = {.lex_state = 19, .external_lex_state = 4}, - [1902] = {.lex_state = 19, .external_lex_state = 4}, - [1903] = {.lex_state = 19, .external_lex_state = 4}, - [1904] = {.lex_state = 19, .external_lex_state = 4}, - [1905] = {.lex_state = 19, .external_lex_state = 4}, - [1906] = {.lex_state = 19, .external_lex_state = 4}, - [1907] = {.lex_state = 19, .external_lex_state = 3}, - [1908] = {.lex_state = 19, .external_lex_state = 4}, - [1909] = {.lex_state = 19, .external_lex_state = 4}, - [1910] = {.lex_state = 37, .external_lex_state = 3}, - [1911] = {.lex_state = 13, .external_lex_state = 3}, - [1912] = {.lex_state = 18, .external_lex_state = 3}, - [1913] = {.lex_state = 19, .external_lex_state = 4}, - [1914] = {.lex_state = 13, .external_lex_state = 3}, - [1915] = {.lex_state = 18, .external_lex_state = 3}, - [1916] = {.lex_state = 18, .external_lex_state = 3}, - [1917] = {.lex_state = 13, .external_lex_state = 3}, - [1918] = {.lex_state = 18, .external_lex_state = 3}, - [1919] = {.lex_state = 18, .external_lex_state = 3}, - [1920] = {.lex_state = 18, .external_lex_state = 3}, - [1921] = {.lex_state = 19, .external_lex_state = 4}, - [1922] = {.lex_state = 18, .external_lex_state = 3}, - [1923] = {.lex_state = 18, .external_lex_state = 3}, - [1924] = {.lex_state = 19, .external_lex_state = 4}, - [1925] = {.lex_state = 19, .external_lex_state = 4}, - [1926] = {.lex_state = 18, .external_lex_state = 3}, - [1927] = {.lex_state = 18, .external_lex_state = 3}, - [1928] = {.lex_state = 13, .external_lex_state = 3}, - [1929] = {.lex_state = 18, .external_lex_state = 3}, - [1930] = {.lex_state = 18, .external_lex_state = 3}, - [1931] = {.lex_state = 13, .external_lex_state = 3}, - [1932] = {.lex_state = 19, .external_lex_state = 4}, - [1933] = {.lex_state = 19, .external_lex_state = 4}, - [1934] = {.lex_state = 18, .external_lex_state = 3}, - [1935] = {.lex_state = 18, .external_lex_state = 3}, - [1936] = {.lex_state = 18, .external_lex_state = 3}, - [1937] = {.lex_state = 18, .external_lex_state = 3}, - [1938] = {.lex_state = 18, .external_lex_state = 3}, - [1939] = {.lex_state = 18, .external_lex_state = 3}, - [1940] = {.lex_state = 19, .external_lex_state = 3}, - [1941] = {.lex_state = 19, .external_lex_state = 4}, - [1942] = {.lex_state = 18, .external_lex_state = 3}, - [1943] = {.lex_state = 18, .external_lex_state = 3}, - [1944] = {.lex_state = 19, .external_lex_state = 3}, - [1945] = {.lex_state = 19, .external_lex_state = 3}, - [1946] = {.lex_state = 19, .external_lex_state = 3}, - [1947] = {.lex_state = 18, .external_lex_state = 3}, - [1948] = {.lex_state = 18, .external_lex_state = 3}, - [1949] = {.lex_state = 13, .external_lex_state = 3}, - [1950] = {.lex_state = 18, .external_lex_state = 3}, - [1951] = {.lex_state = 18, .external_lex_state = 3}, - [1952] = {.lex_state = 18, .external_lex_state = 3}, - [1953] = {.lex_state = 18, .external_lex_state = 3}, - [1954] = {.lex_state = 19, .external_lex_state = 4}, - [1955] = {.lex_state = 18, .external_lex_state = 3}, - [1956] = {.lex_state = 19, .external_lex_state = 4}, - [1957] = {.lex_state = 13, .external_lex_state = 3}, - [1958] = {.lex_state = 13, .external_lex_state = 3}, - [1959] = {.lex_state = 13, .external_lex_state = 3}, - [1960] = {.lex_state = 13, .external_lex_state = 3}, - [1961] = {.lex_state = 18, .external_lex_state = 3}, - [1962] = {.lex_state = 15, .external_lex_state = 3}, - [1963] = {.lex_state = 18, .external_lex_state = 3}, - [1964] = {.lex_state = 18, .external_lex_state = 3}, - [1965] = {.lex_state = 18, .external_lex_state = 3}, - [1966] = {.lex_state = 18, .external_lex_state = 3}, - [1967] = {.lex_state = 19, .external_lex_state = 4}, - [1968] = {.lex_state = 18, .external_lex_state = 3}, - [1969] = {.lex_state = 18, .external_lex_state = 3}, - [1970] = {.lex_state = 18, .external_lex_state = 3}, - [1971] = {.lex_state = 19, .external_lex_state = 4}, - [1972] = {.lex_state = 19, .external_lex_state = 3}, - [1973] = {.lex_state = 19, .external_lex_state = 4}, - [1974] = {.lex_state = 13, .external_lex_state = 3}, - [1975] = {.lex_state = 18, .external_lex_state = 3}, - [1976] = {.lex_state = 19, .external_lex_state = 4}, - [1977] = {.lex_state = 18, .external_lex_state = 3}, - [1978] = {.lex_state = 19, .external_lex_state = 4}, - [1979] = {.lex_state = 19, .external_lex_state = 4}, - [1980] = {.lex_state = 19, .external_lex_state = 4}, - [1981] = {.lex_state = 19, .external_lex_state = 4}, - [1982] = {.lex_state = 19, .external_lex_state = 4}, - [1983] = {.lex_state = 19, .external_lex_state = 4}, - [1984] = {.lex_state = 19, .external_lex_state = 4}, - [1985] = {.lex_state = 19, .external_lex_state = 4}, - [1986] = {.lex_state = 19, .external_lex_state = 4}, - [1987] = {.lex_state = 18, .external_lex_state = 3}, - [1988] = {.lex_state = 18, .external_lex_state = 3}, - [1989] = {.lex_state = 17, .external_lex_state = 3}, - [1990] = {.lex_state = 18, .external_lex_state = 3}, - [1991] = {.lex_state = 18, .external_lex_state = 3}, - [1992] = {.lex_state = 18, .external_lex_state = 3}, - [1993] = {.lex_state = 13, .external_lex_state = 3}, - [1994] = {.lex_state = 18, .external_lex_state = 3}, - [1995] = {.lex_state = 18, .external_lex_state = 3}, - [1996] = {.lex_state = 19, .external_lex_state = 4}, - [1997] = {.lex_state = 18, .external_lex_state = 3}, - [1998] = {.lex_state = 18, .external_lex_state = 3}, - [1999] = {.lex_state = 18, .external_lex_state = 3}, - [2000] = {.lex_state = 18, .external_lex_state = 3}, - [2001] = {.lex_state = 18, .external_lex_state = 3}, - [2002] = {.lex_state = 13, .external_lex_state = 4}, - [2003] = {.lex_state = 19, .external_lex_state = 4}, - [2004] = {.lex_state = 13, .external_lex_state = 3}, - [2005] = {.lex_state = 13, .external_lex_state = 3}, - [2006] = {.lex_state = 18, .external_lex_state = 3}, - [2007] = {.lex_state = 19, .external_lex_state = 4}, - [2008] = {.lex_state = 18, .external_lex_state = 3}, - [2009] = {.lex_state = 19, .external_lex_state = 3}, - [2010] = {.lex_state = 13, .external_lex_state = 3}, - [2011] = {.lex_state = 19, .external_lex_state = 4}, - [2012] = {.lex_state = 13, .external_lex_state = 3}, - [2013] = {.lex_state = 13, .external_lex_state = 3}, - [2014] = {.lex_state = 19, .external_lex_state = 4}, - [2015] = {.lex_state = 18, .external_lex_state = 3}, - [2016] = {.lex_state = 19, .external_lex_state = 3}, - [2017] = {.lex_state = 18, .external_lex_state = 3}, - [2018] = {.lex_state = 19, .external_lex_state = 4}, - [2019] = {.lex_state = 19, .external_lex_state = 3}, - [2020] = {.lex_state = 18, .external_lex_state = 3}, - [2021] = {.lex_state = 18, .external_lex_state = 3}, - [2022] = {.lex_state = 19, .external_lex_state = 3}, - [2023] = {.lex_state = 18, .external_lex_state = 3}, - [2024] = {.lex_state = 18, .external_lex_state = 3}, - [2025] = {.lex_state = 18, .external_lex_state = 3}, - [2026] = {.lex_state = 18, .external_lex_state = 3}, - [2027] = {.lex_state = 18, .external_lex_state = 3}, - [2028] = {.lex_state = 18, .external_lex_state = 3}, - [2029] = {.lex_state = 13, .external_lex_state = 3}, - [2030] = {.lex_state = 18, .external_lex_state = 3}, - [2031] = {.lex_state = 18, .external_lex_state = 3}, - [2032] = {.lex_state = 18, .external_lex_state = 3}, - [2033] = {.lex_state = 19, .external_lex_state = 4}, - [2034] = {.lex_state = 18, .external_lex_state = 3}, - [2035] = {.lex_state = 18, .external_lex_state = 3}, - [2036] = {.lex_state = 21, .external_lex_state = 4}, - [2037] = {.lex_state = 18, .external_lex_state = 3}, - [2038] = {.lex_state = 18, .external_lex_state = 3}, - [2039] = {.lex_state = 18, .external_lex_state = 3}, - [2040] = {.lex_state = 18, .external_lex_state = 3}, - [2041] = {.lex_state = 13, .external_lex_state = 3}, - [2042] = {.lex_state = 18, .external_lex_state = 3}, - [2043] = {.lex_state = 18, .external_lex_state = 3}, - [2044] = {.lex_state = 19, .external_lex_state = 3}, - [2045] = {.lex_state = 19, .external_lex_state = 3}, - [2046] = {.lex_state = 18, .external_lex_state = 3}, - [2047] = {.lex_state = 18, .external_lex_state = 3}, - [2048] = {.lex_state = 18, .external_lex_state = 3}, - [2049] = {.lex_state = 18, .external_lex_state = 3}, - [2050] = {.lex_state = 18, .external_lex_state = 3}, - [2051] = {.lex_state = 13, .external_lex_state = 3}, - [2052] = {.lex_state = 13, .external_lex_state = 3}, - [2053] = {.lex_state = 19, .external_lex_state = 3}, - [2054] = {.lex_state = 19, .external_lex_state = 3}, - [2055] = {.lex_state = 19, .external_lex_state = 3}, - [2056] = {.lex_state = 19, .external_lex_state = 3}, - [2057] = {.lex_state = 19, .external_lex_state = 3}, - [2058] = {.lex_state = 19, .external_lex_state = 3}, - [2059] = {.lex_state = 19, .external_lex_state = 3}, - [2060] = {.lex_state = 19, .external_lex_state = 3}, - [2061] = {.lex_state = 18, .external_lex_state = 3}, - [2062] = {.lex_state = 18, .external_lex_state = 3}, - [2063] = {.lex_state = 19, .external_lex_state = 3}, - [2064] = {.lex_state = 19, .external_lex_state = 3}, - [2065] = {.lex_state = 13, .external_lex_state = 3}, - [2066] = {.lex_state = 18, .external_lex_state = 3}, - [2067] = {.lex_state = 18, .external_lex_state = 3}, - [2068] = {.lex_state = 18, .external_lex_state = 3}, - [2069] = {.lex_state = 18, .external_lex_state = 3}, - [2070] = {.lex_state = 18, .external_lex_state = 3}, - [2071] = {.lex_state = 19, .external_lex_state = 4}, - [2072] = {.lex_state = 19, .external_lex_state = 4}, - [2073] = {.lex_state = 18, .external_lex_state = 3}, - [2074] = {.lex_state = 19, .external_lex_state = 4}, - [2075] = {.lex_state = 19, .external_lex_state = 4}, - [2076] = {.lex_state = 19, .external_lex_state = 4}, - [2077] = {.lex_state = 18, .external_lex_state = 3}, - [2078] = {.lex_state = 18, .external_lex_state = 3}, - [2079] = {.lex_state = 19, .external_lex_state = 3}, - [2080] = {.lex_state = 18, .external_lex_state = 3}, - [2081] = {.lex_state = 18, .external_lex_state = 3}, - [2082] = {.lex_state = 18, .external_lex_state = 3}, - [2083] = {.lex_state = 19, .external_lex_state = 4}, - [2084] = {.lex_state = 19, .external_lex_state = 4}, - [2085] = {.lex_state = 18, .external_lex_state = 3}, - [2086] = {.lex_state = 19, .external_lex_state = 4}, - [2087] = {.lex_state = 18, .external_lex_state = 3}, - [2088] = {.lex_state = 18, .external_lex_state = 3}, - [2089] = {.lex_state = 19, .external_lex_state = 3}, - [2090] = {.lex_state = 18, .external_lex_state = 3}, - [2091] = {.lex_state = 18, .external_lex_state = 3}, - [2092] = {.lex_state = 18, .external_lex_state = 3}, - [2093] = {.lex_state = 18, .external_lex_state = 3}, - [2094] = {.lex_state = 19, .external_lex_state = 3}, - [2095] = {.lex_state = 18, .external_lex_state = 3}, - [2096] = {.lex_state = 18, .external_lex_state = 3}, - [2097] = {.lex_state = 13, .external_lex_state = 4}, - [2098] = {.lex_state = 18, .external_lex_state = 3}, - [2099] = {.lex_state = 18, .external_lex_state = 3}, - [2100] = {.lex_state = 13, .external_lex_state = 3}, - [2101] = {.lex_state = 13, .external_lex_state = 4}, - [2102] = {.lex_state = 13, .external_lex_state = 3}, - [2103] = {.lex_state = 19, .external_lex_state = 4}, - [2104] = {.lex_state = 19, .external_lex_state = 4}, - [2105] = {.lex_state = 13, .external_lex_state = 3}, - [2106] = {.lex_state = 13, .external_lex_state = 3}, - [2107] = {.lex_state = 13, .external_lex_state = 3}, - [2108] = {.lex_state = 13, .external_lex_state = 3}, - [2109] = {.lex_state = 13, .external_lex_state = 3}, - [2110] = {.lex_state = 13, .external_lex_state = 3}, - [2111] = {.lex_state = 13, .external_lex_state = 3}, - [2112] = {.lex_state = 19, .external_lex_state = 4}, - [2113] = {.lex_state = 13, .external_lex_state = 3}, - [2114] = {.lex_state = 13, .external_lex_state = 3}, - [2115] = {.lex_state = 13, .external_lex_state = 3}, - [2116] = {.lex_state = 19, .external_lex_state = 4}, - [2117] = {.lex_state = 19, .external_lex_state = 4}, - [2118] = {.lex_state = 19, .external_lex_state = 4}, - [2119] = {.lex_state = 13, .external_lex_state = 3}, - [2120] = {.lex_state = 19, .external_lex_state = 4}, - [2121] = {.lex_state = 19, .external_lex_state = 4}, - [2122] = {.lex_state = 19, .external_lex_state = 4}, - [2123] = {.lex_state = 19, .external_lex_state = 4}, - [2124] = {.lex_state = 19, .external_lex_state = 4}, - [2125] = {.lex_state = 19, .external_lex_state = 4}, - [2126] = {.lex_state = 19, .external_lex_state = 3}, - [2127] = {.lex_state = 19, .external_lex_state = 3}, - [2128] = {.lex_state = 19, .external_lex_state = 3}, - [2129] = {.lex_state = 19, .external_lex_state = 3}, - [2130] = {.lex_state = 19, .external_lex_state = 3}, - [2131] = {.lex_state = 19, .external_lex_state = 3}, - [2132] = {.lex_state = 19, .external_lex_state = 3}, - [2133] = {.lex_state = 19, .external_lex_state = 3}, - [2134] = {.lex_state = 19, .external_lex_state = 3}, - [2135] = {.lex_state = 19, .external_lex_state = 3}, - [2136] = {.lex_state = 19, .external_lex_state = 3}, - [2137] = {.lex_state = 19, .external_lex_state = 3}, - [2138] = {.lex_state = 13, .external_lex_state = 3}, - [2139] = {.lex_state = 19, .external_lex_state = 3}, - [2140] = {.lex_state = 13, .external_lex_state = 3}, - [2141] = {.lex_state = 13, .external_lex_state = 3}, - [2142] = {.lex_state = 13, .external_lex_state = 3}, - [2143] = {.lex_state = 19, .external_lex_state = 3}, - [2144] = {.lex_state = 19, .external_lex_state = 3}, - [2145] = {.lex_state = 13, .external_lex_state = 3}, - [2146] = {.lex_state = 13, .external_lex_state = 3}, - [2147] = {.lex_state = 13, .external_lex_state = 3}, - [2148] = {.lex_state = 13, .external_lex_state = 4}, - [2149] = {.lex_state = 13, .external_lex_state = 3}, - [2150] = {.lex_state = 13, .external_lex_state = 3}, - [2151] = {.lex_state = 13, .external_lex_state = 3}, - [2152] = {.lex_state = 19, .external_lex_state = 3}, - [2153] = {.lex_state = 13, .external_lex_state = 3}, - [2154] = {.lex_state = 19, .external_lex_state = 3}, - [2155] = {.lex_state = 19, .external_lex_state = 3}, - [2156] = {.lex_state = 13, .external_lex_state = 3}, - [2157] = {.lex_state = 13, .external_lex_state = 3}, - [2158] = {.lex_state = 13, .external_lex_state = 3}, - [2159] = {.lex_state = 13, .external_lex_state = 4}, - [2160] = {.lex_state = 13, .external_lex_state = 3}, - [2161] = {.lex_state = 19, .external_lex_state = 4}, - [2162] = {.lex_state = 19, .external_lex_state = 3}, - [2163] = {.lex_state = 13, .external_lex_state = 3}, - [2164] = {.lex_state = 13, .external_lex_state = 3}, - [2165] = {.lex_state = 13, .external_lex_state = 3}, - [2166] = {.lex_state = 13, .external_lex_state = 3}, - [2167] = {.lex_state = 13, .external_lex_state = 3}, - [2168] = {.lex_state = 13, .external_lex_state = 3}, - [2169] = {.lex_state = 13, .external_lex_state = 3}, - [2170] = {.lex_state = 13, .external_lex_state = 3}, - [2171] = {.lex_state = 13, .external_lex_state = 3}, - [2172] = {.lex_state = 13, .external_lex_state = 3}, - [2173] = {.lex_state = 13, .external_lex_state = 3}, - [2174] = {.lex_state = 13, .external_lex_state = 3}, - [2175] = {.lex_state = 13, .external_lex_state = 3}, - [2176] = {.lex_state = 13, .external_lex_state = 3}, - [2177] = {.lex_state = 13, .external_lex_state = 3}, - [2178] = {.lex_state = 4, .external_lex_state = 2}, - [2179] = {.lex_state = 13, .external_lex_state = 3}, - [2180] = {.lex_state = 13, .external_lex_state = 3}, - [2181] = {.lex_state = 19, .external_lex_state = 4}, - [2182] = {.lex_state = 13, .external_lex_state = 3}, - [2183] = {.lex_state = 13, .external_lex_state = 3}, - [2184] = {.lex_state = 13, .external_lex_state = 3}, - [2185] = {.lex_state = 13, .external_lex_state = 3}, - [2186] = {.lex_state = 13, .external_lex_state = 3}, - [2187] = {.lex_state = 13, .external_lex_state = 3}, - [2188] = {.lex_state = 13, .external_lex_state = 3}, - [2189] = {.lex_state = 13, .external_lex_state = 3}, - [2190] = {.lex_state = 13, .external_lex_state = 3}, - [2191] = {.lex_state = 13, .external_lex_state = 3}, - [2192] = {.lex_state = 13, .external_lex_state = 3}, - [2193] = {.lex_state = 13, .external_lex_state = 3}, - [2194] = {.lex_state = 13, .external_lex_state = 3}, - [2195] = {.lex_state = 13, .external_lex_state = 3}, - [2196] = {.lex_state = 19, .external_lex_state = 4}, - [2197] = {.lex_state = 13, .external_lex_state = 3}, - [2198] = {.lex_state = 13, .external_lex_state = 3}, - [2199] = {.lex_state = 13, .external_lex_state = 3}, - [2200] = {.lex_state = 13, .external_lex_state = 3}, - [2201] = {.lex_state = 13, .external_lex_state = 3}, - [2202] = {.lex_state = 13, .external_lex_state = 3}, - [2203] = {.lex_state = 13, .external_lex_state = 3}, - [2204] = {.lex_state = 13, .external_lex_state = 3}, - [2205] = {.lex_state = 13, .external_lex_state = 3}, - [2206] = {.lex_state = 19, .external_lex_state = 4}, - [2207] = {.lex_state = 13, .external_lex_state = 3}, - [2208] = {.lex_state = 13, .external_lex_state = 3}, - [2209] = {.lex_state = 13, .external_lex_state = 3}, - [2210] = {.lex_state = 19, .external_lex_state = 4}, - [2211] = {.lex_state = 13, .external_lex_state = 3}, - [2212] = {.lex_state = 13, .external_lex_state = 3}, - [2213] = {.lex_state = 13, .external_lex_state = 3}, - [2214] = {.lex_state = 19, .external_lex_state = 4}, - [2215] = {.lex_state = 19, .external_lex_state = 4}, - [2216] = {.lex_state = 19, .external_lex_state = 4}, - [2217] = {.lex_state = 19, .external_lex_state = 4}, - [2218] = {.lex_state = 19, .external_lex_state = 4}, - [2219] = {.lex_state = 19, .external_lex_state = 4}, - [2220] = {.lex_state = 19, .external_lex_state = 4}, - [2221] = {.lex_state = 19, .external_lex_state = 4}, - [2222] = {.lex_state = 19, .external_lex_state = 4}, - [2223] = {.lex_state = 19, .external_lex_state = 4}, - [2224] = {.lex_state = 13, .external_lex_state = 3}, - [2225] = {.lex_state = 13, .external_lex_state = 3}, - [2226] = {.lex_state = 19, .external_lex_state = 3}, - [2227] = {.lex_state = 13, .external_lex_state = 3}, - [2228] = {.lex_state = 13, .external_lex_state = 3}, - [2229] = {.lex_state = 13, .external_lex_state = 3}, - [2230] = {.lex_state = 19, .external_lex_state = 3}, - [2231] = {.lex_state = 19, .external_lex_state = 3}, - [2232] = {.lex_state = 19, .external_lex_state = 3}, - [2233] = {.lex_state = 19, .external_lex_state = 3}, - [2234] = {.lex_state = 19, .external_lex_state = 3}, - [2235] = {.lex_state = 13, .external_lex_state = 3}, - [2236] = {.lex_state = 13, .external_lex_state = 3}, - [2237] = {.lex_state = 13, .external_lex_state = 3}, - [2238] = {.lex_state = 19, .external_lex_state = 3}, - [2239] = {.lex_state = 19, .external_lex_state = 3}, - [2240] = {.lex_state = 13, .external_lex_state = 3}, - [2241] = {.lex_state = 13, .external_lex_state = 3}, - [2242] = {.lex_state = 13, .external_lex_state = 3}, - [2243] = {.lex_state = 13, .external_lex_state = 3}, - [2244] = {.lex_state = 13, .external_lex_state = 3}, - [2245] = {.lex_state = 13, .external_lex_state = 3}, - [2246] = {.lex_state = 13, .external_lex_state = 3}, - [2247] = {.lex_state = 19, .external_lex_state = 4}, - [2248] = {.lex_state = 19, .external_lex_state = 4}, - [2249] = {.lex_state = 13, .external_lex_state = 3}, - [2250] = {.lex_state = 13, .external_lex_state = 3}, - [2251] = {.lex_state = 13, .external_lex_state = 3}, - [2252] = {.lex_state = 13, .external_lex_state = 3}, - [2253] = {.lex_state = 13, .external_lex_state = 4}, - [2254] = {.lex_state = 13, .external_lex_state = 4}, - [2255] = {.lex_state = 13, .external_lex_state = 4}, - [2256] = {.lex_state = 19, .external_lex_state = 4}, - [2257] = {.lex_state = 19, .external_lex_state = 4}, - [2258] = {.lex_state = 13, .external_lex_state = 4}, - [2259] = {.lex_state = 13, .external_lex_state = 4}, - [2260] = {.lex_state = 13, .external_lex_state = 3}, - [2261] = {.lex_state = 13, .external_lex_state = 3}, - [2262] = {.lex_state = 13, .external_lex_state = 3}, - [2263] = {.lex_state = 13, .external_lex_state = 3}, - [2264] = {.lex_state = 13, .external_lex_state = 3}, - [2265] = {.lex_state = 19, .external_lex_state = 3}, - [2266] = {.lex_state = 13, .external_lex_state = 3}, - [2267] = {.lex_state = 13, .external_lex_state = 3}, - [2268] = {.lex_state = 19, .external_lex_state = 4}, - [2269] = {.lex_state = 13, .external_lex_state = 3}, - [2270] = {.lex_state = 13, .external_lex_state = 3}, - [2271] = {.lex_state = 13, .external_lex_state = 3}, - [2272] = {.lex_state = 13, .external_lex_state = 3}, - [2273] = {.lex_state = 13, .external_lex_state = 3}, - [2274] = {.lex_state = 13, .external_lex_state = 3}, - [2275] = {.lex_state = 13, .external_lex_state = 3}, - [2276] = {.lex_state = 19, .external_lex_state = 4}, - [2277] = {.lex_state = 13, .external_lex_state = 3}, - [2278] = {.lex_state = 13, .external_lex_state = 3}, - [2279] = {.lex_state = 13, .external_lex_state = 4}, - [2280] = {.lex_state = 13, .external_lex_state = 4}, - [2281] = {.lex_state = 13, .external_lex_state = 4}, - [2282] = {.lex_state = 13, .external_lex_state = 3}, - [2283] = {.lex_state = 13, .external_lex_state = 3}, - [2284] = {.lex_state = 19, .external_lex_state = 3}, - [2285] = {.lex_state = 58, .external_lex_state = 3}, - [2286] = {.lex_state = 58, .external_lex_state = 3}, - [2287] = {.lex_state = 35, .external_lex_state = 3}, - [2288] = {.lex_state = 58, .external_lex_state = 3}, - [2289] = {.lex_state = 58, .external_lex_state = 3}, - [2290] = {.lex_state = 58, .external_lex_state = 3}, - [2291] = {.lex_state = 58, .external_lex_state = 3}, - [2292] = {.lex_state = 58, .external_lex_state = 3}, - [2293] = {.lex_state = 58, .external_lex_state = 3}, - [2294] = {.lex_state = 58, .external_lex_state = 3}, - [2295] = {.lex_state = 42, .external_lex_state = 3}, - [2296] = {.lex_state = 58, .external_lex_state = 3}, - [2297] = {.lex_state = 58, .external_lex_state = 3}, - [2298] = {.lex_state = 58, .external_lex_state = 3}, - [2299] = {.lex_state = 58, .external_lex_state = 3}, - [2300] = {.lex_state = 58, .external_lex_state = 3}, - [2301] = {.lex_state = 13, .external_lex_state = 4}, - [2302] = {.lex_state = 58, .external_lex_state = 3}, - [2303] = {.lex_state = 58, .external_lex_state = 3}, - [2304] = {.lex_state = 58, .external_lex_state = 3}, - [2305] = {.lex_state = 58, .external_lex_state = 3}, - [2306] = {.lex_state = 58, .external_lex_state = 3}, - [2307] = {.lex_state = 58, .external_lex_state = 3}, - [2308] = {.lex_state = 58, .external_lex_state = 3}, - [2309] = {.lex_state = 58, .external_lex_state = 3}, - [2310] = {.lex_state = 58, .external_lex_state = 3}, - [2311] = {.lex_state = 58, .external_lex_state = 3}, - [2312] = {.lex_state = 58, .external_lex_state = 3}, - [2313] = {.lex_state = 58, .external_lex_state = 3}, - [2314] = {.lex_state = 58, .external_lex_state = 3}, - [2315] = {.lex_state = 58, .external_lex_state = 3}, - [2316] = {.lex_state = 58, .external_lex_state = 3}, - [2317] = {.lex_state = 19, .external_lex_state = 3}, - [2318] = {.lex_state = 58, .external_lex_state = 3}, - [2319] = {.lex_state = 58, .external_lex_state = 3}, - [2320] = {.lex_state = 58, .external_lex_state = 3}, - [2321] = {.lex_state = 58, .external_lex_state = 3}, - [2322] = {.lex_state = 58, .external_lex_state = 3}, - [2323] = {.lex_state = 58, .external_lex_state = 3}, - [2324] = {.lex_state = 58, .external_lex_state = 3}, - [2325] = {.lex_state = 58, .external_lex_state = 3}, - [2326] = {.lex_state = 13, .external_lex_state = 3}, - [2327] = {.lex_state = 58, .external_lex_state = 3}, - [2328] = {.lex_state = 58, .external_lex_state = 3}, - [2329] = {.lex_state = 19, .external_lex_state = 3}, - [2330] = {.lex_state = 58, .external_lex_state = 3}, - [2331] = {.lex_state = 58, .external_lex_state = 3}, - [2332] = {.lex_state = 58, .external_lex_state = 3}, - [2333] = {.lex_state = 58, .external_lex_state = 3}, - [2334] = {.lex_state = 58, .external_lex_state = 3}, - [2335] = {.lex_state = 58, .external_lex_state = 3}, - [2336] = {.lex_state = 58, .external_lex_state = 3}, - [2337] = {.lex_state = 58, .external_lex_state = 3}, - [2338] = {.lex_state = 58, .external_lex_state = 3}, - [2339] = {.lex_state = 58, .external_lex_state = 3}, - [2340] = {.lex_state = 58, .external_lex_state = 3}, - [2341] = {.lex_state = 58, .external_lex_state = 3}, - [2342] = {.lex_state = 58, .external_lex_state = 3}, - [2343] = {.lex_state = 13, .external_lex_state = 4}, - [2344] = {.lex_state = 13, .external_lex_state = 4}, - [2345] = {.lex_state = 13, .external_lex_state = 4}, - [2346] = {.lex_state = 13, .external_lex_state = 4}, - [2347] = {.lex_state = 13, .external_lex_state = 4}, - [2348] = {.lex_state = 19, .external_lex_state = 3}, - [2349] = {.lex_state = 58, .external_lex_state = 3}, - [2350] = {.lex_state = 58, .external_lex_state = 3}, - [2351] = {.lex_state = 58, .external_lex_state = 3}, - [2352] = {.lex_state = 58, .external_lex_state = 3}, - [2353] = {.lex_state = 58, .external_lex_state = 3}, - [2354] = {.lex_state = 13, .external_lex_state = 4}, - [2355] = {.lex_state = 13, .external_lex_state = 4}, - [2356] = {.lex_state = 58, .external_lex_state = 3}, - [2357] = {.lex_state = 58, .external_lex_state = 3}, - [2358] = {.lex_state = 58, .external_lex_state = 3}, - [2359] = {.lex_state = 58, .external_lex_state = 3}, - [2360] = {.lex_state = 13, .external_lex_state = 3}, - [2361] = {.lex_state = 13, .external_lex_state = 3}, - [2362] = {.lex_state = 13, .external_lex_state = 3}, - [2363] = {.lex_state = 13, .external_lex_state = 4}, - [2364] = {.lex_state = 13, .external_lex_state = 4}, - [2365] = {.lex_state = 58, .external_lex_state = 3}, - [2366] = {.lex_state = 19, .external_lex_state = 3}, - [2367] = {.lex_state = 13, .external_lex_state = 3}, - [2368] = {.lex_state = 58, .external_lex_state = 3}, - [2369] = {.lex_state = 13, .external_lex_state = 3}, - [2370] = {.lex_state = 13, .external_lex_state = 3}, - [2371] = {.lex_state = 58, .external_lex_state = 3}, - [2372] = {.lex_state = 19, .external_lex_state = 3}, - [2373] = {.lex_state = 58, .external_lex_state = 3}, - [2374] = {.lex_state = 13, .external_lex_state = 4}, - [2375] = {.lex_state = 13, .external_lex_state = 4}, - [2376] = {.lex_state = 58, .external_lex_state = 3}, - [2377] = {.lex_state = 58, .external_lex_state = 3}, - [2378] = {.lex_state = 58, .external_lex_state = 3}, - [2379] = {.lex_state = 58, .external_lex_state = 3}, - [2380] = {.lex_state = 58, .external_lex_state = 3}, - [2381] = {.lex_state = 58, .external_lex_state = 3}, - [2382] = {.lex_state = 58, .external_lex_state = 3}, - [2383] = {.lex_state = 58, .external_lex_state = 3}, - [2384] = {.lex_state = 58, .external_lex_state = 3}, - [2385] = {.lex_state = 58, .external_lex_state = 3}, - [2386] = {.lex_state = 58, .external_lex_state = 3}, - [2387] = {.lex_state = 58, .external_lex_state = 3}, - [2388] = {.lex_state = 58, .external_lex_state = 3}, - [2389] = {.lex_state = 13, .external_lex_state = 4}, - [2390] = {.lex_state = 13, .external_lex_state = 4}, - [2391] = {.lex_state = 58, .external_lex_state = 3}, - [2392] = {.lex_state = 58, .external_lex_state = 3}, - [2393] = {.lex_state = 13, .external_lex_state = 3}, - [2394] = {.lex_state = 13, .external_lex_state = 4}, - [2395] = {.lex_state = 13, .external_lex_state = 4}, - [2396] = {.lex_state = 13, .external_lex_state = 4}, - [2397] = {.lex_state = 58, .external_lex_state = 3}, - [2398] = {.lex_state = 19, .external_lex_state = 3}, - [2399] = {.lex_state = 13, .external_lex_state = 4}, - [2400] = {.lex_state = 13, .external_lex_state = 4}, - [2401] = {.lex_state = 58, .external_lex_state = 3}, - [2402] = {.lex_state = 58, .external_lex_state = 3}, - [2403] = {.lex_state = 58, .external_lex_state = 3}, - [2404] = {.lex_state = 19, .external_lex_state = 3}, - [2405] = {.lex_state = 13, .external_lex_state = 3}, - [2406] = {.lex_state = 58, .external_lex_state = 3}, - [2407] = {.lex_state = 19, .external_lex_state = 3}, - [2408] = {.lex_state = 19, .external_lex_state = 3}, - [2409] = {.lex_state = 19, .external_lex_state = 3}, - [2410] = {.lex_state = 19, .external_lex_state = 3}, - [2411] = {.lex_state = 19, .external_lex_state = 3}, - [2412] = {.lex_state = 19, .external_lex_state = 3}, - [2413] = {.lex_state = 19, .external_lex_state = 3}, - [2414] = {.lex_state = 19, .external_lex_state = 3}, - [2415] = {.lex_state = 19, .external_lex_state = 3}, - [2416] = {.lex_state = 19, .external_lex_state = 3}, - [2417] = {.lex_state = 19, .external_lex_state = 3}, - [2418] = {.lex_state = 58, .external_lex_state = 3}, - [2419] = {.lex_state = 19, .external_lex_state = 3}, - [2420] = {.lex_state = 58, .external_lex_state = 3}, - [2421] = {.lex_state = 58, .external_lex_state = 3}, - [2422] = {.lex_state = 58, .external_lex_state = 3}, - [2423] = {.lex_state = 19, .external_lex_state = 3}, - [2424] = {.lex_state = 58, .external_lex_state = 3}, - [2425] = {.lex_state = 58, .external_lex_state = 3}, - [2426] = {.lex_state = 58, .external_lex_state = 3}, - [2427] = {.lex_state = 58, .external_lex_state = 3}, - [2428] = {.lex_state = 58, .external_lex_state = 3}, - [2429] = {.lex_state = 13, .external_lex_state = 3}, - [2430] = {.lex_state = 13, .external_lex_state = 3}, - [2431] = {.lex_state = 58, .external_lex_state = 3}, - [2432] = {.lex_state = 58, .external_lex_state = 3}, - [2433] = {.lex_state = 58, .external_lex_state = 3}, - [2434] = {.lex_state = 58, .external_lex_state = 3}, - [2435] = {.lex_state = 58, .external_lex_state = 3}, - [2436] = {.lex_state = 13, .external_lex_state = 3}, - [2437] = {.lex_state = 19, .external_lex_state = 3}, - [2438] = {.lex_state = 19, .external_lex_state = 3}, - [2439] = {.lex_state = 13, .external_lex_state = 3}, - [2440] = {.lex_state = 19, .external_lex_state = 3}, - [2441] = {.lex_state = 19, .external_lex_state = 3}, - [2442] = {.lex_state = 19, .external_lex_state = 3}, - [2443] = {.lex_state = 19, .external_lex_state = 3}, - [2444] = {.lex_state = 19, .external_lex_state = 3}, - [2445] = {.lex_state = 19, .external_lex_state = 3}, - [2446] = {.lex_state = 19, .external_lex_state = 3}, - [2447] = {.lex_state = 13, .external_lex_state = 4}, - [2448] = {.lex_state = 13, .external_lex_state = 4}, - [2449] = {.lex_state = 19, .external_lex_state = 3}, - [2450] = {.lex_state = 13, .external_lex_state = 3}, - [2451] = {.lex_state = 13, .external_lex_state = 3}, - [2452] = {.lex_state = 19, .external_lex_state = 3}, - [2453] = {.lex_state = 19, .external_lex_state = 3}, - [2454] = {.lex_state = 19, .external_lex_state = 3}, - [2455] = {.lex_state = 19, .external_lex_state = 3}, - [2456] = {.lex_state = 19, .external_lex_state = 3}, - [2457] = {.lex_state = 19, .external_lex_state = 3}, - [2458] = {.lex_state = 13, .external_lex_state = 4}, - [2459] = {.lex_state = 13, .external_lex_state = 4}, - [2460] = {.lex_state = 19, .external_lex_state = 3}, - [2461] = {.lex_state = 19, .external_lex_state = 3}, - [2462] = {.lex_state = 13, .external_lex_state = 3}, - [2463] = {.lex_state = 13, .external_lex_state = 4}, - [2464] = {.lex_state = 19, .external_lex_state = 3}, - [2465] = {.lex_state = 13, .external_lex_state = 3}, - [2466] = {.lex_state = 19, .external_lex_state = 3}, - [2467] = {.lex_state = 13, .external_lex_state = 3}, - [2468] = {.lex_state = 39, .external_lex_state = 3}, - [2469] = {.lex_state = 13, .external_lex_state = 4}, - [2470] = {.lex_state = 13, .external_lex_state = 4}, - [2471] = {.lex_state = 19, .external_lex_state = 3}, - [2472] = {.lex_state = 34, .external_lex_state = 3}, - [2473] = {.lex_state = 13, .external_lex_state = 3}, - [2474] = {.lex_state = 13, .external_lex_state = 3}, - [2475] = {.lex_state = 19, .external_lex_state = 3}, - [2476] = {.lex_state = 19, .external_lex_state = 3}, - [2477] = {.lex_state = 19, .external_lex_state = 3}, - [2478] = {.lex_state = 19, .external_lex_state = 3}, - [2479] = {.lex_state = 13, .external_lex_state = 3}, - [2480] = {.lex_state = 13, .external_lex_state = 4}, - [2481] = {.lex_state = 13, .external_lex_state = 3}, - [2482] = {.lex_state = 13, .external_lex_state = 3}, - [2483] = {.lex_state = 19, .external_lex_state = 3}, - [2484] = {.lex_state = 19, .external_lex_state = 3}, - [2485] = {.lex_state = 13, .external_lex_state = 3}, - [2486] = {.lex_state = 19, .external_lex_state = 3}, - [2487] = {.lex_state = 19, .external_lex_state = 3}, - [2488] = {.lex_state = 19, .external_lex_state = 3}, - [2489] = {.lex_state = 19, .external_lex_state = 3}, - [2490] = {.lex_state = 19, .external_lex_state = 3}, - [2491] = {.lex_state = 19, .external_lex_state = 3}, - [2492] = {.lex_state = 19, .external_lex_state = 3}, - [2493] = {.lex_state = 19, .external_lex_state = 3}, - [2494] = {.lex_state = 19, .external_lex_state = 3}, - [2495] = {.lex_state = 13, .external_lex_state = 4}, - [2496] = {.lex_state = 19, .external_lex_state = 3}, - [2497] = {.lex_state = 13, .external_lex_state = 3}, - [2498] = {.lex_state = 13, .external_lex_state = 3}, - [2499] = {.lex_state = 13, .external_lex_state = 3}, - [2500] = {.lex_state = 13, .external_lex_state = 3}, - [2501] = {.lex_state = 13, .external_lex_state = 3}, - [2502] = {.lex_state = 19, .external_lex_state = 3}, - [2503] = {.lex_state = 19, .external_lex_state = 3}, - [2504] = {.lex_state = 19, .external_lex_state = 3}, - [2505] = {.lex_state = 13, .external_lex_state = 3}, - [2506] = {.lex_state = 13, .external_lex_state = 3}, - [2507] = {.lex_state = 19, .external_lex_state = 3}, - [2508] = {.lex_state = 19, .external_lex_state = 3}, - [2509] = {.lex_state = 19, .external_lex_state = 3}, - [2510] = {.lex_state = 19, .external_lex_state = 3}, - [2511] = {.lex_state = 13, .external_lex_state = 3}, - [2512] = {.lex_state = 19, .external_lex_state = 3}, - [2513] = {.lex_state = 19, .external_lex_state = 3}, - [2514] = {.lex_state = 19, .external_lex_state = 3}, - [2515] = {.lex_state = 13, .external_lex_state = 3}, - [2516] = {.lex_state = 19, .external_lex_state = 3}, - [2517] = {.lex_state = 13, .external_lex_state = 3}, - [2518] = {.lex_state = 19, .external_lex_state = 3}, - [2519] = {.lex_state = 19, .external_lex_state = 3}, - [2520] = {.lex_state = 19, .external_lex_state = 3}, - [2521] = {.lex_state = 19, .external_lex_state = 3}, - [2522] = {.lex_state = 19, .external_lex_state = 3}, - [2523] = {.lex_state = 19, .external_lex_state = 3}, - [2524] = {.lex_state = 19, .external_lex_state = 3}, - [2525] = {.lex_state = 19, .external_lex_state = 3}, - [2526] = {.lex_state = 19, .external_lex_state = 3}, - [2527] = {.lex_state = 19, .external_lex_state = 3}, - [2528] = {.lex_state = 19, .external_lex_state = 3}, - [2529] = {.lex_state = 19, .external_lex_state = 3}, - [2530] = {.lex_state = 19, .external_lex_state = 3}, - [2531] = {.lex_state = 19, .external_lex_state = 3}, - [2532] = {.lex_state = 19, .external_lex_state = 3}, - [2533] = {.lex_state = 19, .external_lex_state = 3}, - [2534] = {.lex_state = 19, .external_lex_state = 3}, - [2535] = {.lex_state = 19, .external_lex_state = 3}, - [2536] = {.lex_state = 19, .external_lex_state = 3}, - [2537] = {.lex_state = 19, .external_lex_state = 3}, - [2538] = {.lex_state = 19, .external_lex_state = 3}, - [2539] = {.lex_state = 13, .external_lex_state = 3}, - [2540] = {.lex_state = 13, .external_lex_state = 4}, - [2541] = {.lex_state = 13, .external_lex_state = 3}, - [2542] = {.lex_state = 13, .external_lex_state = 3}, - [2543] = {.lex_state = 13, .external_lex_state = 3}, - [2544] = {.lex_state = 13, .external_lex_state = 4}, - [2545] = {.lex_state = 13, .external_lex_state = 3}, - [2546] = {.lex_state = 13, .external_lex_state = 3}, - [2547] = {.lex_state = 13, .external_lex_state = 3}, - [2548] = {.lex_state = 13, .external_lex_state = 3}, - [2549] = {.lex_state = 13, .external_lex_state = 4}, - [2550] = {.lex_state = 13, .external_lex_state = 4}, - [2551] = {.lex_state = 13, .external_lex_state = 4}, - [2552] = {.lex_state = 13, .external_lex_state = 3}, - [2553] = {.lex_state = 13, .external_lex_state = 3}, - [2554] = {.lex_state = 13, .external_lex_state = 4}, - [2555] = {.lex_state = 43, .external_lex_state = 2}, - [2556] = {.lex_state = 13, .external_lex_state = 4}, - [2557] = {.lex_state = 13, .external_lex_state = 3}, - [2558] = {.lex_state = 19, .external_lex_state = 3}, - [2559] = {.lex_state = 13, .external_lex_state = 4}, - [2560] = {.lex_state = 13, .external_lex_state = 3}, - [2561] = {.lex_state = 13, .external_lex_state = 3}, - [2562] = {.lex_state = 13, .external_lex_state = 3}, - [2563] = {.lex_state = 13, .external_lex_state = 4}, - [2564] = {.lex_state = 13, .external_lex_state = 3}, - [2565] = {.lex_state = 13, .external_lex_state = 3}, - [2566] = {.lex_state = 13, .external_lex_state = 3}, - [2567] = {.lex_state = 13, .external_lex_state = 4}, - [2568] = {.lex_state = 13, .external_lex_state = 4}, - [2569] = {.lex_state = 13, .external_lex_state = 3}, - [2570] = {.lex_state = 13, .external_lex_state = 3}, - [2571] = {.lex_state = 13, .external_lex_state = 3}, - [2572] = {.lex_state = 13, .external_lex_state = 3}, - [2573] = {.lex_state = 13, .external_lex_state = 4}, - [2574] = {.lex_state = 13, .external_lex_state = 4}, - [2575] = {.lex_state = 13, .external_lex_state = 4}, - [2576] = {.lex_state = 13, .external_lex_state = 4}, - [2577] = {.lex_state = 13, .external_lex_state = 3}, - [2578] = {.lex_state = 13, .external_lex_state = 3}, - [2579] = {.lex_state = 13, .external_lex_state = 4}, - [2580] = {.lex_state = 13, .external_lex_state = 4}, - [2581] = {.lex_state = 13, .external_lex_state = 4}, - [2582] = {.lex_state = 13, .external_lex_state = 3}, - [2583] = {.lex_state = 13, .external_lex_state = 4}, - [2584] = {.lex_state = 13, .external_lex_state = 3}, - [2585] = {.lex_state = 13, .external_lex_state = 4}, - [2586] = {.lex_state = 13, .external_lex_state = 4}, - [2587] = {.lex_state = 13, .external_lex_state = 4}, - [2588] = {.lex_state = 13, .external_lex_state = 3}, - [2589] = {.lex_state = 13, .external_lex_state = 4}, - [2590] = {.lex_state = 13, .external_lex_state = 3}, - [2591] = {.lex_state = 13, .external_lex_state = 3}, - [2592] = {.lex_state = 13, .external_lex_state = 4}, - [2593] = {.lex_state = 13, .external_lex_state = 4}, - [2594] = {.lex_state = 13, .external_lex_state = 4}, - [2595] = {.lex_state = 13, .external_lex_state = 3}, - [2596] = {.lex_state = 13, .external_lex_state = 4}, - [2597] = {.lex_state = 13, .external_lex_state = 3}, - [2598] = {.lex_state = 13, .external_lex_state = 3}, - [2599] = {.lex_state = 13, .external_lex_state = 3}, - [2600] = {.lex_state = 13, .external_lex_state = 3}, - [2601] = {.lex_state = 13, .external_lex_state = 3}, - [2602] = {.lex_state = 13, .external_lex_state = 3}, - [2603] = {.lex_state = 13, .external_lex_state = 3}, - [2604] = {.lex_state = 13, .external_lex_state = 3}, - [2605] = {.lex_state = 13, .external_lex_state = 3}, - [2606] = {.lex_state = 13, .external_lex_state = 3}, - [2607] = {.lex_state = 13, .external_lex_state = 4}, - [2608] = {.lex_state = 13, .external_lex_state = 4}, - [2609] = {.lex_state = 13, .external_lex_state = 3}, - [2610] = {.lex_state = 13, .external_lex_state = 3}, - [2611] = {.lex_state = 13, .external_lex_state = 3}, - [2612] = {.lex_state = 13, .external_lex_state = 3}, - [2613] = {.lex_state = 13, .external_lex_state = 3}, - [2614] = {.lex_state = 13, .external_lex_state = 4}, - [2615] = {.lex_state = 13, .external_lex_state = 3}, - [2616] = {.lex_state = 13, .external_lex_state = 3}, - [2617] = {.lex_state = 13, .external_lex_state = 3}, - [2618] = {.lex_state = 13, .external_lex_state = 3}, - [2619] = {.lex_state = 13, .external_lex_state = 3}, - [2620] = {.lex_state = 13, .external_lex_state = 3}, - [2621] = {.lex_state = 13, .external_lex_state = 3}, - [2622] = {.lex_state = 13, .external_lex_state = 3}, - [2623] = {.lex_state = 13, .external_lex_state = 3}, - [2624] = {.lex_state = 13, .external_lex_state = 3}, - [2625] = {.lex_state = 13, .external_lex_state = 3}, - [2626] = {.lex_state = 13, .external_lex_state = 3}, - [2627] = {.lex_state = 13, .external_lex_state = 3}, - [2628] = {.lex_state = 13, .external_lex_state = 3}, - [2629] = {.lex_state = 58, .external_lex_state = 3}, - [2630] = {.lex_state = 13, .external_lex_state = 3}, - [2631] = {.lex_state = 13, .external_lex_state = 3}, - [2632] = {.lex_state = 13, .external_lex_state = 3}, - [2633] = {.lex_state = 13, .external_lex_state = 4}, - [2634] = {.lex_state = 13, .external_lex_state = 3}, - [2635] = {.lex_state = 13, .external_lex_state = 4}, - [2636] = {.lex_state = 13, .external_lex_state = 4}, - [2637] = {.lex_state = 13, .external_lex_state = 4}, - [2638] = {.lex_state = 13, .external_lex_state = 4}, - [2639] = {.lex_state = 13, .external_lex_state = 4}, - [2640] = {.lex_state = 13, .external_lex_state = 4}, - [2641] = {.lex_state = 13, .external_lex_state = 4}, - [2642] = {.lex_state = 13, .external_lex_state = 4}, - [2643] = {.lex_state = 13, .external_lex_state = 4}, - [2644] = {.lex_state = 13, .external_lex_state = 4}, - [2645] = {.lex_state = 13, .external_lex_state = 4}, - [2646] = {.lex_state = 13, .external_lex_state = 4}, - [2647] = {.lex_state = 13, .external_lex_state = 4}, - [2648] = {.lex_state = 13, .external_lex_state = 4}, - [2649] = {.lex_state = 13, .external_lex_state = 4}, - [2650] = {.lex_state = 13, .external_lex_state = 3}, - [2651] = {.lex_state = 13, .external_lex_state = 3}, - [2652] = {.lex_state = 13, .external_lex_state = 4}, - [2653] = {.lex_state = 13, .external_lex_state = 4}, - [2654] = {.lex_state = 13, .external_lex_state = 3}, - [2655] = {.lex_state = 13, .external_lex_state = 4}, - [2656] = {.lex_state = 13, .external_lex_state = 3}, - [2657] = {.lex_state = 13, .external_lex_state = 3}, - [2658] = {.lex_state = 13, .external_lex_state = 3}, - [2659] = {.lex_state = 13, .external_lex_state = 4}, - [2660] = {.lex_state = 13, .external_lex_state = 3}, - [2661] = {.lex_state = 13, .external_lex_state = 3}, - [2662] = {.lex_state = 13, .external_lex_state = 3}, - [2663] = {.lex_state = 13, .external_lex_state = 3}, - [2664] = {.lex_state = 13, .external_lex_state = 3}, - [2665] = {.lex_state = 13, .external_lex_state = 3}, - [2666] = {.lex_state = 13, .external_lex_state = 3}, - [2667] = {.lex_state = 13, .external_lex_state = 3}, - [2668] = {.lex_state = 13, .external_lex_state = 3}, - [2669] = {.lex_state = 13, .external_lex_state = 3}, - [2670] = {.lex_state = 13, .external_lex_state = 3}, - [2671] = {.lex_state = 13, .external_lex_state = 3}, - [2672] = {.lex_state = 13, .external_lex_state = 3}, - [2673] = {.lex_state = 13, .external_lex_state = 3}, - [2674] = {.lex_state = 13, .external_lex_state = 3}, - [2675] = {.lex_state = 13, .external_lex_state = 3}, - [2676] = {.lex_state = 13, .external_lex_state = 3}, - [2677] = {.lex_state = 13, .external_lex_state = 3}, - [2678] = {.lex_state = 13, .external_lex_state = 3}, - [2679] = {.lex_state = 13, .external_lex_state = 3}, - [2680] = {.lex_state = 13, .external_lex_state = 3}, - [2681] = {.lex_state = 13, .external_lex_state = 3}, - [2682] = {.lex_state = 13, .external_lex_state = 3}, - [2683] = {.lex_state = 13, .external_lex_state = 3}, - [2684] = {.lex_state = 13, .external_lex_state = 3}, - [2685] = {.lex_state = 13, .external_lex_state = 3}, - [2686] = {.lex_state = 13, .external_lex_state = 3}, - [2687] = {.lex_state = 13, .external_lex_state = 3}, - [2688] = {.lex_state = 13, .external_lex_state = 3}, - [2689] = {.lex_state = 13, .external_lex_state = 3}, - [2690] = {.lex_state = 13, .external_lex_state = 3}, - [2691] = {.lex_state = 13, .external_lex_state = 3}, - [2692] = {.lex_state = 13, .external_lex_state = 3}, - [2693] = {.lex_state = 13, .external_lex_state = 3}, - [2694] = {.lex_state = 13, .external_lex_state = 3}, - [2695] = {.lex_state = 13, .external_lex_state = 3}, - [2696] = {.lex_state = 13, .external_lex_state = 3}, - [2697] = {.lex_state = 13, .external_lex_state = 3}, - [2698] = {.lex_state = 13, .external_lex_state = 3}, - [2699] = {.lex_state = 13, .external_lex_state = 3}, - [2700] = {.lex_state = 13, .external_lex_state = 3}, - [2701] = {.lex_state = 13, .external_lex_state = 3}, - [2702] = {.lex_state = 13, .external_lex_state = 3}, - [2703] = {.lex_state = 13, .external_lex_state = 3}, - [2704] = {.lex_state = 13, .external_lex_state = 3}, - [2705] = {.lex_state = 13, .external_lex_state = 3}, - [2706] = {.lex_state = 13, .external_lex_state = 3}, - [2707] = {.lex_state = 13, .external_lex_state = 3}, - [2708] = {.lex_state = 13, .external_lex_state = 3}, - [2709] = {.lex_state = 13, .external_lex_state = 3}, - [2710] = {.lex_state = 13, .external_lex_state = 3}, - [2711] = {.lex_state = 13, .external_lex_state = 3}, - [2712] = {.lex_state = 13, .external_lex_state = 3}, - [2713] = {.lex_state = 13, .external_lex_state = 3}, - [2714] = {.lex_state = 13, .external_lex_state = 3}, - [2715] = {.lex_state = 13, .external_lex_state = 3}, - [2716] = {.lex_state = 13, .external_lex_state = 3}, - [2717] = {.lex_state = 13, .external_lex_state = 3}, - [2718] = {.lex_state = 13, .external_lex_state = 3}, - [2719] = {.lex_state = 13, .external_lex_state = 3}, - [2720] = {.lex_state = 13, .external_lex_state = 3}, - [2721] = {.lex_state = 13, .external_lex_state = 3}, - [2722] = {.lex_state = 13, .external_lex_state = 3}, - [2723] = {.lex_state = 13, .external_lex_state = 3}, - [2724] = {.lex_state = 13, .external_lex_state = 3}, - [2725] = {.lex_state = 13, .external_lex_state = 3}, - [2726] = {.lex_state = 13, .external_lex_state = 3}, - [2727] = {.lex_state = 13, .external_lex_state = 3}, - [2728] = {.lex_state = 13, .external_lex_state = 3}, - [2729] = {.lex_state = 13, .external_lex_state = 3}, - [2730] = {.lex_state = 13, .external_lex_state = 3}, - [2731] = {.lex_state = 13, .external_lex_state = 3}, - [2732] = {.lex_state = 13, .external_lex_state = 3}, - [2733] = {.lex_state = 13, .external_lex_state = 3}, - [2734] = {.lex_state = 13, .external_lex_state = 3}, - [2735] = {.lex_state = 13, .external_lex_state = 3}, - [2736] = {.lex_state = 13, .external_lex_state = 3}, - [2737] = {.lex_state = 13, .external_lex_state = 3}, - [2738] = {.lex_state = 13, .external_lex_state = 3}, - [2739] = {.lex_state = 13, .external_lex_state = 3}, - [2740] = {.lex_state = 13, .external_lex_state = 3}, - [2741] = {.lex_state = 13, .external_lex_state = 3}, - [2742] = {.lex_state = 13, .external_lex_state = 3}, - [2743] = {.lex_state = 13, .external_lex_state = 3}, - [2744] = {.lex_state = 13, .external_lex_state = 3}, - [2745] = {.lex_state = 13, .external_lex_state = 3}, - [2746] = {.lex_state = 13, .external_lex_state = 3}, - [2747] = {.lex_state = 13, .external_lex_state = 3}, - [2748] = {.lex_state = 13, .external_lex_state = 3}, - [2749] = {.lex_state = 13, .external_lex_state = 3}, - [2750] = {.lex_state = 13, .external_lex_state = 3}, - [2751] = {.lex_state = 13, .external_lex_state = 3}, - [2752] = {.lex_state = 13, .external_lex_state = 3}, - [2753] = {.lex_state = 13, .external_lex_state = 3}, - [2754] = {.lex_state = 13, .external_lex_state = 3}, - [2755] = {.lex_state = 13, .external_lex_state = 3}, - [2756] = {.lex_state = 13, .external_lex_state = 3}, - [2757] = {.lex_state = 13, .external_lex_state = 3}, - [2758] = {.lex_state = 13, .external_lex_state = 3}, - [2759] = {.lex_state = 13, .external_lex_state = 3}, - [2760] = {.lex_state = 13, .external_lex_state = 3}, - [2761] = {.lex_state = 13, .external_lex_state = 3}, - [2762] = {.lex_state = 13, .external_lex_state = 3}, - [2763] = {.lex_state = 13, .external_lex_state = 3}, - [2764] = {.lex_state = 13, .external_lex_state = 3}, - [2765] = {.lex_state = 13, .external_lex_state = 3}, - [2766] = {.lex_state = 13, .external_lex_state = 3}, - [2767] = {.lex_state = 13, .external_lex_state = 3}, - [2768] = {.lex_state = 13, .external_lex_state = 3}, - [2769] = {.lex_state = 13, .external_lex_state = 3}, - [2770] = {.lex_state = 13, .external_lex_state = 3}, - [2771] = {.lex_state = 13, .external_lex_state = 3}, - [2772] = {.lex_state = 13, .external_lex_state = 3}, - [2773] = {.lex_state = 13, .external_lex_state = 3}, - [2774] = {.lex_state = 13, .external_lex_state = 3}, - [2775] = {.lex_state = 13, .external_lex_state = 3}, - [2776] = {.lex_state = 13, .external_lex_state = 3}, - [2777] = {.lex_state = 13, .external_lex_state = 3}, - [2778] = {.lex_state = 13, .external_lex_state = 3}, - [2779] = {.lex_state = 13, .external_lex_state = 3}, - [2780] = {.lex_state = 13, .external_lex_state = 3}, - [2781] = {.lex_state = 13, .external_lex_state = 3}, - [2782] = {.lex_state = 13, .external_lex_state = 3}, - [2783] = {.lex_state = 13, .external_lex_state = 3}, - [2784] = {.lex_state = 13, .external_lex_state = 3}, - [2785] = {.lex_state = 13, .external_lex_state = 3}, - [2786] = {.lex_state = 13, .external_lex_state = 3}, - [2787] = {.lex_state = 13, .external_lex_state = 3}, - [2788] = {.lex_state = 13, .external_lex_state = 3}, - [2789] = {.lex_state = 13, .external_lex_state = 3}, - [2790] = {.lex_state = 13, .external_lex_state = 3}, - [2791] = {.lex_state = 13, .external_lex_state = 3}, - [2792] = {.lex_state = 43, .external_lex_state = 2}, - [2793] = {.lex_state = 13, .external_lex_state = 3}, - [2794] = {.lex_state = 13, .external_lex_state = 3}, - [2795] = {.lex_state = 13, .external_lex_state = 3}, - [2796] = {.lex_state = 43, .external_lex_state = 2}, - [2797] = {.lex_state = 13, .external_lex_state = 3}, - [2798] = {.lex_state = 13, .external_lex_state = 3}, - [2799] = {.lex_state = 13, .external_lex_state = 3}, - [2800] = {.lex_state = 13, .external_lex_state = 3}, - [2801] = {.lex_state = 13, .external_lex_state = 3}, - [2802] = {.lex_state = 43, .external_lex_state = 2}, - [2803] = {.lex_state = 13, .external_lex_state = 3}, - [2804] = {.lex_state = 13, .external_lex_state = 3}, - [2805] = {.lex_state = 13, .external_lex_state = 3}, - [2806] = {.lex_state = 13, .external_lex_state = 3}, - [2807] = {.lex_state = 13, .external_lex_state = 3}, - [2808] = {.lex_state = 13, .external_lex_state = 3}, - [2809] = {.lex_state = 13, .external_lex_state = 3}, - [2810] = {.lex_state = 13, .external_lex_state = 3}, - [2811] = {.lex_state = 13, .external_lex_state = 3}, - [2812] = {.lex_state = 13, .external_lex_state = 3}, - [2813] = {.lex_state = 13, .external_lex_state = 3}, - [2814] = {.lex_state = 13, .external_lex_state = 3}, - [2815] = {.lex_state = 13, .external_lex_state = 3}, - [2816] = {.lex_state = 13, .external_lex_state = 3}, - [2817] = {.lex_state = 43, .external_lex_state = 2}, - [2818] = {.lex_state = 43, .external_lex_state = 2}, - [2819] = {.lex_state = 43, .external_lex_state = 2}, - [2820] = {.lex_state = 43, .external_lex_state = 2}, - [2821] = {.lex_state = 43, .external_lex_state = 2}, - [2822] = {.lex_state = 43, .external_lex_state = 2}, - [2823] = {.lex_state = 43, .external_lex_state = 2}, - [2824] = {.lex_state = 43, .external_lex_state = 2}, - [2825] = {.lex_state = 43, .external_lex_state = 2}, - [2826] = {.lex_state = 43, .external_lex_state = 2}, - [2827] = {.lex_state = 43, .external_lex_state = 2}, - [2828] = {.lex_state = 43, .external_lex_state = 2}, - [2829] = {.lex_state = 43, .external_lex_state = 2}, - [2830] = {.lex_state = 43, .external_lex_state = 2}, - [2831] = {.lex_state = 43, .external_lex_state = 2}, - [2832] = {.lex_state = 43, .external_lex_state = 2}, - [2833] = {.lex_state = 43, .external_lex_state = 2}, - [2834] = {.lex_state = 43, .external_lex_state = 2}, - [2835] = {.lex_state = 43, .external_lex_state = 2}, - [2836] = {.lex_state = 43, .external_lex_state = 2}, - [2837] = {.lex_state = 43, .external_lex_state = 2}, - [2838] = {.lex_state = 43, .external_lex_state = 2}, - [2839] = {.lex_state = 43, .external_lex_state = 2}, - [2840] = {.lex_state = 43, .external_lex_state = 2}, - [2841] = {.lex_state = 43, .external_lex_state = 2}, - [2842] = {.lex_state = 43, .external_lex_state = 2}, - [2843] = {.lex_state = 43, .external_lex_state = 2}, - [2844] = {.lex_state = 44, .external_lex_state = 2}, - [2845] = {.lex_state = 13, .external_lex_state = 3}, - [2846] = {.lex_state = 14, .external_lex_state = 3}, - [2847] = {.lex_state = 14, .external_lex_state = 3}, - [2848] = {.lex_state = 14, .external_lex_state = 3}, - [2849] = {.lex_state = 14, .external_lex_state = 3}, - [2850] = {.lex_state = 14, .external_lex_state = 3}, - [2851] = {.lex_state = 14, .external_lex_state = 3}, - [2852] = {.lex_state = 14, .external_lex_state = 3}, - [2853] = {.lex_state = 14, .external_lex_state = 3}, - [2854] = {.lex_state = 14, .external_lex_state = 3}, - [2855] = {.lex_state = 14, .external_lex_state = 3}, - [2856] = {.lex_state = 14, .external_lex_state = 3}, - [2857] = {.lex_state = 14, .external_lex_state = 3}, - [2858] = {.lex_state = 13, .external_lex_state = 3}, - [2859] = {.lex_state = 13, .external_lex_state = 3}, - [2860] = {.lex_state = 13, .external_lex_state = 3}, - [2861] = {.lex_state = 13, .external_lex_state = 3}, - [2862] = {.lex_state = 14, .external_lex_state = 3}, - [2863] = {.lex_state = 14, .external_lex_state = 3}, - [2864] = {.lex_state = 13, .external_lex_state = 3}, - [2865] = {.lex_state = 14, .external_lex_state = 3}, - [2866] = {.lex_state = 13, .external_lex_state = 3}, - [2867] = {.lex_state = 13, .external_lex_state = 3}, - [2868] = {.lex_state = 14, .external_lex_state = 3}, - [2869] = {.lex_state = 14, .external_lex_state = 3}, - [2870] = {.lex_state = 14, .external_lex_state = 3}, - [2871] = {.lex_state = 14, .external_lex_state = 3}, - [2872] = {.lex_state = 13, .external_lex_state = 3}, - [2873] = {.lex_state = 13, .external_lex_state = 3}, - [2874] = {.lex_state = 13, .external_lex_state = 3}, - [2875] = {.lex_state = 13, .external_lex_state = 3}, - [2876] = {.lex_state = 13, .external_lex_state = 3}, - [2877] = {.lex_state = 13, .external_lex_state = 3}, - [2878] = {.lex_state = 13, .external_lex_state = 3}, - [2879] = {.lex_state = 13, .external_lex_state = 3}, - [2880] = {.lex_state = 13, .external_lex_state = 3}, - [2881] = {.lex_state = 13, .external_lex_state = 3}, - [2882] = {.lex_state = 13, .external_lex_state = 3}, - [2883] = {.lex_state = 13, .external_lex_state = 3}, - [2884] = {.lex_state = 13, .external_lex_state = 3}, - [2885] = {.lex_state = 13, .external_lex_state = 3}, - [2886] = {.lex_state = 13, .external_lex_state = 3}, - [2887] = {.lex_state = 13, .external_lex_state = 3}, - [2888] = {.lex_state = 13, .external_lex_state = 3}, - [2889] = {.lex_state = 13, .external_lex_state = 3}, - [2890] = {.lex_state = 13, .external_lex_state = 3}, - [2891] = {.lex_state = 13, .external_lex_state = 3}, - [2892] = {.lex_state = 13, .external_lex_state = 3}, - [2893] = {.lex_state = 13, .external_lex_state = 3}, - [2894] = {.lex_state = 50, .external_lex_state = 5}, - [2895] = {.lex_state = 5, .external_lex_state = 3}, - [2896] = {.lex_state = 50, .external_lex_state = 5}, - [2897] = {.lex_state = 50, .external_lex_state = 5}, - [2898] = {.lex_state = 50, .external_lex_state = 5}, - [2899] = {.lex_state = 50, .external_lex_state = 5}, - [2900] = {.lex_state = 64, .external_lex_state = 3}, - [2901] = {.lex_state = 50, .external_lex_state = 5}, - [2902] = {.lex_state = 5, .external_lex_state = 3}, - [2903] = {.lex_state = 5, .external_lex_state = 3}, - [2904] = {.lex_state = 13, .external_lex_state = 3}, - [2905] = {.lex_state = 67, .external_lex_state = 3}, - [2906] = {.lex_state = 13, .external_lex_state = 3}, - [2907] = {.lex_state = 13, .external_lex_state = 3}, - [2908] = {.lex_state = 13, .external_lex_state = 3}, - [2909] = {.lex_state = 13, .external_lex_state = 3}, - [2910] = {.lex_state = 18, .external_lex_state = 3}, - [2911] = {.lex_state = 13, .external_lex_state = 3}, - [2912] = {.lex_state = 18, .external_lex_state = 3}, - [2913] = {.lex_state = 18, .external_lex_state = 3}, - [2914] = {.lex_state = 5, .external_lex_state = 3}, - [2915] = {.lex_state = 67, .external_lex_state = 3}, - [2916] = {.lex_state = 13, .external_lex_state = 3}, - [2917] = {.lex_state = 18, .external_lex_state = 3}, - [2918] = {.lex_state = 13, .external_lex_state = 3}, - [2919] = {.lex_state = 18, .external_lex_state = 3}, - [2920] = {.lex_state = 18, .external_lex_state = 3}, - [2921] = {.lex_state = 18, .external_lex_state = 3}, - [2922] = {.lex_state = 76, .external_lex_state = 3}, - [2923] = {.lex_state = 18, .external_lex_state = 3}, - [2924] = {.lex_state = 18, .external_lex_state = 3}, - [2925] = {.lex_state = 13, .external_lex_state = 3}, - [2926] = {.lex_state = 67, .external_lex_state = 3}, - [2927] = {.lex_state = 18, .external_lex_state = 3}, - [2928] = {.lex_state = 18, .external_lex_state = 3}, - [2929] = {.lex_state = 18, .external_lex_state = 3}, - [2930] = {.lex_state = 58, .external_lex_state = 3}, - [2931] = {.lex_state = 18, .external_lex_state = 3}, - [2932] = {.lex_state = 18, .external_lex_state = 3}, - [2933] = {.lex_state = 18, .external_lex_state = 3}, - [2934] = {.lex_state = 18, .external_lex_state = 3}, - [2935] = {.lex_state = 76, .external_lex_state = 3}, - [2936] = {.lex_state = 18, .external_lex_state = 3}, - [2937] = {.lex_state = 18, .external_lex_state = 3}, - [2938] = {.lex_state = 64, .external_lex_state = 3}, - [2939] = {.lex_state = 13, .external_lex_state = 3}, - [2940] = {.lex_state = 64, .external_lex_state = 3}, - [2941] = {.lex_state = 72, .external_lex_state = 3}, - [2942] = {.lex_state = 71, .external_lex_state = 3}, - [2943] = {.lex_state = 13, .external_lex_state = 3}, - [2944] = {.lex_state = 64, .external_lex_state = 3}, - [2945] = {.lex_state = 13, .external_lex_state = 3}, - [2946] = {.lex_state = 13, .external_lex_state = 3}, - [2947] = {.lex_state = 64, .external_lex_state = 3}, - [2948] = {.lex_state = 13, .external_lex_state = 3}, - [2949] = {.lex_state = 64, .external_lex_state = 3}, - [2950] = {.lex_state = 64, .external_lex_state = 3}, - [2951] = {.lex_state = 64, .external_lex_state = 3}, - [2952] = {.lex_state = 64, .external_lex_state = 3}, - [2953] = {.lex_state = 71, .external_lex_state = 3}, - [2954] = {.lex_state = 64, .external_lex_state = 3}, - [2955] = {.lex_state = 64, .external_lex_state = 3}, - [2956] = {.lex_state = 74, .external_lex_state = 4}, - [2957] = {.lex_state = 5, .external_lex_state = 4}, - [2958] = {.lex_state = 64, .external_lex_state = 3}, - [2959] = {.lex_state = 64, .external_lex_state = 3}, - [2960] = {.lex_state = 71, .external_lex_state = 3}, - [2961] = {.lex_state = 64, .external_lex_state = 3}, - [2962] = {.lex_state = 71, .external_lex_state = 3}, - [2963] = {.lex_state = 74, .external_lex_state = 4}, - [2964] = {.lex_state = 13, .external_lex_state = 3}, - [2965] = {.lex_state = 18, .external_lex_state = 3}, - [2966] = {.lex_state = 64, .external_lex_state = 3}, - [2967] = {.lex_state = 64, .external_lex_state = 3}, - [2968] = {.lex_state = 18, .external_lex_state = 3}, - [2969] = {.lex_state = 64, .external_lex_state = 3}, - [2970] = {.lex_state = 64, .external_lex_state = 3}, - [2971] = {.lex_state = 64, .external_lex_state = 3}, - [2972] = {.lex_state = 72, .external_lex_state = 3}, - [2973] = {.lex_state = 13, .external_lex_state = 3}, - [2974] = {.lex_state = 72, .external_lex_state = 3}, - [2975] = {.lex_state = 64, .external_lex_state = 3}, - [2976] = {.lex_state = 64, .external_lex_state = 3}, - [2977] = {.lex_state = 72, .external_lex_state = 3}, - [2978] = {.lex_state = 72, .external_lex_state = 3}, - [2979] = {.lex_state = 67, .external_lex_state = 3}, - [2980] = {.lex_state = 67, .external_lex_state = 3}, - [2981] = {.lex_state = 67, .external_lex_state = 3}, - [2982] = {.lex_state = 72, .external_lex_state = 3}, - [2983] = {.lex_state = 72, .external_lex_state = 3}, - [2984] = {.lex_state = 72, .external_lex_state = 3}, - [2985] = {.lex_state = 64, .external_lex_state = 3}, - [2986] = {.lex_state = 64, .external_lex_state = 3}, - [2987] = {.lex_state = 77, .external_lex_state = 4}, - [2988] = {.lex_state = 72, .external_lex_state = 3}, - [2989] = {.lex_state = 66, .external_lex_state = 3}, - [2990] = {.lex_state = 72, .external_lex_state = 3}, - [2991] = {.lex_state = 64, .external_lex_state = 3}, - [2992] = {.lex_state = 5, .external_lex_state = 4}, - [2993] = {.lex_state = 64, .external_lex_state = 3}, - [2994] = {.lex_state = 64, .external_lex_state = 3}, - [2995] = {.lex_state = 72, .external_lex_state = 3}, - [2996] = {.lex_state = 72, .external_lex_state = 3}, - [2997] = {.lex_state = 72, .external_lex_state = 3}, - [2998] = {.lex_state = 5, .external_lex_state = 3}, - [2999] = {.lex_state = 5, .external_lex_state = 4}, - [3000] = {.lex_state = 72, .external_lex_state = 3}, - [3001] = {.lex_state = 64, .external_lex_state = 3}, - [3002] = {.lex_state = 67, .external_lex_state = 3}, - [3003] = {.lex_state = 72, .external_lex_state = 3}, - [3004] = {.lex_state = 72, .external_lex_state = 3}, - [3005] = {.lex_state = 5, .external_lex_state = 3}, - [3006] = {.lex_state = 72, .external_lex_state = 3}, - [3007] = {.lex_state = 13, .external_lex_state = 4}, - [3008] = {.lex_state = 77, .external_lex_state = 4}, - [3009] = {.lex_state = 5, .external_lex_state = 4}, - [3010] = {.lex_state = 64, .external_lex_state = 3}, - [3011] = {.lex_state = 64, .external_lex_state = 3}, - [3012] = {.lex_state = 64, .external_lex_state = 3}, - [3013] = {.lex_state = 64, .external_lex_state = 3}, - [3014] = {.lex_state = 64, .external_lex_state = 3}, - [3015] = {.lex_state = 64, .external_lex_state = 3}, - [3016] = {.lex_state = 64, .external_lex_state = 3}, - [3017] = {.lex_state = 64, .external_lex_state = 3}, - [3018] = {.lex_state = 64, .external_lex_state = 3}, - [3019] = {.lex_state = 64, .external_lex_state = 3}, - [3020] = {.lex_state = 78, .external_lex_state = 4}, - [3021] = {.lex_state = 64, .external_lex_state = 3}, - [3022] = {.lex_state = 64, .external_lex_state = 3}, - [3023] = {.lex_state = 64, .external_lex_state = 3}, - [3024] = {.lex_state = 13, .external_lex_state = 3}, - [3025] = {.lex_state = 64, .external_lex_state = 3}, - [3026] = {.lex_state = 5, .external_lex_state = 4}, - [3027] = {.lex_state = 64, .external_lex_state = 3}, - [3028] = {.lex_state = 64, .external_lex_state = 3}, - [3029] = {.lex_state = 13, .external_lex_state = 4}, - [3030] = {.lex_state = 64, .external_lex_state = 3}, - [3031] = {.lex_state = 13, .external_lex_state = 3}, - [3032] = {.lex_state = 64, .external_lex_state = 3}, - [3033] = {.lex_state = 13, .external_lex_state = 4}, - [3034] = {.lex_state = 64, .external_lex_state = 3}, - [3035] = {.lex_state = 13, .external_lex_state = 3}, - [3036] = {.lex_state = 64, .external_lex_state = 3}, - [3037] = {.lex_state = 64, .external_lex_state = 3}, - [3038] = {.lex_state = 64, .external_lex_state = 3}, - [3039] = {.lex_state = 64, .external_lex_state = 3}, - [3040] = {.lex_state = 64, .external_lex_state = 3}, - [3041] = {.lex_state = 64, .external_lex_state = 3}, - [3042] = {.lex_state = 64, .external_lex_state = 3}, - [3043] = {.lex_state = 64, .external_lex_state = 3}, - [3044] = {.lex_state = 64, .external_lex_state = 3}, - [3045] = {.lex_state = 64, .external_lex_state = 3}, - [3046] = {.lex_state = 13, .external_lex_state = 3}, - [3047] = {.lex_state = 64, .external_lex_state = 3}, - [3048] = {.lex_state = 64, .external_lex_state = 3}, - [3049] = {.lex_state = 64, .external_lex_state = 3}, - [3050] = {.lex_state = 64, .external_lex_state = 3}, - [3051] = {.lex_state = 64, .external_lex_state = 3}, - [3052] = {.lex_state = 64, .external_lex_state = 3}, - [3053] = {.lex_state = 64, .external_lex_state = 3}, - [3054] = {.lex_state = 64, .external_lex_state = 3}, - [3055] = {.lex_state = 64, .external_lex_state = 3}, - [3056] = {.lex_state = 64, .external_lex_state = 3}, - [3057] = {.lex_state = 64, .external_lex_state = 3}, - [3058] = {.lex_state = 64, .external_lex_state = 3}, - [3059] = {.lex_state = 64, .external_lex_state = 3}, - [3060] = {.lex_state = 64, .external_lex_state = 3}, - [3061] = {.lex_state = 64, .external_lex_state = 3}, - [3062] = {.lex_state = 64, .external_lex_state = 3}, - [3063] = {.lex_state = 78, .external_lex_state = 4}, - [3064] = {.lex_state = 64, .external_lex_state = 3}, - [3065] = {.lex_state = 64, .external_lex_state = 3}, - [3066] = {.lex_state = 64, .external_lex_state = 3}, - [3067] = {.lex_state = 64, .external_lex_state = 3}, - [3068] = {.lex_state = 64, .external_lex_state = 3}, - [3069] = {.lex_state = 64, .external_lex_state = 3}, - [3070] = {.lex_state = 13, .external_lex_state = 3}, - [3071] = {.lex_state = 64, .external_lex_state = 3}, - [3072] = {.lex_state = 64, .external_lex_state = 3}, - [3073] = {.lex_state = 64, .external_lex_state = 3}, - [3074] = {.lex_state = 64, .external_lex_state = 3}, - [3075] = {.lex_state = 5, .external_lex_state = 4}, - [3076] = {.lex_state = 13, .external_lex_state = 3}, - [3077] = {.lex_state = 64, .external_lex_state = 3}, - [3078] = {.lex_state = 13, .external_lex_state = 3}, - [3079] = {.lex_state = 64, .external_lex_state = 3}, - [3080] = {.lex_state = 64, .external_lex_state = 3}, - [3081] = {.lex_state = 64, .external_lex_state = 3}, - [3082] = {.lex_state = 64, .external_lex_state = 3}, - [3083] = {.lex_state = 64, .external_lex_state = 3}, - [3084] = {.lex_state = 64, .external_lex_state = 3}, - [3085] = {.lex_state = 64, .external_lex_state = 3}, - [3086] = {.lex_state = 64, .external_lex_state = 3}, - [3087] = {.lex_state = 64, .external_lex_state = 3}, - [3088] = {.lex_state = 64, .external_lex_state = 3}, - [3089] = {.lex_state = 64, .external_lex_state = 3}, - [3090] = {.lex_state = 64, .external_lex_state = 3}, - [3091] = {.lex_state = 64, .external_lex_state = 3}, - [3092] = {.lex_state = 64, .external_lex_state = 3}, - [3093] = {.lex_state = 64, .external_lex_state = 3}, - [3094] = {.lex_state = 64, .external_lex_state = 3}, - [3095] = {.lex_state = 64, .external_lex_state = 3}, - [3096] = {.lex_state = 64, .external_lex_state = 3}, - [3097] = {.lex_state = 64, .external_lex_state = 3}, - [3098] = {.lex_state = 64, .external_lex_state = 3}, - [3099] = {.lex_state = 64, .external_lex_state = 3}, - [3100] = {.lex_state = 64, .external_lex_state = 3}, - [3101] = {.lex_state = 13, .external_lex_state = 3}, - [3102] = {.lex_state = 64, .external_lex_state = 3}, - [3103] = {.lex_state = 64, .external_lex_state = 3}, - [3104] = {.lex_state = 64, .external_lex_state = 3}, - [3105] = {.lex_state = 64, .external_lex_state = 3}, - [3106] = {.lex_state = 64, .external_lex_state = 3}, - [3107] = {.lex_state = 64, .external_lex_state = 3}, - [3108] = {.lex_state = 64, .external_lex_state = 3}, - [3109] = {.lex_state = 13, .external_lex_state = 3}, - [3110] = {.lex_state = 64, .external_lex_state = 3}, - [3111] = {.lex_state = 64, .external_lex_state = 3}, - [3112] = {.lex_state = 64, .external_lex_state = 3}, - [3113] = {.lex_state = 64, .external_lex_state = 3}, - [3114] = {.lex_state = 64, .external_lex_state = 3}, - [3115] = {.lex_state = 64, .external_lex_state = 3}, - [3116] = {.lex_state = 64, .external_lex_state = 3}, - [3117] = {.lex_state = 64, .external_lex_state = 3}, - [3118] = {.lex_state = 64, .external_lex_state = 3}, - [3119] = {.lex_state = 64, .external_lex_state = 3}, - [3120] = {.lex_state = 13, .external_lex_state = 3}, - [3121] = {.lex_state = 5, .external_lex_state = 4}, - [3122] = {.lex_state = 13, .external_lex_state = 4}, - [3123] = {.lex_state = 50, .external_lex_state = 3}, - [3124] = {.lex_state = 50, .external_lex_state = 3}, - [3125] = {.lex_state = 50, .external_lex_state = 3}, - [3126] = {.lex_state = 13, .external_lex_state = 4}, - [3127] = {.lex_state = 5, .external_lex_state = 4}, - [3128] = {.lex_state = 5, .external_lex_state = 4}, - [3129] = {.lex_state = 5, .external_lex_state = 4}, - [3130] = {.lex_state = 24, .external_lex_state = 3}, - [3131] = {.lex_state = 13, .external_lex_state = 3}, - [3132] = {.lex_state = 64, .external_lex_state = 3}, - [3133] = {.lex_state = 5, .external_lex_state = 4}, - [3134] = {.lex_state = 64, .external_lex_state = 3}, - [3135] = {.lex_state = 64, .external_lex_state = 3}, - [3136] = {.lex_state = 5, .external_lex_state = 4}, - [3137] = {.lex_state = 5, .external_lex_state = 4}, - [3138] = {.lex_state = 5, .external_lex_state = 4}, - [3139] = {.lex_state = 5, .external_lex_state = 4}, - [3140] = {.lex_state = 13, .external_lex_state = 3}, - [3141] = {.lex_state = 13, .external_lex_state = 3}, - [3142] = {.lex_state = 13, .external_lex_state = 3}, - [3143] = {.lex_state = 5, .external_lex_state = 4}, - [3144] = {.lex_state = 5, .external_lex_state = 4}, - [3145] = {.lex_state = 5, .external_lex_state = 4}, - [3146] = {.lex_state = 13, .external_lex_state = 3}, - [3147] = {.lex_state = 64, .external_lex_state = 3}, - [3148] = {.lex_state = 13, .external_lex_state = 3}, - [3149] = {.lex_state = 50, .external_lex_state = 3}, - [3150] = {.lex_state = 13, .external_lex_state = 3}, - [3151] = {.lex_state = 13, .external_lex_state = 3}, - [3152] = {.lex_state = 50, .external_lex_state = 3}, - [3153] = {.lex_state = 48, .external_lex_state = 5}, - [3154] = {.lex_state = 64, .external_lex_state = 3}, - [3155] = {.lex_state = 50, .external_lex_state = 3}, - [3156] = {.lex_state = 5, .external_lex_state = 4}, - [3157] = {.lex_state = 5, .external_lex_state = 4}, - [3158] = {.lex_state = 50, .external_lex_state = 3}, - [3159] = {.lex_state = 13, .external_lex_state = 4}, - [3160] = {.lex_state = 13, .external_lex_state = 3}, - [3161] = {.lex_state = 13, .external_lex_state = 3}, - [3162] = {.lex_state = 13, .external_lex_state = 4}, - [3163] = {.lex_state = 5, .external_lex_state = 4}, - [3164] = {.lex_state = 48, .external_lex_state = 5}, - [3165] = {.lex_state = 50, .external_lex_state = 3}, - [3166] = {.lex_state = 50, .external_lex_state = 3}, - [3167] = {.lex_state = 13, .external_lex_state = 3}, - [3168] = {.lex_state = 50, .external_lex_state = 3}, - [3169] = {.lex_state = 50, .external_lex_state = 3}, - [3170] = {.lex_state = 77, .external_lex_state = 3}, - [3171] = {.lex_state = 77, .external_lex_state = 3}, - [3172] = {.lex_state = 64, .external_lex_state = 3}, - [3173] = {.lex_state = 50, .external_lex_state = 3}, - [3174] = {.lex_state = 13, .external_lex_state = 3}, - [3175] = {.lex_state = 13, .external_lex_state = 3}, - [3176] = {.lex_state = 5, .external_lex_state = 4}, - [3177] = {.lex_state = 13, .external_lex_state = 3}, - [3178] = {.lex_state = 13, .external_lex_state = 3}, - [3179] = {.lex_state = 18, .external_lex_state = 3}, - [3180] = {.lex_state = 18, .external_lex_state = 3}, - [3181] = {.lex_state = 13, .external_lex_state = 3}, - [3182] = {.lex_state = 13, .external_lex_state = 3}, - [3183] = {.lex_state = 13, .external_lex_state = 3}, - [3184] = {.lex_state = 13, .external_lex_state = 3}, - [3185] = {.lex_state = 13, .external_lex_state = 3}, - [3186] = {.lex_state = 18, .external_lex_state = 3}, - [3187] = {.lex_state = 13, .external_lex_state = 3}, - [3188] = {.lex_state = 13, .external_lex_state = 3}, - [3189] = {.lex_state = 13, .external_lex_state = 3}, - [3190] = {.lex_state = 13, .external_lex_state = 3}, - [3191] = {.lex_state = 13, .external_lex_state = 3}, - [3192] = {.lex_state = 19, .external_lex_state = 4}, - [3193] = {.lex_state = 18, .external_lex_state = 3}, - [3194] = {.lex_state = 13, .external_lex_state = 3}, - [3195] = {.lex_state = 13, .external_lex_state = 4}, - [3196] = {.lex_state = 13, .external_lex_state = 3}, - [3197] = {.lex_state = 13, .external_lex_state = 3}, - [3198] = {.lex_state = 13, .external_lex_state = 4}, - [3199] = {.lex_state = 13, .external_lex_state = 4}, - [3200] = {.lex_state = 13, .external_lex_state = 4}, - [3201] = {.lex_state = 13, .external_lex_state = 4}, - [3202] = {.lex_state = 13, .external_lex_state = 4}, - [3203] = {.lex_state = 18, .external_lex_state = 3}, - [3204] = {.lex_state = 13, .external_lex_state = 3}, - [3205] = {.lex_state = 13, .external_lex_state = 3}, - [3206] = {.lex_state = 13, .external_lex_state = 3}, - [3207] = {.lex_state = 18, .external_lex_state = 3}, - [3208] = {.lex_state = 13, .external_lex_state = 3}, - [3209] = {.lex_state = 13, .external_lex_state = 3}, - [3210] = {.lex_state = 13, .external_lex_state = 3}, - [3211] = {.lex_state = 13, .external_lex_state = 3}, - [3212] = {.lex_state = 13, .external_lex_state = 3}, - [3213] = {.lex_state = 13, .external_lex_state = 3}, - [3214] = {.lex_state = 13, .external_lex_state = 3}, - [3215] = {.lex_state = 18, .external_lex_state = 3}, - [3216] = {.lex_state = 13, .external_lex_state = 3}, - [3217] = {.lex_state = 18, .external_lex_state = 3}, - [3218] = {.lex_state = 18, .external_lex_state = 3}, - [3219] = {.lex_state = 13, .external_lex_state = 3}, - [3220] = {.lex_state = 13, .external_lex_state = 3}, - [3221] = {.lex_state = 13, .external_lex_state = 3}, - [3222] = {.lex_state = 13, .external_lex_state = 3}, - [3223] = {.lex_state = 13, .external_lex_state = 3}, - [3224] = {.lex_state = 13, .external_lex_state = 3}, - [3225] = {.lex_state = 13, .external_lex_state = 3}, - [3226] = {.lex_state = 13, .external_lex_state = 4}, - [3227] = {.lex_state = 13, .external_lex_state = 3}, - [3228] = {.lex_state = 13, .external_lex_state = 3}, - [3229] = {.lex_state = 13, .external_lex_state = 3}, - [3230] = {.lex_state = 13, .external_lex_state = 3}, - [3231] = {.lex_state = 13, .external_lex_state = 3}, - [3232] = {.lex_state = 18, .external_lex_state = 3}, - [3233] = {.lex_state = 13, .external_lex_state = 3}, - [3234] = {.lex_state = 13, .external_lex_state = 3}, - [3235] = {.lex_state = 13, .external_lex_state = 3}, - [3236] = {.lex_state = 50, .external_lex_state = 3}, - [3237] = {.lex_state = 13, .external_lex_state = 3}, - [3238] = {.lex_state = 13, .external_lex_state = 3}, - [3239] = {.lex_state = 18, .external_lex_state = 3}, - [3240] = {.lex_state = 13, .external_lex_state = 3}, - [3241] = {.lex_state = 13, .external_lex_state = 4}, - [3242] = {.lex_state = 13, .external_lex_state = 3}, - [3243] = {.lex_state = 13, .external_lex_state = 3}, - [3244] = {.lex_state = 13, .external_lex_state = 4}, - [3245] = {.lex_state = 13, .external_lex_state = 4}, - [3246] = {.lex_state = 13, .external_lex_state = 4}, - [3247] = {.lex_state = 13, .external_lex_state = 4}, - [3248] = {.lex_state = 13, .external_lex_state = 3}, - [3249] = {.lex_state = 19, .external_lex_state = 4}, - [3250] = {.lex_state = 18, .external_lex_state = 3}, - [3251] = {.lex_state = 13, .external_lex_state = 3}, - [3252] = {.lex_state = 19, .external_lex_state = 4}, - [3253] = {.lex_state = 13, .external_lex_state = 3}, - [3254] = {.lex_state = 13, .external_lex_state = 3}, - [3255] = {.lex_state = 13, .external_lex_state = 3}, - [3256] = {.lex_state = 18, .external_lex_state = 3}, - [3257] = {.lex_state = 13, .external_lex_state = 3}, - [3258] = {.lex_state = 59, .external_lex_state = 6}, - [3259] = {.lex_state = 18, .external_lex_state = 7}, - [3260] = {.lex_state = 24, .external_lex_state = 3}, - [3261] = {.lex_state = 19, .external_lex_state = 3}, - [3262] = {.lex_state = 19, .external_lex_state = 4}, - [3263] = {.lex_state = 24, .external_lex_state = 3}, - [3264] = {.lex_state = 19, .external_lex_state = 4}, - [3265] = {.lex_state = 59, .external_lex_state = 6}, - [3266] = {.lex_state = 59, .external_lex_state = 6}, - [3267] = {.lex_state = 64, .external_lex_state = 3}, - [3268] = {.lex_state = 19, .external_lex_state = 3}, - [3269] = {.lex_state = 19, .external_lex_state = 3}, - [3270] = {.lex_state = 19, .external_lex_state = 3}, - [3271] = {.lex_state = 19, .external_lex_state = 4}, - [3272] = {.lex_state = 19, .external_lex_state = 3}, - [3273] = {.lex_state = 19, .external_lex_state = 4}, - [3274] = {.lex_state = 19, .external_lex_state = 3}, - [3275] = {.lex_state = 19, .external_lex_state = 4}, - [3276] = {.lex_state = 19, .external_lex_state = 4}, - [3277] = {.lex_state = 19, .external_lex_state = 4}, - [3278] = {.lex_state = 13, .external_lex_state = 4}, - [3279] = {.lex_state = 13, .external_lex_state = 4}, - [3280] = {.lex_state = 5, .external_lex_state = 4}, - [3281] = {.lex_state = 59, .external_lex_state = 6}, - [3282] = {.lex_state = 13, .external_lex_state = 4}, - [3283] = {.lex_state = 13, .external_lex_state = 4}, - [3284] = {.lex_state = 13, .external_lex_state = 4}, - [3285] = {.lex_state = 13, .external_lex_state = 4}, - [3286] = {.lex_state = 13, .external_lex_state = 4}, - [3287] = {.lex_state = 64, .external_lex_state = 3}, - [3288] = {.lex_state = 75, .external_lex_state = 3}, - [3289] = {.lex_state = 13, .external_lex_state = 4}, - [3290] = {.lex_state = 13, .external_lex_state = 4}, - [3291] = {.lex_state = 13, .external_lex_state = 4}, - [3292] = {.lex_state = 13, .external_lex_state = 4}, - [3293] = {.lex_state = 13, .external_lex_state = 4}, - [3294] = {.lex_state = 59, .external_lex_state = 6}, - [3295] = {.lex_state = 13, .external_lex_state = 4}, - [3296] = {.lex_state = 75, .external_lex_state = 3}, - [3297] = {.lex_state = 59, .external_lex_state = 6}, - [3298] = {.lex_state = 19, .external_lex_state = 4}, - [3299] = {.lex_state = 13, .external_lex_state = 4}, - [3300] = {.lex_state = 19, .external_lex_state = 4}, - [3301] = {.lex_state = 19, .external_lex_state = 3}, - [3302] = {.lex_state = 19, .external_lex_state = 4}, - [3303] = {.lex_state = 13, .external_lex_state = 3}, - [3304] = {.lex_state = 19, .external_lex_state = 4}, - [3305] = {.lex_state = 13, .external_lex_state = 4}, - [3306] = {.lex_state = 13, .external_lex_state = 4}, - [3307] = {.lex_state = 13, .external_lex_state = 4}, - [3308] = {.lex_state = 13, .external_lex_state = 4}, - [3309] = {.lex_state = 13, .external_lex_state = 3}, - [3310] = {.lex_state = 19, .external_lex_state = 3}, - [3311] = {.lex_state = 84, .external_lex_state = 3}, - [3312] = {.lex_state = 19, .external_lex_state = 3}, - [3313] = {.lex_state = 59, .external_lex_state = 6}, - [3314] = {.lex_state = 84, .external_lex_state = 3}, - [3315] = {.lex_state = 59, .external_lex_state = 6}, - [3316] = {.lex_state = 13, .external_lex_state = 4}, - [3317] = {.lex_state = 13, .external_lex_state = 4}, - [3318] = {.lex_state = 13, .external_lex_state = 4}, - [3319] = {.lex_state = 13, .external_lex_state = 4}, - [3320] = {.lex_state = 19, .external_lex_state = 3}, - [3321] = {.lex_state = 19, .external_lex_state = 4}, - [3322] = {.lex_state = 19, .external_lex_state = 3}, - [3323] = {.lex_state = 5, .external_lex_state = 4}, - [3324] = {.lex_state = 19, .external_lex_state = 3}, - [3325] = {.lex_state = 18, .external_lex_state = 3}, - [3326] = {.lex_state = 13, .external_lex_state = 4}, - [3327] = {.lex_state = 18, .external_lex_state = 3}, - [3328] = {.lex_state = 18, .external_lex_state = 3}, - [3329] = {.lex_state = 19, .external_lex_state = 3}, - [3330] = {.lex_state = 13, .external_lex_state = 3}, - [3331] = {.lex_state = 59, .external_lex_state = 6}, - [3332] = {.lex_state = 13, .external_lex_state = 4}, - [3333] = {.lex_state = 13, .external_lex_state = 4}, - [3334] = {.lex_state = 13, .external_lex_state = 4}, - [3335] = {.lex_state = 13, .external_lex_state = 3}, - [3336] = {.lex_state = 13, .external_lex_state = 4}, - [3337] = {.lex_state = 13, .external_lex_state = 4}, - [3338] = {.lex_state = 13, .external_lex_state = 4}, - [3339] = {.lex_state = 13, .external_lex_state = 4}, - [3340] = {.lex_state = 13, .external_lex_state = 4}, - [3341] = {.lex_state = 13, .external_lex_state = 3}, - [3342] = {.lex_state = 13, .external_lex_state = 3}, - [3343] = {.lex_state = 13, .external_lex_state = 4}, - [3344] = {.lex_state = 13, .external_lex_state = 4}, - [3345] = {.lex_state = 59, .external_lex_state = 6}, - [3346] = {.lex_state = 13, .external_lex_state = 3}, - [3347] = {.lex_state = 64, .external_lex_state = 3}, - [3348] = {.lex_state = 5, .external_lex_state = 3}, - [3349] = {.lex_state = 13, .external_lex_state = 3}, - [3350] = {.lex_state = 19, .external_lex_state = 3}, - [3351] = {.lex_state = 13, .external_lex_state = 3}, - [3352] = {.lex_state = 5, .external_lex_state = 4}, - [3353] = {.lex_state = 64, .external_lex_state = 3}, - [3354] = {.lex_state = 13, .external_lex_state = 3}, - [3355] = {.lex_state = 13, .external_lex_state = 4}, - [3356] = {.lex_state = 13, .external_lex_state = 4}, - [3357] = {.lex_state = 5, .external_lex_state = 4}, - [3358] = {.lex_state = 13, .external_lex_state = 3}, - [3359] = {.lex_state = 13, .external_lex_state = 3}, - [3360] = {.lex_state = 13, .external_lex_state = 3}, - [3361] = {.lex_state = 64, .external_lex_state = 3}, - [3362] = {.lex_state = 64, .external_lex_state = 3}, - [3363] = {.lex_state = 13, .external_lex_state = 4}, - [3364] = {.lex_state = 13, .external_lex_state = 4}, - [3365] = {.lex_state = 18, .external_lex_state = 3}, - [3366] = {.lex_state = 13, .external_lex_state = 4}, - [3367] = {.lex_state = 13, .external_lex_state = 4}, - [3368] = {.lex_state = 13, .external_lex_state = 4}, - [3369] = {.lex_state = 70, .external_lex_state = 3}, - [3370] = {.lex_state = 13, .external_lex_state = 4}, - [3371] = {.lex_state = 18, .external_lex_state = 3}, - [3372] = {.lex_state = 13, .external_lex_state = 4}, - [3373] = {.lex_state = 70, .external_lex_state = 3}, - [3374] = {.lex_state = 13, .external_lex_state = 4}, - [3375] = {.lex_state = 13, .external_lex_state = 4}, - [3376] = {.lex_state = 13, .external_lex_state = 4}, - [3377] = {.lex_state = 18, .external_lex_state = 3}, - [3378] = {.lex_state = 13, .external_lex_state = 3}, - [3379] = {.lex_state = 13, .external_lex_state = 4}, - [3380] = {.lex_state = 13, .external_lex_state = 4}, - [3381] = {.lex_state = 13, .external_lex_state = 4}, - [3382] = {.lex_state = 19, .external_lex_state = 3}, - [3383] = {.lex_state = 13, .external_lex_state = 4}, - [3384] = {.lex_state = 13, .external_lex_state = 3}, - [3385] = {.lex_state = 13, .external_lex_state = 3}, - [3386] = {.lex_state = 5, .external_lex_state = 4}, - [3387] = {.lex_state = 5, .external_lex_state = 3}, - [3388] = {.lex_state = 18, .external_lex_state = 3}, - [3389] = {.lex_state = 13, .external_lex_state = 3}, - [3390] = {.lex_state = 13, .external_lex_state = 3}, - [3391] = {.lex_state = 13, .external_lex_state = 3}, - [3392] = {.lex_state = 13, .external_lex_state = 3}, - [3393] = {.lex_state = 5, .external_lex_state = 3}, - [3394] = {.lex_state = 13, .external_lex_state = 4}, - [3395] = {.lex_state = 13, .external_lex_state = 4}, - [3396] = {.lex_state = 18, .external_lex_state = 3}, - [3397] = {.lex_state = 18, .external_lex_state = 3}, - [3398] = {.lex_state = 18, .external_lex_state = 3}, - [3399] = {.lex_state = 18, .external_lex_state = 3}, - [3400] = {.lex_state = 13, .external_lex_state = 4}, - [3401] = {.lex_state = 13, .external_lex_state = 4}, - [3402] = {.lex_state = 13, .external_lex_state = 4}, - [3403] = {.lex_state = 13, .external_lex_state = 4}, - [3404] = {.lex_state = 18, .external_lex_state = 3}, - [3405] = {.lex_state = 18, .external_lex_state = 3}, - [3406] = {.lex_state = 13, .external_lex_state = 4}, - [3407] = {.lex_state = 18, .external_lex_state = 3}, - [3408] = {.lex_state = 64, .external_lex_state = 3}, - [3409] = {.lex_state = 5, .external_lex_state = 4}, - [3410] = {.lex_state = 64, .external_lex_state = 3}, - [3411] = {.lex_state = 18, .external_lex_state = 3}, - [3412] = {.lex_state = 13, .external_lex_state = 3}, - [3413] = {.lex_state = 18, .external_lex_state = 3}, - [3414] = {.lex_state = 13, .external_lex_state = 4}, - [3415] = {.lex_state = 13, .external_lex_state = 4}, - [3416] = {.lex_state = 13, .external_lex_state = 3}, - [3417] = {.lex_state = 13, .external_lex_state = 4}, - [3418] = {.lex_state = 13, .external_lex_state = 4}, - [3419] = {.lex_state = 13, .external_lex_state = 4}, - [3420] = {.lex_state = 13, .external_lex_state = 3}, - [3421] = {.lex_state = 13, .external_lex_state = 4}, - [3422] = {.lex_state = 64, .external_lex_state = 3}, - [3423] = {.lex_state = 64, .external_lex_state = 3}, - [3424] = {.lex_state = 13, .external_lex_state = 4}, - [3425] = {.lex_state = 19, .external_lex_state = 3}, - [3426] = {.lex_state = 13, .external_lex_state = 3}, - [3427] = {.lex_state = 64, .external_lex_state = 3}, - [3428] = {.lex_state = 19, .external_lex_state = 3}, - [3429] = {.lex_state = 64, .external_lex_state = 3}, - [3430] = {.lex_state = 13, .external_lex_state = 3}, - [3431] = {.lex_state = 13, .external_lex_state = 4}, - [3432] = {.lex_state = 13, .external_lex_state = 4}, - [3433] = {.lex_state = 13, .external_lex_state = 3}, - [3434] = {.lex_state = 13, .external_lex_state = 3}, - [3435] = {.lex_state = 13, .external_lex_state = 4}, - [3436] = {.lex_state = 73, .external_lex_state = 3}, - [3437] = {.lex_state = 88, .external_lex_state = 3}, - [3438] = {.lex_state = 13, .external_lex_state = 4}, - [3439] = {.lex_state = 13, .external_lex_state = 4}, - [3440] = {.lex_state = 13, .external_lex_state = 4}, - [3441] = {.lex_state = 13, .external_lex_state = 4}, - [3442] = {.lex_state = 13, .external_lex_state = 4}, - [3443] = {.lex_state = 13, .external_lex_state = 4}, - [3444] = {.lex_state = 13, .external_lex_state = 4}, - [3445] = {.lex_state = 13, .external_lex_state = 4}, - [3446] = {.lex_state = 13, .external_lex_state = 4}, - [3447] = {.lex_state = 13, .external_lex_state = 4}, - [3448] = {.lex_state = 13, .external_lex_state = 4}, - [3449] = {.lex_state = 13, .external_lex_state = 3}, - [3450] = {.lex_state = 13, .external_lex_state = 3}, - [3451] = {.lex_state = 13, .external_lex_state = 3}, - [3452] = {.lex_state = 13, .external_lex_state = 3}, - [3453] = {.lex_state = 13, .external_lex_state = 4}, - [3454] = {.lex_state = 24, .external_lex_state = 3}, - [3455] = {.lex_state = 13, .external_lex_state = 4}, - [3456] = {.lex_state = 18, .external_lex_state = 3}, - [3457] = {.lex_state = 64, .external_lex_state = 3}, - [3458] = {.lex_state = 19, .external_lex_state = 3}, - [3459] = {.lex_state = 19, .external_lex_state = 3}, - [3460] = {.lex_state = 13, .external_lex_state = 4}, - [3461] = {.lex_state = 268, .external_lex_state = 4}, - [3462] = {.lex_state = 64, .external_lex_state = 3}, - [3463] = {.lex_state = 13, .external_lex_state = 4}, - [3464] = {.lex_state = 13, .external_lex_state = 4}, - [3465] = {.lex_state = 5, .external_lex_state = 3}, - [3466] = {.lex_state = 64, .external_lex_state = 3}, - [3467] = {.lex_state = 13, .external_lex_state = 3}, - [3468] = {.lex_state = 13, .external_lex_state = 4}, - [3469] = {.lex_state = 65, .external_lex_state = 3}, - [3470] = {.lex_state = 5, .external_lex_state = 3}, - [3471] = {.lex_state = 24, .external_lex_state = 3}, - [3472] = {.lex_state = 13, .external_lex_state = 4}, - [3473] = {.lex_state = 13, .external_lex_state = 4}, - [3474] = {.lex_state = 13, .external_lex_state = 4}, - [3475] = {.lex_state = 13, .external_lex_state = 4}, - [3476] = {.lex_state = 13, .external_lex_state = 4}, - [3477] = {.lex_state = 13, .external_lex_state = 4}, - [3478] = {.lex_state = 13, .external_lex_state = 3}, - [3479] = {.lex_state = 13, .external_lex_state = 4}, - [3480] = {.lex_state = 13, .external_lex_state = 4}, - [3481] = {.lex_state = 13, .external_lex_state = 4}, - [3482] = {.lex_state = 13, .external_lex_state = 4}, - [3483] = {.lex_state = 19, .external_lex_state = 3}, - [3484] = {.lex_state = 13, .external_lex_state = 4}, - [3485] = {.lex_state = 13, .external_lex_state = 3}, - [3486] = {.lex_state = 13, .external_lex_state = 4}, - [3487] = {.lex_state = 5, .external_lex_state = 3}, - [3488] = {.lex_state = 13, .external_lex_state = 4}, - [3489] = {.lex_state = 13, .external_lex_state = 4}, - [3490] = {.lex_state = 5, .external_lex_state = 3}, - [3491] = {.lex_state = 13, .external_lex_state = 4}, - [3492] = {.lex_state = 13, .external_lex_state = 4}, - [3493] = {.lex_state = 13, .external_lex_state = 4}, - [3494] = {.lex_state = 13, .external_lex_state = 3}, - [3495] = {.lex_state = 64, .external_lex_state = 3}, - [3496] = {.lex_state = 268, .external_lex_state = 5}, - [3497] = {.lex_state = 13, .external_lex_state = 3}, - [3498] = {.lex_state = 13, .external_lex_state = 3}, - [3499] = {.lex_state = 13, .external_lex_state = 3}, - [3500] = {.lex_state = 13, .external_lex_state = 3}, - [3501] = {.lex_state = 13, .external_lex_state = 4}, - [3502] = {.lex_state = 18, .external_lex_state = 3}, - [3503] = {.lex_state = 5, .external_lex_state = 3}, - [3504] = {.lex_state = 5, .external_lex_state = 3}, - [3505] = {.lex_state = 18, .external_lex_state = 3}, - [3506] = {.lex_state = 268, .external_lex_state = 5}, - [3507] = {.lex_state = 268, .external_lex_state = 5}, - [3508] = {.lex_state = 13, .external_lex_state = 3}, - [3509] = {.lex_state = 73, .external_lex_state = 3}, - [3510] = {.lex_state = 5, .external_lex_state = 3}, - [3511] = {.lex_state = 13, .external_lex_state = 4}, - [3512] = {.lex_state = 13, .external_lex_state = 4}, - [3513] = {.lex_state = 5, .external_lex_state = 3}, - [3514] = {.lex_state = 268, .external_lex_state = 5}, - [3515] = {.lex_state = 13, .external_lex_state = 3}, - [3516] = {.lex_state = 13, .external_lex_state = 4}, - [3517] = {.lex_state = 5, .external_lex_state = 3}, - [3518] = {.lex_state = 5, .external_lex_state = 3}, - [3519] = {.lex_state = 5, .external_lex_state = 3}, - [3520] = {.lex_state = 5, .external_lex_state = 3}, - [3521] = {.lex_state = 268, .external_lex_state = 5}, - [3522] = {.lex_state = 18, .external_lex_state = 3}, - [3523] = {.lex_state = 59, .external_lex_state = 6}, - [3524] = {.lex_state = 13, .external_lex_state = 4}, - [3525] = {.lex_state = 18, .external_lex_state = 3}, - [3526] = {.lex_state = 5, .external_lex_state = 3}, - [3527] = {.lex_state = 5, .external_lex_state = 3}, - [3528] = {.lex_state = 18, .external_lex_state = 3}, - [3529] = {.lex_state = 268, .external_lex_state = 5}, - [3530] = {.lex_state = 268, .external_lex_state = 5}, - [3531] = {.lex_state = 268, .external_lex_state = 5}, - [3532] = {.lex_state = 5, .external_lex_state = 3}, - [3533] = {.lex_state = 18, .external_lex_state = 3}, - [3534] = {.lex_state = 13, .external_lex_state = 3}, - [3535] = {.lex_state = 18, .external_lex_state = 3}, - [3536] = {.lex_state = 13, .external_lex_state = 3}, - [3537] = {.lex_state = 92, .external_lex_state = 3}, - [3538] = {.lex_state = 268, .external_lex_state = 5}, - [3539] = {.lex_state = 24, .external_lex_state = 3}, - [3540] = {.lex_state = 5, .external_lex_state = 3}, - [3541] = {.lex_state = 268, .external_lex_state = 5}, - [3542] = {.lex_state = 5, .external_lex_state = 3}, - [3543] = {.lex_state = 13, .external_lex_state = 3}, - [3544] = {.lex_state = 268, .external_lex_state = 5}, - [3545] = {.lex_state = 19, .external_lex_state = 3}, - [3546] = {.lex_state = 13, .external_lex_state = 3}, - [3547] = {.lex_state = 13, .external_lex_state = 3}, - [3548] = {.lex_state = 13, .external_lex_state = 4}, - [3549] = {.lex_state = 59, .external_lex_state = 6}, - [3550] = {.lex_state = 13, .external_lex_state = 4}, - [3551] = {.lex_state = 13, .external_lex_state = 4}, - [3552] = {.lex_state = 13, .external_lex_state = 4}, - [3553] = {.lex_state = 13, .external_lex_state = 4}, - [3554] = {.lex_state = 13, .external_lex_state = 4}, - [3555] = {.lex_state = 13, .external_lex_state = 3}, - [3556] = {.lex_state = 13, .external_lex_state = 3}, - [3557] = {.lex_state = 268, .external_lex_state = 5}, - [3558] = {.lex_state = 5, .external_lex_state = 3}, - [3559] = {.lex_state = 13, .external_lex_state = 3}, - [3560] = {.lex_state = 268, .external_lex_state = 5}, - [3561] = {.lex_state = 5, .external_lex_state = 3}, - [3562] = {.lex_state = 13, .external_lex_state = 3}, - [3563] = {.lex_state = 13, .external_lex_state = 3}, - [3564] = {.lex_state = 5, .external_lex_state = 3}, - [3565] = {.lex_state = 5, .external_lex_state = 3}, - [3566] = {.lex_state = 268, .external_lex_state = 5}, - [3567] = {.lex_state = 5, .external_lex_state = 3}, - [3568] = {.lex_state = 5, .external_lex_state = 3}, - [3569] = {.lex_state = 18, .external_lex_state = 3}, - [3570] = {.lex_state = 59, .external_lex_state = 6}, - [3571] = {.lex_state = 13, .external_lex_state = 4}, - [3572] = {.lex_state = 13, .external_lex_state = 4}, - [3573] = {.lex_state = 13, .external_lex_state = 4}, - [3574] = {.lex_state = 268, .external_lex_state = 5}, - [3575] = {.lex_state = 5, .external_lex_state = 3}, - [3576] = {.lex_state = 18, .external_lex_state = 3}, - [3577] = {.lex_state = 5, .external_lex_state = 3}, - [3578] = {.lex_state = 13, .external_lex_state = 4}, - [3579] = {.lex_state = 5, .external_lex_state = 3}, - [3580] = {.lex_state = 13, .external_lex_state = 4}, - [3581] = {.lex_state = 268, .external_lex_state = 5}, - [3582] = {.lex_state = 18, .external_lex_state = 3}, - [3583] = {.lex_state = 5, .external_lex_state = 3}, - [3584] = {.lex_state = 18, .external_lex_state = 3}, - [3585] = {.lex_state = 268, .external_lex_state = 5}, - [3586] = {.lex_state = 24, .external_lex_state = 3}, - [3587] = {.lex_state = 5, .external_lex_state = 3}, - [3588] = {.lex_state = 5, .external_lex_state = 3}, - [3589] = {.lex_state = 13, .external_lex_state = 3}, - [3590] = {.lex_state = 59, .external_lex_state = 6}, - [3591] = {.lex_state = 73, .external_lex_state = 3}, - [3592] = {.lex_state = 5, .external_lex_state = 3}, - [3593] = {.lex_state = 18, .external_lex_state = 3}, - [3594] = {.lex_state = 13, .external_lex_state = 4}, - [3595] = {.lex_state = 268, .external_lex_state = 5}, - [3596] = {.lex_state = 5, .external_lex_state = 3}, - [3597] = {.lex_state = 268, .external_lex_state = 5}, - [3598] = {.lex_state = 19, .external_lex_state = 4}, - [3599] = {.lex_state = 5, .external_lex_state = 3}, - [3600] = {.lex_state = 13, .external_lex_state = 3}, - [3601] = {.lex_state = 13, .external_lex_state = 3}, - [3602] = {.lex_state = 13, .external_lex_state = 3}, - [3603] = {.lex_state = 24, .external_lex_state = 3}, - [3604] = {.lex_state = 5, .external_lex_state = 3}, - [3605] = {.lex_state = 18, .external_lex_state = 3}, - [3606] = {.lex_state = 5, .external_lex_state = 3}, - [3607] = {.lex_state = 13, .external_lex_state = 4}, - [3608] = {.lex_state = 18, .external_lex_state = 3}, - [3609] = {.lex_state = 5, .external_lex_state = 3}, - [3610] = {.lex_state = 13, .external_lex_state = 4}, - [3611] = {.lex_state = 13, .external_lex_state = 4}, - [3612] = {.lex_state = 268, .external_lex_state = 5}, - [3613] = {.lex_state = 13, .external_lex_state = 4}, - [3614] = {.lex_state = 5, .external_lex_state = 3}, - [3615] = {.lex_state = 59, .external_lex_state = 6}, - [3616] = {.lex_state = 13, .external_lex_state = 4}, - [3617] = {.lex_state = 5, .external_lex_state = 3}, - [3618] = {.lex_state = 18, .external_lex_state = 3}, - [3619] = {.lex_state = 13, .external_lex_state = 3}, - [3620] = {.lex_state = 268, .external_lex_state = 5}, - [3621] = {.lex_state = 13, .external_lex_state = 3}, - [3622] = {.lex_state = 268, .external_lex_state = 5}, - [3623] = {.lex_state = 5, .external_lex_state = 3}, - [3624] = {.lex_state = 13, .external_lex_state = 3}, - [3625] = {.lex_state = 13, .external_lex_state = 4}, - [3626] = {.lex_state = 5, .external_lex_state = 3}, - [3627] = {.lex_state = 268, .external_lex_state = 5}, - [3628] = {.lex_state = 92, .external_lex_state = 3}, - [3629] = {.lex_state = 268, .external_lex_state = 5}, - [3630] = {.lex_state = 73, .external_lex_state = 3}, - [3631] = {.lex_state = 18, .external_lex_state = 3}, - [3632] = {.lex_state = 13, .external_lex_state = 3}, - [3633] = {.lex_state = 18, .external_lex_state = 3}, - [3634] = {.lex_state = 268, .external_lex_state = 3}, - [3635] = {.lex_state = 13, .external_lex_state = 4}, - [3636] = {.lex_state = 13, .external_lex_state = 4}, - [3637] = {.lex_state = 18, .external_lex_state = 3}, - [3638] = {.lex_state = 73, .external_lex_state = 3}, - [3639] = {.lex_state = 13, .external_lex_state = 3}, - [3640] = {.lex_state = 13, .external_lex_state = 3}, - [3641] = {.lex_state = 13, .external_lex_state = 4}, - [3642] = {.lex_state = 18, .external_lex_state = 3}, - [3643] = {.lex_state = 13, .external_lex_state = 4}, - [3644] = {.lex_state = 24, .external_lex_state = 3}, - [3645] = {.lex_state = 18, .external_lex_state = 3}, - [3646] = {.lex_state = 13, .external_lex_state = 4}, - [3647] = {.lex_state = 13, .external_lex_state = 3}, - [3648] = {.lex_state = 13, .external_lex_state = 3}, - [3649] = {.lex_state = 13, .external_lex_state = 4}, - [3650] = {.lex_state = 13, .external_lex_state = 4}, - [3651] = {.lex_state = 13, .external_lex_state = 4}, - [3652] = {.lex_state = 19, .external_lex_state = 3}, - [3653] = {.lex_state = 13, .external_lex_state = 4}, - [3654] = {.lex_state = 13, .external_lex_state = 3}, - [3655] = {.lex_state = 13, .external_lex_state = 3}, - [3656] = {.lex_state = 13, .external_lex_state = 3}, - [3657] = {.lex_state = 13, .external_lex_state = 3}, - [3658] = {.lex_state = 13, .external_lex_state = 3}, - [3659] = {.lex_state = 13, .external_lex_state = 3}, - [3660] = {.lex_state = 13, .external_lex_state = 3}, - [3661] = {.lex_state = 13, .external_lex_state = 3}, - [3662] = {.lex_state = 19, .external_lex_state = 3}, - [3663] = {.lex_state = 5, .external_lex_state = 3}, - [3664] = {.lex_state = 5, .external_lex_state = 3}, - [3665] = {.lex_state = 13, .external_lex_state = 4}, - [3666] = {.lex_state = 73, .external_lex_state = 3}, - [3667] = {.lex_state = 13, .external_lex_state = 4}, - [3668] = {.lex_state = 13, .external_lex_state = 3}, - [3669] = {.lex_state = 13, .external_lex_state = 3}, - [3670] = {.lex_state = 13, .external_lex_state = 4}, - [3671] = {.lex_state = 73, .external_lex_state = 3}, - [3672] = {.lex_state = 13, .external_lex_state = 3}, - [3673] = {.lex_state = 13, .external_lex_state = 3}, - [3674] = {.lex_state = 13, .external_lex_state = 4}, - [3675] = {.lex_state = 5, .external_lex_state = 3}, - [3676] = {.lex_state = 5, .external_lex_state = 3}, - [3677] = {.lex_state = 5, .external_lex_state = 3}, - [3678] = {.lex_state = 13, .external_lex_state = 4}, - [3679] = {.lex_state = 13, .external_lex_state = 3}, - [3680] = {.lex_state = 13, .external_lex_state = 3}, - [3681] = {.lex_state = 13, .external_lex_state = 4}, - [3682] = {.lex_state = 268, .external_lex_state = 3}, - [3683] = {.lex_state = 19, .external_lex_state = 3}, - [3684] = {.lex_state = 13, .external_lex_state = 4}, - [3685] = {.lex_state = 73, .external_lex_state = 3}, - [3686] = {.lex_state = 268, .external_lex_state = 4}, - [3687] = {.lex_state = 13, .external_lex_state = 4}, - [3688] = {.lex_state = 13, .external_lex_state = 4}, - [3689] = {.lex_state = 13, .external_lex_state = 4}, - [3690] = {.lex_state = 13, .external_lex_state = 4}, - [3691] = {.lex_state = 13, .external_lex_state = 4}, - [3692] = {.lex_state = 19, .external_lex_state = 3}, - [3693] = {.lex_state = 13, .external_lex_state = 4}, - [3694] = {.lex_state = 13, .external_lex_state = 4}, - [3695] = {.lex_state = 13, .external_lex_state = 4}, - [3696] = {.lex_state = 13, .external_lex_state = 4}, - [3697] = {.lex_state = 13, .external_lex_state = 4}, - [3698] = {.lex_state = 13, .external_lex_state = 4}, - [3699] = {.lex_state = 13, .external_lex_state = 4}, - [3700] = {.lex_state = 19, .external_lex_state = 3}, - [3701] = {.lex_state = 13, .external_lex_state = 4}, - [3702] = {.lex_state = 13, .external_lex_state = 4}, - [3703] = {.lex_state = 13, .external_lex_state = 3}, - [3704] = {.lex_state = 13, .external_lex_state = 4}, - [3705] = {.lex_state = 268, .external_lex_state = 3}, - [3706] = {.lex_state = 13, .external_lex_state = 4}, - [3707] = {.lex_state = 13, .external_lex_state = 4}, - [3708] = {.lex_state = 13, .external_lex_state = 4}, - [3709] = {.lex_state = 13, .external_lex_state = 4}, - [3710] = {.lex_state = 13, .external_lex_state = 4}, - [3711] = {.lex_state = 13, .external_lex_state = 4}, - [3712] = {.lex_state = 13, .external_lex_state = 4}, - [3713] = {.lex_state = 13, .external_lex_state = 4}, - [3714] = {.lex_state = 13, .external_lex_state = 4}, - [3715] = {.lex_state = 13, .external_lex_state = 4}, - [3716] = {.lex_state = 19, .external_lex_state = 3}, - [3717] = {.lex_state = 5, .external_lex_state = 3}, - [3718] = {.lex_state = 5, .external_lex_state = 3}, - [3719] = {.lex_state = 5, .external_lex_state = 3}, - [3720] = {.lex_state = 19, .external_lex_state = 3}, - [3721] = {.lex_state = 19, .external_lex_state = 3}, - [3722] = {.lex_state = 13, .external_lex_state = 4}, - [3723] = {.lex_state = 13, .external_lex_state = 4}, - [3724] = {.lex_state = 73, .external_lex_state = 3}, - [3725] = {.lex_state = 5, .external_lex_state = 3}, - [3726] = {.lex_state = 5, .external_lex_state = 3}, - [3727] = {.lex_state = 13, .external_lex_state = 4}, - [3728] = {.lex_state = 268, .external_lex_state = 5}, - [3729] = {.lex_state = 13, .external_lex_state = 3}, - [3730] = {.lex_state = 13, .external_lex_state = 3}, - [3731] = {.lex_state = 13, .external_lex_state = 3}, - [3732] = {.lex_state = 13, .external_lex_state = 3}, - [3733] = {.lex_state = 13, .external_lex_state = 3}, - [3734] = {.lex_state = 18, .external_lex_state = 3}, - [3735] = {.lex_state = 13, .external_lex_state = 3}, - [3736] = {.lex_state = 13, .external_lex_state = 3}, - [3737] = {.lex_state = 13, .external_lex_state = 4}, - [3738] = {.lex_state = 13, .external_lex_state = 4}, - [3739] = {.lex_state = 13, .external_lex_state = 4}, - [3740] = {.lex_state = 13, .external_lex_state = 4}, - [3741] = {.lex_state = 13, .external_lex_state = 3}, - [3742] = {.lex_state = 18, .external_lex_state = 3}, - [3743] = {.lex_state = 13, .external_lex_state = 4}, - [3744] = {.lex_state = 13, .external_lex_state = 4}, - [3745] = {.lex_state = 13, .external_lex_state = 4}, - [3746] = {.lex_state = 13, .external_lex_state = 4}, - [3747] = {.lex_state = 13, .external_lex_state = 3}, - [3748] = {.lex_state = 18, .external_lex_state = 3}, - [3749] = {.lex_state = 18, .external_lex_state = 3}, - [3750] = {.lex_state = 18, .external_lex_state = 3}, - [3751] = {.lex_state = 73, .external_lex_state = 3}, - [3752] = {.lex_state = 73, .external_lex_state = 3}, - [3753] = {.lex_state = 13, .external_lex_state = 4}, - [3754] = {.lex_state = 13, .external_lex_state = 4}, - [3755] = {.lex_state = 13, .external_lex_state = 4}, - [3756] = {.lex_state = 13, .external_lex_state = 4}, - [3757] = {.lex_state = 13, .external_lex_state = 4}, - [3758] = {.lex_state = 13, .external_lex_state = 4}, - [3759] = {.lex_state = 73, .external_lex_state = 3}, - [3760] = {.lex_state = 13, .external_lex_state = 3}, - [3761] = {.lex_state = 268, .external_lex_state = 3}, - [3762] = {.lex_state = 268, .external_lex_state = 5}, - [3763] = {.lex_state = 268, .external_lex_state = 3}, - [3764] = {.lex_state = 73, .external_lex_state = 3}, - [3765] = {.lex_state = 73, .external_lex_state = 3}, - [3766] = {.lex_state = 268, .external_lex_state = 4}, - [3767] = {.lex_state = 268, .external_lex_state = 3}, - [3768] = {.lex_state = 268, .external_lex_state = 3}, - [3769] = {.lex_state = 268, .external_lex_state = 3}, - [3770] = {.lex_state = 268, .external_lex_state = 3}, - [3771] = {.lex_state = 268, .external_lex_state = 3}, - [3772] = {.lex_state = 73, .external_lex_state = 3}, - [3773] = {.lex_state = 268, .external_lex_state = 3}, - [3774] = {.lex_state = 268, .external_lex_state = 3}, - [3775] = {.lex_state = 73, .external_lex_state = 3}, - [3776] = {.lex_state = 268, .external_lex_state = 3}, - [3777] = {.lex_state = 268, .external_lex_state = 3}, - [3778] = {.lex_state = 73, .external_lex_state = 3}, - [3779] = {.lex_state = 268, .external_lex_state = 3}, - [3780] = {.lex_state = 73, .external_lex_state = 3}, - [3781] = {.lex_state = 73, .external_lex_state = 3}, - [3782] = {.lex_state = 73, .external_lex_state = 3}, - [3783] = {.lex_state = 73, .external_lex_state = 3}, - [3784] = {.lex_state = 73, .external_lex_state = 3}, - [3785] = {.lex_state = 73, .external_lex_state = 3}, - [3786] = {.lex_state = 73, .external_lex_state = 3}, - [3787] = {.lex_state = 73, .external_lex_state = 3}, - [3788] = {.lex_state = 73, .external_lex_state = 3}, - [3789] = {.lex_state = 73, .external_lex_state = 3}, - [3790] = {.lex_state = 73, .external_lex_state = 3}, - [3791] = {.lex_state = 268, .external_lex_state = 5}, - [3792] = {.lex_state = 73, .external_lex_state = 3}, - [3793] = {.lex_state = 268, .external_lex_state = 3}, - [3794] = {.lex_state = 268, .external_lex_state = 3}, - [3795] = {.lex_state = 73, .external_lex_state = 3}, - [3796] = {.lex_state = 268, .external_lex_state = 3}, - [3797] = {.lex_state = 268, .external_lex_state = 3}, - [3798] = {.lex_state = 268, .external_lex_state = 5}, - [3799] = {.lex_state = 268, .external_lex_state = 3}, - [3800] = {.lex_state = 268, .external_lex_state = 3}, - [3801] = {.lex_state = 73, .external_lex_state = 3}, - [3802] = {.lex_state = 73, .external_lex_state = 3}, - [3803] = {.lex_state = 268, .external_lex_state = 3}, - [3804] = {.lex_state = 73, .external_lex_state = 3}, - [3805] = {.lex_state = 268, .external_lex_state = 5}, - [3806] = {.lex_state = 13, .external_lex_state = 3}, - [3807] = {.lex_state = 268, .external_lex_state = 3}, - [3808] = {.lex_state = 268, .external_lex_state = 3}, - [3809] = {.lex_state = 73, .external_lex_state = 3}, - [3810] = {.lex_state = 268, .external_lex_state = 3}, - [3811] = {.lex_state = 268, .external_lex_state = 3}, - [3812] = {.lex_state = 268, .external_lex_state = 3}, - [3813] = {.lex_state = 268, .external_lex_state = 3}, - [3814] = {.lex_state = 268, .external_lex_state = 3}, - [3815] = {.lex_state = 73, .external_lex_state = 3}, - [3816] = {.lex_state = 73, .external_lex_state = 3}, - [3817] = {.lex_state = 268, .external_lex_state = 3}, - [3818] = {.lex_state = 268, .external_lex_state = 3}, - [3819] = {.lex_state = 73, .external_lex_state = 3}, - [3820] = {.lex_state = 5, .external_lex_state = 3}, - [3821] = {.lex_state = 268, .external_lex_state = 3}, - [3822] = {.lex_state = 268, .external_lex_state = 3}, - [3823] = {.lex_state = 268, .external_lex_state = 4}, - [3824] = {.lex_state = 268, .external_lex_state = 3}, - [3825] = {.lex_state = 268, .external_lex_state = 3}, - [3826] = {.lex_state = 13, .external_lex_state = 3}, - [3827] = {.lex_state = 268, .external_lex_state = 3}, - [3828] = {.lex_state = 73, .external_lex_state = 3}, - [3829] = {.lex_state = 268, .external_lex_state = 3}, - [3830] = {.lex_state = 268, .external_lex_state = 3}, - [3831] = {.lex_state = 268, .external_lex_state = 3}, - [3832] = {.lex_state = 268, .external_lex_state = 3}, - [3833] = {.lex_state = 49, .external_lex_state = 5}, - [3834] = {.lex_state = 5, .external_lex_state = 3}, - [3835] = {.lex_state = 73, .external_lex_state = 3}, - [3836] = {.lex_state = 73, .external_lex_state = 3}, - [3837] = {.lex_state = 268, .external_lex_state = 4}, - [3838] = {.lex_state = 5, .external_lex_state = 3}, - [3839] = {.lex_state = 73, .external_lex_state = 3}, - [3840] = {.lex_state = 73, .external_lex_state = 3}, - [3841] = {.lex_state = 268, .external_lex_state = 3}, - [3842] = {.lex_state = 268, .external_lex_state = 4}, - [3843] = {.lex_state = 5, .external_lex_state = 3}, - [3844] = {.lex_state = 268, .external_lex_state = 3}, - [3845] = {.lex_state = 5, .external_lex_state = 3}, - [3846] = {.lex_state = 19, .external_lex_state = 3}, - [3847] = {.lex_state = 268, .external_lex_state = 3}, - [3848] = {.lex_state = 268, .external_lex_state = 3}, - [3849] = {.lex_state = 268, .external_lex_state = 3}, - [3850] = {.lex_state = 49, .external_lex_state = 5}, - [3851] = {.lex_state = 13, .external_lex_state = 3}, - [3852] = {.lex_state = 73, .external_lex_state = 3}, - [3853] = {.lex_state = 268, .external_lex_state = 3}, - [3854] = {.lex_state = 268, .external_lex_state = 3}, - [3855] = {.lex_state = 268, .external_lex_state = 3}, - [3856] = {.lex_state = 268, .external_lex_state = 5}, - [3857] = {.lex_state = 5, .external_lex_state = 3}, - [3858] = {.lex_state = 73, .external_lex_state = 3}, - [3859] = {.lex_state = 268, .external_lex_state = 3}, - [3860] = {.lex_state = 268, .external_lex_state = 3}, - [3861] = {.lex_state = 73, .external_lex_state = 3}, - [3862] = {.lex_state = 268, .external_lex_state = 3}, - [3863] = {.lex_state = 5, .external_lex_state = 3}, - [3864] = {.lex_state = 73, .external_lex_state = 3}, - [3865] = {.lex_state = 268, .external_lex_state = 5}, - [3866] = {.lex_state = 268, .external_lex_state = 3}, - [3867] = {.lex_state = 73, .external_lex_state = 3}, - [3868] = {.lex_state = 268, .external_lex_state = 3}, - [3869] = {.lex_state = 268, .external_lex_state = 3}, - [3870] = {.lex_state = 73, .external_lex_state = 3}, - [3871] = {.lex_state = 73, .external_lex_state = 3}, - [3872] = {.lex_state = 268, .external_lex_state = 3}, - [3873] = {.lex_state = 268, .external_lex_state = 3}, - [3874] = {.lex_state = 73, .external_lex_state = 3}, - [3875] = {.lex_state = 5, .external_lex_state = 3}, - [3876] = {.lex_state = 268, .external_lex_state = 3}, - [3877] = {.lex_state = 268, .external_lex_state = 5}, - [3878] = {.lex_state = 268, .external_lex_state = 3}, - [3879] = {.lex_state = 268, .external_lex_state = 3}, - [3880] = {.lex_state = 268, .external_lex_state = 3}, - [3881] = {.lex_state = 268, .external_lex_state = 3}, - [3882] = {.lex_state = 268, .external_lex_state = 3}, - [3883] = {.lex_state = 268, .external_lex_state = 3}, - [3884] = {.lex_state = 13, .external_lex_state = 3}, - [3885] = {.lex_state = 268, .external_lex_state = 3}, - [3886] = {.lex_state = 268, .external_lex_state = 5}, - [3887] = {.lex_state = 268, .external_lex_state = 3}, - [3888] = {.lex_state = 268, .external_lex_state = 5}, - [3889] = {.lex_state = 73, .external_lex_state = 3}, - [3890] = {.lex_state = 268, .external_lex_state = 3}, - [3891] = {.lex_state = 13, .external_lex_state = 3}, - [3892] = {.lex_state = 268, .external_lex_state = 4}, - [3893] = {.lex_state = 13, .external_lex_state = 3}, - [3894] = {.lex_state = 13, .external_lex_state = 3}, - [3895] = {.lex_state = 268, .external_lex_state = 3}, - [3896] = {.lex_state = 268, .external_lex_state = 3}, - [3897] = {.lex_state = 268, .external_lex_state = 3}, - [3898] = {.lex_state = 13, .external_lex_state = 3}, - [3899] = {.lex_state = 73, .external_lex_state = 3}, - [3900] = {.lex_state = 268, .external_lex_state = 5}, - [3901] = {.lex_state = 5, .external_lex_state = 3}, - [3902] = {.lex_state = 13, .external_lex_state = 3}, - [3903] = {.lex_state = 268, .external_lex_state = 3}, - [3904] = {.lex_state = 73, .external_lex_state = 3}, - [3905] = {.lex_state = 268, .external_lex_state = 5}, - [3906] = {.lex_state = 268, .external_lex_state = 3}, - [3907] = {.lex_state = 268, .external_lex_state = 3}, - [3908] = {.lex_state = 13, .external_lex_state = 3}, - [3909] = {.lex_state = 268, .external_lex_state = 3}, - [3910] = {.lex_state = 73, .external_lex_state = 3}, - [3911] = {.lex_state = 13, .external_lex_state = 3}, - [3912] = {.lex_state = 268, .external_lex_state = 3}, - [3913] = {.lex_state = 268, .external_lex_state = 3}, - [3914] = {.lex_state = 268, .external_lex_state = 3}, - [3915] = {.lex_state = 268, .external_lex_state = 3}, - [3916] = {.lex_state = 73, .external_lex_state = 3}, - [3917] = {.lex_state = 268, .external_lex_state = 3}, - [3918] = {.lex_state = 268, .external_lex_state = 4}, - [3919] = {.lex_state = 73, .external_lex_state = 3}, - [3920] = {.lex_state = 268, .external_lex_state = 3}, - [3921] = {.lex_state = 268, .external_lex_state = 3}, - [3922] = {.lex_state = 268, .external_lex_state = 5}, - [3923] = {.lex_state = 73, .external_lex_state = 3}, - [3924] = {.lex_state = 268, .external_lex_state = 3}, - [3925] = {.lex_state = 268, .external_lex_state = 3}, - [3926] = {.lex_state = 268, .external_lex_state = 5}, - [3927] = {.lex_state = 268, .external_lex_state = 3}, - [3928] = {.lex_state = 73, .external_lex_state = 3}, - [3929] = {.lex_state = 268, .external_lex_state = 3}, - [3930] = {.lex_state = 73, .external_lex_state = 3}, - [3931] = {.lex_state = 268, .external_lex_state = 3}, - [3932] = {.lex_state = 268, .external_lex_state = 5}, - [3933] = {.lex_state = 268, .external_lex_state = 3}, - [3934] = {.lex_state = 268, .external_lex_state = 3}, - [3935] = {.lex_state = 268, .external_lex_state = 3}, - [3936] = {.lex_state = 268, .external_lex_state = 3}, - [3937] = {.lex_state = 268, .external_lex_state = 5}, - [3938] = {.lex_state = 268, .external_lex_state = 3}, - [3939] = {.lex_state = 268, .external_lex_state = 3}, - [3940] = {.lex_state = 268, .external_lex_state = 3}, - [3941] = {.lex_state = 268, .external_lex_state = 3}, - [3942] = {.lex_state = 268, .external_lex_state = 3}, - [3943] = {.lex_state = 73, .external_lex_state = 3}, - [3944] = {.lex_state = 268, .external_lex_state = 5}, - [3945] = {.lex_state = 73, .external_lex_state = 3}, - [3946] = {.lex_state = 268, .external_lex_state = 3}, - [3947] = {.lex_state = 268, .external_lex_state = 3}, - [3948] = {.lex_state = 268, .external_lex_state = 3}, - [3949] = {.lex_state = 268, .external_lex_state = 3}, - [3950] = {.lex_state = 268, .external_lex_state = 3}, - [3951] = {.lex_state = 268, .external_lex_state = 3}, - [3952] = {.lex_state = 268, .external_lex_state = 3}, - [3953] = {.lex_state = 13, .external_lex_state = 3}, - [3954] = {.lex_state = 268, .external_lex_state = 3}, - [3955] = {.lex_state = 268, .external_lex_state = 3}, - [3956] = {.lex_state = 268, .external_lex_state = 3}, - [3957] = {.lex_state = 268, .external_lex_state = 3}, - [3958] = {.lex_state = 268, .external_lex_state = 3}, - [3959] = {.lex_state = 268, .external_lex_state = 3}, - [3960] = {.lex_state = 268, .external_lex_state = 3}, - [3961] = {.lex_state = 268, .external_lex_state = 3}, - [3962] = {.lex_state = 268, .external_lex_state = 3}, - [3963] = {.lex_state = 73, .external_lex_state = 3}, - [3964] = {.lex_state = 268, .external_lex_state = 3}, - [3965] = {.lex_state = 268, .external_lex_state = 5}, - [3966] = {.lex_state = 268, .external_lex_state = 3}, - [3967] = {.lex_state = 268, .external_lex_state = 3}, - [3968] = {.lex_state = 19, .external_lex_state = 3}, - [3969] = {.lex_state = 268, .external_lex_state = 3}, - [3970] = {.lex_state = 268, .external_lex_state = 3}, - [3971] = {.lex_state = 268, .external_lex_state = 3}, - [3972] = {.lex_state = 268, .external_lex_state = 5}, - [3973] = {.lex_state = 268, .external_lex_state = 3}, - [3974] = {.lex_state = 268, .external_lex_state = 3}, - [3975] = {.lex_state = 268, .external_lex_state = 3}, - [3976] = {.lex_state = 268, .external_lex_state = 3}, - [3977] = {.lex_state = 268, .external_lex_state = 3}, - [3978] = {.lex_state = 268, .external_lex_state = 3}, - [3979] = {.lex_state = 268, .external_lex_state = 3}, - [3980] = {.lex_state = 268, .external_lex_state = 5}, - [3981] = {.lex_state = 268, .external_lex_state = 3}, - [3982] = {.lex_state = 268, .external_lex_state = 3}, - [3983] = {.lex_state = 268, .external_lex_state = 3}, - [3984] = {.lex_state = 268, .external_lex_state = 3}, - [3985] = {.lex_state = 73, .external_lex_state = 3}, - [3986] = {.lex_state = 268, .external_lex_state = 3}, - [3987] = {.lex_state = 268, .external_lex_state = 3}, - [3988] = {.lex_state = 268, .external_lex_state = 3}, - [3989] = {.lex_state = 268, .external_lex_state = 3}, - [3990] = {.lex_state = 268, .external_lex_state = 3}, - [3991] = {.lex_state = 268, .external_lex_state = 5}, - [3992] = {.lex_state = 268, .external_lex_state = 3}, - [3993] = {.lex_state = 268, .external_lex_state = 3}, - [3994] = {.lex_state = 268, .external_lex_state = 3}, - [3995] = {.lex_state = 268, .external_lex_state = 3}, - [3996] = {.lex_state = 268, .external_lex_state = 3}, - [3997] = {.lex_state = 268, .external_lex_state = 3}, - [3998] = {.lex_state = 268, .external_lex_state = 3}, - [3999] = {.lex_state = 268, .external_lex_state = 3}, - [4000] = {.lex_state = 268, .external_lex_state = 3}, - [4001] = {.lex_state = 268, .external_lex_state = 3}, - [4002] = {.lex_state = 268, .external_lex_state = 3}, - [4003] = {.lex_state = 268, .external_lex_state = 3}, - [4004] = {.lex_state = 268, .external_lex_state = 3}, - [4005] = {.lex_state = 268, .external_lex_state = 3}, - [4006] = {.lex_state = 268, .external_lex_state = 3}, - [4007] = {.lex_state = 268, .external_lex_state = 3}, - [4008] = {.lex_state = 268, .external_lex_state = 5}, - [4009] = {.lex_state = 268, .external_lex_state = 3}, - [4010] = {.lex_state = 268, .external_lex_state = 3}, - [4011] = {.lex_state = 268, .external_lex_state = 3}, - [4012] = {.lex_state = 268, .external_lex_state = 3}, - [4013] = {.lex_state = 268, .external_lex_state = 3}, - [4014] = {.lex_state = 268, .external_lex_state = 3}, - [4015] = {.lex_state = 268, .external_lex_state = 3}, - [4016] = {.lex_state = 268, .external_lex_state = 3}, - [4017] = {.lex_state = 268, .external_lex_state = 3}, - [4018] = {.lex_state = 268, .external_lex_state = 3}, - [4019] = {.lex_state = 268, .external_lex_state = 5}, - [4020] = {.lex_state = 268, .external_lex_state = 3}, - [4021] = {.lex_state = 73, .external_lex_state = 3}, - [4022] = {.lex_state = 268, .external_lex_state = 3}, - [4023] = {.lex_state = 268, .external_lex_state = 4}, - [4024] = {.lex_state = 13, .external_lex_state = 3}, - [4025] = {.lex_state = 268, .external_lex_state = 3}, - [4026] = {.lex_state = 73, .external_lex_state = 3}, - [4027] = {.lex_state = 13, .external_lex_state = 3}, - [4028] = {.lex_state = 73, .external_lex_state = 3}, - [4029] = {.lex_state = 13, .external_lex_state = 3}, - [4030] = {.lex_state = 268, .external_lex_state = 3}, - [4031] = {.lex_state = 5, .external_lex_state = 3}, - [4032] = {.lex_state = 268, .external_lex_state = 5}, - [4033] = {.lex_state = 73, .external_lex_state = 3}, - [4034] = {.lex_state = 5, .external_lex_state = 3}, - [4035] = {.lex_state = 268, .external_lex_state = 3}, - [4036] = {.lex_state = 13, .external_lex_state = 3}, - [4037] = {.lex_state = 268, .external_lex_state = 3}, - [4038] = {.lex_state = 73, .external_lex_state = 3}, - [4039] = {.lex_state = 268, .external_lex_state = 5}, - [4040] = {.lex_state = 268, .external_lex_state = 3}, - [4041] = {.lex_state = 268, .external_lex_state = 5}, - [4042] = {.lex_state = 268, .external_lex_state = 3}, - [4043] = {.lex_state = 13, .external_lex_state = 3}, - [4044] = {.lex_state = 268, .external_lex_state = 3}, - [4045] = {.lex_state = 73, .external_lex_state = 3}, - [4046] = {.lex_state = 73, .external_lex_state = 3}, - [4047] = {.lex_state = 268, .external_lex_state = 3}, - [4048] = {.lex_state = 268, .external_lex_state = 3}, - [4049] = {.lex_state = 268, .external_lex_state = 3}, - [4050] = {.lex_state = 268, .external_lex_state = 3}, - [4051] = {.lex_state = 73, .external_lex_state = 3}, - [4052] = {.lex_state = 268, .external_lex_state = 3}, - [4053] = {.lex_state = 268, .external_lex_state = 3}, - [4054] = {.lex_state = 73, .external_lex_state = 3}, - [4055] = {.lex_state = 268, .external_lex_state = 3}, - [4056] = {.lex_state = 268, .external_lex_state = 4}, - [4057] = {.lex_state = 268, .external_lex_state = 3}, - [4058] = {.lex_state = 13, .external_lex_state = 3}, - [4059] = {.lex_state = 268, .external_lex_state = 3}, - [4060] = {.lex_state = 13, .external_lex_state = 3}, - [4061] = {.lex_state = 268, .external_lex_state = 3}, - [4062] = {.lex_state = 268, .external_lex_state = 3}, - [4063] = {.lex_state = 268, .external_lex_state = 3}, - [4064] = {.lex_state = 268, .external_lex_state = 3}, - [4065] = {.lex_state = 268, .external_lex_state = 3}, - [4066] = {.lex_state = 268, .external_lex_state = 5}, - [4067] = {.lex_state = 268, .external_lex_state = 5}, - [4068] = {.lex_state = 268, .external_lex_state = 3}, - [4069] = {.lex_state = 13, .external_lex_state = 3}, - [4070] = {.lex_state = 49, .external_lex_state = 5}, - [4071] = {.lex_state = 51, .external_lex_state = 5}, - [4072] = {.lex_state = 13, .external_lex_state = 3}, - [4073] = {.lex_state = 63, .external_lex_state = 3}, - [4074] = {.lex_state = 268, .external_lex_state = 5}, - [4075] = {.lex_state = 13, .external_lex_state = 3}, - [4076] = {.lex_state = 268, .external_lex_state = 3}, - [4077] = {.lex_state = 13, .external_lex_state = 3}, - [4078] = {.lex_state = 268, .external_lex_state = 5}, - [4079] = {.lex_state = 268, .external_lex_state = 4}, - [4080] = {.lex_state = 49, .external_lex_state = 5}, - [4081] = {.lex_state = 13, .external_lex_state = 3}, - [4082] = {.lex_state = 51, .external_lex_state = 5}, - [4083] = {.lex_state = 268, .external_lex_state = 5}, - [4084] = {.lex_state = 63, .external_lex_state = 3}, - [4085] = {.lex_state = 13, .external_lex_state = 3}, - [4086] = {.lex_state = 268, .external_lex_state = 3}, - [4087] = {.lex_state = 13, .external_lex_state = 3}, - [4088] = {.lex_state = 268, .external_lex_state = 5}, - [4089] = {.lex_state = 49, .external_lex_state = 5}, - [4090] = {.lex_state = 51, .external_lex_state = 5}, - [4091] = {.lex_state = 63, .external_lex_state = 3}, - [4092] = {.lex_state = 13, .external_lex_state = 3}, - [4093] = {.lex_state = 268, .external_lex_state = 3}, - [4094] = {.lex_state = 268, .external_lex_state = 3}, - [4095] = {.lex_state = 268, .external_lex_state = 3}, - [4096] = {.lex_state = 13, .external_lex_state = 3}, - [4097] = {.lex_state = 63, .external_lex_state = 3}, - [4098] = {.lex_state = 268, .external_lex_state = 3}, - [4099] = {.lex_state = 268, .external_lex_state = 3}, - [4100] = {.lex_state = 268, .external_lex_state = 3}, - [4101] = {.lex_state = 49, .external_lex_state = 5}, - [4102] = {.lex_state = 268, .external_lex_state = 5}, - [4103] = {.lex_state = 51, .external_lex_state = 5}, - [4104] = {.lex_state = 268, .external_lex_state = 3}, - [4105] = {.lex_state = 268, .external_lex_state = 5}, - [4106] = {.lex_state = 63, .external_lex_state = 3}, - [4107] = {.lex_state = 268, .external_lex_state = 5}, - [4108] = {.lex_state = 13, .external_lex_state = 3}, - [4109] = {.lex_state = 63, .external_lex_state = 3}, - [4110] = {.lex_state = 13, .external_lex_state = 3}, - [4111] = {.lex_state = 268, .external_lex_state = 3}, - [4112] = {.lex_state = 268, .external_lex_state = 3}, - [4113] = {.lex_state = 268, .external_lex_state = 4}, - [4114] = {.lex_state = 268, .external_lex_state = 5}, - [4115] = {.lex_state = 51, .external_lex_state = 5}, - [4116] = {.lex_state = 63, .external_lex_state = 3}, - [4117] = {.lex_state = 13, .external_lex_state = 3}, - [4118] = {.lex_state = 13, .external_lex_state = 3}, - [4119] = {.lex_state = 49, .external_lex_state = 5}, - [4120] = {.lex_state = 268, .external_lex_state = 4}, - [4121] = {.lex_state = 268, .external_lex_state = 4}, - [4122] = {.lex_state = 13, .external_lex_state = 3}, - [4123] = {.lex_state = 268, .external_lex_state = 5}, - [4124] = {.lex_state = 268, .external_lex_state = 3}, - [4125] = {.lex_state = 5, .external_lex_state = 3}, - [4126] = {.lex_state = 51, .external_lex_state = 5}, - [4127] = {.lex_state = 63, .external_lex_state = 3}, - [4128] = {.lex_state = 268, .external_lex_state = 3}, - [4129] = {.lex_state = 268, .external_lex_state = 5}, - [4130] = {.lex_state = 13, .external_lex_state = 3}, - [4131] = {.lex_state = 268, .external_lex_state = 4}, - [4132] = {.lex_state = 268, .external_lex_state = 3}, - [4133] = {.lex_state = 268, .external_lex_state = 5}, - [4134] = {.lex_state = 268, .external_lex_state = 5}, - [4135] = {.lex_state = 268, .external_lex_state = 5}, - [4136] = {.lex_state = 13, .external_lex_state = 3}, - [4137] = {.lex_state = 268, .external_lex_state = 3}, - [4138] = {.lex_state = 51, .external_lex_state = 5}, - [4139] = {.lex_state = 268, .external_lex_state = 5}, - [4140] = {.lex_state = 268, .external_lex_state = 3}, - [4141] = {.lex_state = 268, .external_lex_state = 3}, - [4142] = {.lex_state = 268, .external_lex_state = 3}, - [4143] = {.lex_state = 13, .external_lex_state = 3}, - [4144] = {.lex_state = 51, .external_lex_state = 5}, - [4145] = {.lex_state = 13, .external_lex_state = 3}, - [4146] = {.lex_state = 13, .external_lex_state = 3}, - [4147] = {.lex_state = 268, .external_lex_state = 5}, - [4148] = {.lex_state = 268, .external_lex_state = 5}, - [4149] = {.lex_state = 268, .external_lex_state = 3}, - [4150] = {.lex_state = 51, .external_lex_state = 5}, - [4151] = {.lex_state = 268, .external_lex_state = 3}, - [4152] = {.lex_state = 63, .external_lex_state = 3}, - [4153] = {.lex_state = 268, .external_lex_state = 3}, - [4154] = {.lex_state = 13, .external_lex_state = 3}, - [4155] = {.lex_state = 268, .external_lex_state = 3}, - [4156] = {.lex_state = 5, .external_lex_state = 3}, - [4157] = {.lex_state = 51, .external_lex_state = 5}, - [4158] = {.lex_state = 268, .external_lex_state = 3}, - [4159] = {.lex_state = 13, .external_lex_state = 3}, - [4160] = {.lex_state = 51, .external_lex_state = 5}, - [4161] = {.lex_state = 63, .external_lex_state = 3}, - [4162] = {.lex_state = 13, .external_lex_state = 3}, - [4163] = {.lex_state = 13, .external_lex_state = 3}, - [4164] = {.lex_state = 13, .external_lex_state = 3}, - [4165] = {.lex_state = 63, .external_lex_state = 3}, - [4166] = {.lex_state = 73, .external_lex_state = 3}, - [4167] = {.lex_state = 268, .external_lex_state = 3}, - [4168] = {.lex_state = 268, .external_lex_state = 5}, - [4169] = {.lex_state = 13, .external_lex_state = 3}, - [4170] = {.lex_state = 268, .external_lex_state = 5}, - [4171] = {.lex_state = 268, .external_lex_state = 3}, - [4172] = {.lex_state = 13, .external_lex_state = 3}, - [4173] = {.lex_state = 49, .external_lex_state = 5}, - [4174] = {.lex_state = 63, .external_lex_state = 3}, - [4175] = {.lex_state = 268, .external_lex_state = 3}, - [4176] = {.lex_state = 13, .external_lex_state = 3}, - [4177] = {.lex_state = 13, .external_lex_state = 3}, - [4178] = {.lex_state = 13, .external_lex_state = 3}, - [4179] = {.lex_state = 13, .external_lex_state = 3}, - [4180] = {.lex_state = 51, .external_lex_state = 5}, - [4181] = {.lex_state = 63, .external_lex_state = 3}, - [4182] = {.lex_state = 51, .external_lex_state = 5}, - [4183] = {.lex_state = 63, .external_lex_state = 3}, - [4184] = {.lex_state = 13, .external_lex_state = 3}, - [4185] = {.lex_state = 51, .external_lex_state = 5}, - [4186] = {.lex_state = 63, .external_lex_state = 3}, - [4187] = {.lex_state = 268, .external_lex_state = 4}, - [4188] = {.lex_state = 268, .external_lex_state = 3}, - [4189] = {.lex_state = 13, .external_lex_state = 3}, - [4190] = {.lex_state = 51, .external_lex_state = 5}, - [4191] = {.lex_state = 268, .external_lex_state = 5}, - [4192] = {.lex_state = 5, .external_lex_state = 3}, - [4193] = {.lex_state = 51, .external_lex_state = 5}, - [4194] = {.lex_state = 63, .external_lex_state = 3}, - [4195] = {.lex_state = 5, .external_lex_state = 3}, - [4196] = {.lex_state = 268, .external_lex_state = 5}, - [4197] = {.lex_state = 268, .external_lex_state = 3}, - [4198] = {.lex_state = 268, .external_lex_state = 3}, - [4199] = {.lex_state = 268, .external_lex_state = 3}, - [4200] = {.lex_state = 268, .external_lex_state = 3}, - [4201] = {.lex_state = 63, .external_lex_state = 3}, - [4202] = {.lex_state = 13, .external_lex_state = 3}, - [4203] = {.lex_state = 13, .external_lex_state = 3}, - [4204] = {.lex_state = 268, .external_lex_state = 3}, - [4205] = {.lex_state = 13, .external_lex_state = 3}, - [4206] = {.lex_state = 49, .external_lex_state = 5}, - [4207] = {.lex_state = 5, .external_lex_state = 3}, - [4208] = {.lex_state = 268, .external_lex_state = 3}, - [4209] = {.lex_state = 51, .external_lex_state = 5}, - [4210] = {.lex_state = 5, .external_lex_state = 3}, - [4211] = {.lex_state = 268, .external_lex_state = 3}, - [4212] = {.lex_state = 13, .external_lex_state = 3}, - [4213] = {.lex_state = 19, .external_lex_state = 3}, - [4214] = {.lex_state = 268, .external_lex_state = 3}, - [4215] = {.lex_state = 268, .external_lex_state = 3}, - [4216] = {.lex_state = 268, .external_lex_state = 3}, - [4217] = {.lex_state = 268, .external_lex_state = 3}, - [4218] = {.lex_state = 73, .external_lex_state = 3}, - [4219] = {.lex_state = 268, .external_lex_state = 3}, - [4220] = {.lex_state = 13, .external_lex_state = 3}, - [4221] = {.lex_state = 268, .external_lex_state = 3}, - [4222] = {.lex_state = 268, .external_lex_state = 3}, - [4223] = {.lex_state = 13, .external_lex_state = 3}, - [4224] = {.lex_state = 63, .external_lex_state = 3}, - [4225] = {.lex_state = 13, .external_lex_state = 3}, - [4226] = {.lex_state = 268, .external_lex_state = 3}, - [4227] = {.lex_state = 19, .external_lex_state = 3}, - [4228] = {.lex_state = 268, .external_lex_state = 3}, - [4229] = {.lex_state = 268, .external_lex_state = 3}, - [4230] = {.lex_state = 268, .external_lex_state = 3}, - [4231] = {.lex_state = 73, .external_lex_state = 3}, - [4232] = {.lex_state = 268, .external_lex_state = 3}, - [4233] = {.lex_state = 268, .external_lex_state = 3}, - [4234] = {.lex_state = 73, .external_lex_state = 3}, - [4235] = {.lex_state = 13, .external_lex_state = 3}, - [4236] = {.lex_state = 19, .external_lex_state = 3}, - [4237] = {.lex_state = 61, .external_lex_state = 3}, - [4238] = {.lex_state = 268, .external_lex_state = 3}, - [4239] = {.lex_state = 268, .external_lex_state = 3}, - [4240] = {.lex_state = 268, .external_lex_state = 3}, - [4241] = {.lex_state = 268, .external_lex_state = 3}, - [4242] = {.lex_state = 19, .external_lex_state = 3}, - [4243] = {.lex_state = 268, .external_lex_state = 3}, - [4244] = {.lex_state = 268, .external_lex_state = 3}, - [4245] = {.lex_state = 268, .external_lex_state = 3}, - [4246] = {.lex_state = 13, .external_lex_state = 3}, - [4247] = {.lex_state = 73, .external_lex_state = 3}, - [4248] = {.lex_state = 268, .external_lex_state = 3}, - [4249] = {.lex_state = 268, .external_lex_state = 3}, - [4250] = {.lex_state = 268, .external_lex_state = 3}, - [4251] = {.lex_state = 268, .external_lex_state = 3}, - [4252] = {.lex_state = 268, .external_lex_state = 3}, - [4253] = {.lex_state = 13, .external_lex_state = 3}, - [4254] = {.lex_state = 268, .external_lex_state = 3}, - [4255] = {.lex_state = 268, .external_lex_state = 3}, - [4256] = {.lex_state = 268, .external_lex_state = 3}, - [4257] = {.lex_state = 268, .external_lex_state = 3}, - [4258] = {.lex_state = 268, .external_lex_state = 3}, - [4259] = {.lex_state = 268, .external_lex_state = 3}, - [4260] = {.lex_state = 268, .external_lex_state = 3}, - [4261] = {.lex_state = 268, .external_lex_state = 3}, - [4262] = {.lex_state = 268, .external_lex_state = 3}, - [4263] = {.lex_state = 268, .external_lex_state = 3}, - [4264] = {.lex_state = 268, .external_lex_state = 3}, - [4265] = {.lex_state = 268, .external_lex_state = 3}, - [4266] = {.lex_state = 268, .external_lex_state = 3}, - [4267] = {.lex_state = 268, .external_lex_state = 3}, - [4268] = {.lex_state = 268, .external_lex_state = 3}, - [4269] = {.lex_state = 268, .external_lex_state = 3}, - [4270] = {.lex_state = 268, .external_lex_state = 3}, - [4271] = {.lex_state = 268, .external_lex_state = 3}, - [4272] = {.lex_state = 268, .external_lex_state = 3}, - [4273] = {.lex_state = 268, .external_lex_state = 3}, - [4274] = {.lex_state = 73, .external_lex_state = 3}, - [4275] = {.lex_state = 73, .external_lex_state = 3}, - [4276] = {.lex_state = 268, .external_lex_state = 3}, - [4277] = {.lex_state = 268, .external_lex_state = 3}, - [4278] = {.lex_state = 13, .external_lex_state = 3}, - [4279] = {.lex_state = 268, .external_lex_state = 3}, - [4280] = {.lex_state = 268, .external_lex_state = 3}, - [4281] = {.lex_state = 268, .external_lex_state = 3}, - [4282] = {.lex_state = 268, .external_lex_state = 3}, - [4283] = {.lex_state = 19, .external_lex_state = 3}, - [4284] = {.lex_state = 268, .external_lex_state = 3}, - [4285] = {.lex_state = 268, .external_lex_state = 3}, - [4286] = {.lex_state = 268, .external_lex_state = 3}, - [4287] = {.lex_state = 61, .external_lex_state = 3}, - [4288] = {.lex_state = 268, .external_lex_state = 3}, - [4289] = {.lex_state = 5, .external_lex_state = 3}, - [4290] = {.lex_state = 268, .external_lex_state = 3}, - [4291] = {.lex_state = 268, .external_lex_state = 3}, - [4292] = {.lex_state = 268, .external_lex_state = 3}, - [4293] = {.lex_state = 268, .external_lex_state = 3}, - [4294] = {.lex_state = 268, .external_lex_state = 3}, - [4295] = {.lex_state = 268, .external_lex_state = 3}, - [4296] = {.lex_state = 268, .external_lex_state = 3}, - [4297] = {.lex_state = 268, .external_lex_state = 3}, - [4298] = {.lex_state = 268, .external_lex_state = 3}, - [4299] = {.lex_state = 268, .external_lex_state = 3}, - [4300] = {.lex_state = 268, .external_lex_state = 3}, - [4301] = {.lex_state = 268, .external_lex_state = 3}, - [4302] = {.lex_state = 268, .external_lex_state = 3}, - [4303] = {.lex_state = 13, .external_lex_state = 3}, - [4304] = {.lex_state = 268, .external_lex_state = 3}, - [4305] = {.lex_state = 19, .external_lex_state = 3}, - [4306] = {.lex_state = 268, .external_lex_state = 3}, - [4307] = {.lex_state = 268, .external_lex_state = 3}, - [4308] = {.lex_state = 13, .external_lex_state = 3}, - [4309] = {.lex_state = 268, .external_lex_state = 3}, - [4310] = {.lex_state = 268, .external_lex_state = 3}, - [4311] = {.lex_state = 268, .external_lex_state = 3}, - [4312] = {.lex_state = 13, .external_lex_state = 3}, - [4313] = {.lex_state = 268, .external_lex_state = 3}, - [4314] = {.lex_state = 268, .external_lex_state = 5}, - [4315] = {.lex_state = 19, .external_lex_state = 3}, - [4316] = {.lex_state = 268, .external_lex_state = 3}, - [4317] = {.lex_state = 61, .external_lex_state = 3}, - [4318] = {.lex_state = 268, .external_lex_state = 3}, - [4319] = {.lex_state = 268, .external_lex_state = 3}, - [4320] = {.lex_state = 268, .external_lex_state = 3}, - [4321] = {.lex_state = 268, .external_lex_state = 3}, - [4322] = {.lex_state = 268, .external_lex_state = 3}, - [4323] = {.lex_state = 268, .external_lex_state = 3}, - [4324] = {.lex_state = 268, .external_lex_state = 3}, - [4325] = {.lex_state = 268, .external_lex_state = 3}, - [4326] = {.lex_state = 19, .external_lex_state = 3}, - [4327] = {.lex_state = 268, .external_lex_state = 3}, - [4328] = {.lex_state = 19, .external_lex_state = 3}, - [4329] = {.lex_state = 13, .external_lex_state = 3}, - [4330] = {.lex_state = 268, .external_lex_state = 3}, - [4331] = {.lex_state = 268, .external_lex_state = 3}, - [4332] = {.lex_state = 268, .external_lex_state = 3}, - [4333] = {.lex_state = 268, .external_lex_state = 3}, - [4334] = {.lex_state = 268, .external_lex_state = 3}, - [4335] = {.lex_state = 268, .external_lex_state = 3}, - [4336] = {.lex_state = 268, .external_lex_state = 3}, - [4337] = {.lex_state = 268, .external_lex_state = 3}, - [4338] = {.lex_state = 19, .external_lex_state = 3}, - [4339] = {.lex_state = 61, .external_lex_state = 3}, - [4340] = {.lex_state = 19, .external_lex_state = 3}, - [4341] = {.lex_state = 268, .external_lex_state = 3}, - [4342] = {.lex_state = 268, .external_lex_state = 3}, - [4343] = {.lex_state = 268, .external_lex_state = 3}, - [4344] = {.lex_state = 19, .external_lex_state = 3}, - [4345] = {.lex_state = 61, .external_lex_state = 3}, - [4346] = {.lex_state = 268, .external_lex_state = 3}, - [4347] = {.lex_state = 268, .external_lex_state = 3}, - [4348] = {.lex_state = 268, .external_lex_state = 3}, - [4349] = {.lex_state = 13, .external_lex_state = 3}, - [4350] = {.lex_state = 268, .external_lex_state = 3}, - [4351] = {.lex_state = 268, .external_lex_state = 3}, - [4352] = {.lex_state = 268, .external_lex_state = 3}, - [4353] = {.lex_state = 268, .external_lex_state = 3}, - [4354] = {.lex_state = 268, .external_lex_state = 3}, - [4355] = {.lex_state = 268, .external_lex_state = 3}, - [4356] = {.lex_state = 268, .external_lex_state = 3}, - [4357] = {.lex_state = 268, .external_lex_state = 3}, - [4358] = {.lex_state = 268, .external_lex_state = 3}, - [4359] = {.lex_state = 13, .external_lex_state = 3}, - [4360] = {.lex_state = 268, .external_lex_state = 3}, - [4361] = {.lex_state = 268, .external_lex_state = 3}, - [4362] = {.lex_state = 268, .external_lex_state = 3}, - [4363] = {.lex_state = 268, .external_lex_state = 3}, - [4364] = {.lex_state = 268, .external_lex_state = 3}, - [4365] = {.lex_state = 268, .external_lex_state = 3}, - [4366] = {.lex_state = 268, .external_lex_state = 3}, - [4367] = {.lex_state = 268, .external_lex_state = 3}, - [4368] = {.lex_state = 268, .external_lex_state = 3}, - [4369] = {.lex_state = 268, .external_lex_state = 3}, - [4370] = {.lex_state = 268, .external_lex_state = 3}, - [4371] = {.lex_state = 268, .external_lex_state = 3}, - [4372] = {.lex_state = 73, .external_lex_state = 3}, - [4373] = {.lex_state = 73, .external_lex_state = 3}, - [4374] = {.lex_state = 13, .external_lex_state = 3}, - [4375] = {.lex_state = 268, .external_lex_state = 3}, - [4376] = {.lex_state = 268, .external_lex_state = 3}, - [4377] = {.lex_state = 268, .external_lex_state = 3}, - [4378] = {.lex_state = 268, .external_lex_state = 3}, - [4379] = {.lex_state = 268, .external_lex_state = 3}, - [4380] = {.lex_state = 268, .external_lex_state = 3}, - [4381] = {.lex_state = 268, .external_lex_state = 3}, - [4382] = {.lex_state = 268, .external_lex_state = 3}, - [4383] = {.lex_state = 268, .external_lex_state = 3}, - [4384] = {.lex_state = 268, .external_lex_state = 3}, - [4385] = {.lex_state = 268, .external_lex_state = 3}, - [4386] = {.lex_state = 268, .external_lex_state = 3}, - [4387] = {.lex_state = 268, .external_lex_state = 3}, - [4388] = {.lex_state = 268, .external_lex_state = 3}, - [4389] = {.lex_state = 268, .external_lex_state = 3}, - [4390] = {.lex_state = 268, .external_lex_state = 3}, - [4391] = {.lex_state = 51, .external_lex_state = 5}, - [4392] = {.lex_state = 268, .external_lex_state = 3}, - [4393] = {.lex_state = 268, .external_lex_state = 3}, - [4394] = {.lex_state = 268, .external_lex_state = 3}, - [4395] = {.lex_state = 268, .external_lex_state = 3}, - [4396] = {.lex_state = 268, .external_lex_state = 3}, - [4397] = {.lex_state = 268, .external_lex_state = 3}, - [4398] = {.lex_state = 268, .external_lex_state = 3}, - [4399] = {.lex_state = 268, .external_lex_state = 3}, - [4400] = {.lex_state = 268, .external_lex_state = 3}, - [4401] = {.lex_state = 268, .external_lex_state = 3}, - [4402] = {.lex_state = 268, .external_lex_state = 3}, - [4403] = {.lex_state = 268, .external_lex_state = 3}, - [4404] = {.lex_state = 268, .external_lex_state = 3}, - [4405] = {.lex_state = 268, .external_lex_state = 3}, - [4406] = {.lex_state = 268, .external_lex_state = 3}, - [4407] = {.lex_state = 268, .external_lex_state = 3}, - [4408] = {.lex_state = 268, .external_lex_state = 3}, - [4409] = {.lex_state = 73, .external_lex_state = 3}, - [4410] = {.lex_state = 73, .external_lex_state = 3}, - [4411] = {.lex_state = 268, .external_lex_state = 3}, - [4412] = {.lex_state = 268, .external_lex_state = 3}, - [4413] = {.lex_state = 268, .external_lex_state = 3}, - [4414] = {.lex_state = 73, .external_lex_state = 3}, - [4415] = {.lex_state = 73, .external_lex_state = 3}, - [4416] = {.lex_state = 268, .external_lex_state = 3}, - [4417] = {.lex_state = 268, .external_lex_state = 3}, - [4418] = {.lex_state = 268, .external_lex_state = 3}, - [4419] = {.lex_state = 268, .external_lex_state = 3}, - [4420] = {.lex_state = 268, .external_lex_state = 3}, - [4421] = {.lex_state = 268, .external_lex_state = 3}, - [4422] = {.lex_state = 268, .external_lex_state = 3}, - [4423] = {.lex_state = 268, .external_lex_state = 3}, - [4424] = {.lex_state = 268, .external_lex_state = 3}, - [4425] = {.lex_state = 268, .external_lex_state = 3}, - [4426] = {.lex_state = 19, .external_lex_state = 3}, - [4427] = {.lex_state = 61, .external_lex_state = 3}, - [4428] = {.lex_state = 13, .external_lex_state = 3}, - [4429] = {.lex_state = 268, .external_lex_state = 3}, - [4430] = {.lex_state = 19, .external_lex_state = 3}, - [4431] = {.lex_state = 268, .external_lex_state = 3}, - [4432] = {.lex_state = 268, .external_lex_state = 3}, - [4433] = {.lex_state = 268, .external_lex_state = 3}, - [4434] = {.lex_state = 268, .external_lex_state = 3}, - [4435] = {.lex_state = 268, .external_lex_state = 3}, - [4436] = {.lex_state = 268, .external_lex_state = 3}, - [4437] = {.lex_state = 268, .external_lex_state = 3}, - [4438] = {.lex_state = 268, .external_lex_state = 3}, - [4439] = {.lex_state = 268, .external_lex_state = 3}, - [4440] = {.lex_state = 268, .external_lex_state = 3}, - [4441] = {.lex_state = 268, .external_lex_state = 3}, - [4442] = {.lex_state = 268, .external_lex_state = 3}, - [4443] = {.lex_state = 268, .external_lex_state = 3}, - [4444] = {.lex_state = 13, .external_lex_state = 3}, - [4445] = {.lex_state = 268, .external_lex_state = 3}, - [4446] = {.lex_state = 268, .external_lex_state = 3}, - [4447] = {.lex_state = 268, .external_lex_state = 3}, - [4448] = {.lex_state = 268, .external_lex_state = 3}, - [4449] = {.lex_state = 268, .external_lex_state = 3}, - [4450] = {.lex_state = 268, .external_lex_state = 3}, - [4451] = {.lex_state = 268, .external_lex_state = 3}, - [4452] = {.lex_state = 268, .external_lex_state = 3}, - [4453] = {.lex_state = 268, .external_lex_state = 3}, - [4454] = {.lex_state = 268, .external_lex_state = 3}, - [4455] = {.lex_state = 268, .external_lex_state = 3}, - [4456] = {.lex_state = 268, .external_lex_state = 3}, - [4457] = {.lex_state = 268, .external_lex_state = 3}, - [4458] = {.lex_state = 268, .external_lex_state = 3}, - [4459] = {.lex_state = 73, .external_lex_state = 3}, - [4460] = {.lex_state = 268, .external_lex_state = 3}, - [4461] = {.lex_state = 73, .external_lex_state = 3}, - [4462] = {.lex_state = 268, .external_lex_state = 3}, - [4463] = {.lex_state = 268, .external_lex_state = 3}, - [4464] = {.lex_state = 268, .external_lex_state = 3}, - [4465] = {.lex_state = 13, .external_lex_state = 3}, - [4466] = {.lex_state = 268, .external_lex_state = 3}, - [4467] = {.lex_state = 268, .external_lex_state = 3}, - [4468] = {.lex_state = 268, .external_lex_state = 3}, - [4469] = {.lex_state = 268, .external_lex_state = 3}, - [4470] = {.lex_state = 268, .external_lex_state = 3}, - [4471] = {.lex_state = 268, .external_lex_state = 3}, - [4472] = {.lex_state = 268, .external_lex_state = 3}, - [4473] = {.lex_state = 268, .external_lex_state = 3}, - [4474] = {.lex_state = 268, .external_lex_state = 3}, - [4475] = {.lex_state = 268, .external_lex_state = 3}, - [4476] = {.lex_state = 268, .external_lex_state = 3}, - [4477] = {.lex_state = 268, .external_lex_state = 3}, - [4478] = {.lex_state = 268, .external_lex_state = 3}, - [4479] = {.lex_state = 268, .external_lex_state = 3}, - [4480] = {.lex_state = 268, .external_lex_state = 3}, - [4481] = {.lex_state = 268, .external_lex_state = 3}, - [4482] = {.lex_state = 268, .external_lex_state = 3}, - [4483] = {.lex_state = 268, .external_lex_state = 3}, - [4484] = {.lex_state = 268, .external_lex_state = 3}, - [4485] = {.lex_state = 268, .external_lex_state = 3}, - [4486] = {.lex_state = 268, .external_lex_state = 3}, - [4487] = {.lex_state = 268, .external_lex_state = 3}, - [4488] = {.lex_state = 268, .external_lex_state = 3}, - [4489] = {.lex_state = 268, .external_lex_state = 3}, - [4490] = {.lex_state = 268, .external_lex_state = 3}, - [4491] = {.lex_state = 268, .external_lex_state = 3}, - [4492] = {.lex_state = 268, .external_lex_state = 3}, - [4493] = {.lex_state = 268, .external_lex_state = 3}, - [4494] = {.lex_state = 268, .external_lex_state = 3}, - [4495] = {.lex_state = 268, .external_lex_state = 3}, - [4496] = {.lex_state = 268, .external_lex_state = 3}, - [4497] = {.lex_state = 268, .external_lex_state = 3}, - [4498] = {.lex_state = 268, .external_lex_state = 3}, - [4499] = {.lex_state = 268, .external_lex_state = 3}, - [4500] = {.lex_state = 268, .external_lex_state = 3}, - [4501] = {.lex_state = 268, .external_lex_state = 3}, - [4502] = {.lex_state = 268, .external_lex_state = 3}, - [4503] = {.lex_state = 268, .external_lex_state = 3}, - [4504] = {.lex_state = 268, .external_lex_state = 3}, - [4505] = {.lex_state = 268, .external_lex_state = 5}, - [4506] = {.lex_state = 268, .external_lex_state = 3}, - [4507] = {.lex_state = 13, .external_lex_state = 3}, - [4508] = {.lex_state = 73, .external_lex_state = 3}, - [4509] = {.lex_state = 73, .external_lex_state = 3}, - [4510] = {.lex_state = 13, .external_lex_state = 3}, - [4511] = {.lex_state = 268, .external_lex_state = 3}, - [4512] = {.lex_state = 19, .external_lex_state = 3}, - [4513] = {.lex_state = 19, .external_lex_state = 3}, - [4514] = {.lex_state = 19, .external_lex_state = 3}, - [4515] = {.lex_state = 268, .external_lex_state = 3}, - [4516] = {.lex_state = 268, .external_lex_state = 3}, - [4517] = {.lex_state = 268, .external_lex_state = 3}, - [4518] = {.lex_state = 268, .external_lex_state = 3}, - [4519] = {.lex_state = 268, .external_lex_state = 3}, - [4520] = {.lex_state = 268, .external_lex_state = 3}, - [4521] = {.lex_state = 61, .external_lex_state = 3}, - [4522] = {.lex_state = 268, .external_lex_state = 3}, - [4523] = {.lex_state = 268, .external_lex_state = 3}, - [4524] = {.lex_state = 268, .external_lex_state = 3}, - [4525] = {.lex_state = 268, .external_lex_state = 3}, - [4526] = {.lex_state = 19, .external_lex_state = 3}, - [4527] = {.lex_state = 19, .external_lex_state = 3}, - [4528] = {.lex_state = 268, .external_lex_state = 3}, - [4529] = {.lex_state = 268, .external_lex_state = 3}, - [4530] = {.lex_state = 268, .external_lex_state = 3}, - [4531] = {.lex_state = 268, .external_lex_state = 3}, - [4532] = {.lex_state = 268, .external_lex_state = 3}, - [4533] = {.lex_state = 268, .external_lex_state = 3}, - [4534] = {.lex_state = 19, .external_lex_state = 3}, - [4535] = {.lex_state = 268, .external_lex_state = 3}, - [4536] = {.lex_state = 268, .external_lex_state = 3}, - [4537] = {.lex_state = 268, .external_lex_state = 3}, - [4538] = {.lex_state = 268, .external_lex_state = 3}, - [4539] = {.lex_state = 268, .external_lex_state = 3}, - [4540] = {.lex_state = 268, .external_lex_state = 3}, - [4541] = {.lex_state = 268, .external_lex_state = 3}, - [4542] = {.lex_state = 268, .external_lex_state = 3}, - [4543] = {.lex_state = 268, .external_lex_state = 3}, - [4544] = {.lex_state = 268, .external_lex_state = 3}, - [4545] = {.lex_state = 268, .external_lex_state = 3}, - [4546] = {.lex_state = 268, .external_lex_state = 3}, - [4547] = {.lex_state = 268, .external_lex_state = 3}, - [4548] = {.lex_state = 268, .external_lex_state = 5}, - [4549] = {.lex_state = 268, .external_lex_state = 3}, - [4550] = {.lex_state = 268, .external_lex_state = 5}, - [4551] = {.lex_state = 268, .external_lex_state = 3}, - [4552] = {.lex_state = 268, .external_lex_state = 3}, - [4553] = {.lex_state = 268, .external_lex_state = 3}, - [4554] = {.lex_state = 268, .external_lex_state = 5}, - [4555] = {.lex_state = 13, .external_lex_state = 3}, - [4556] = {.lex_state = 268, .external_lex_state = 3}, - [4557] = {.lex_state = 268, .external_lex_state = 3}, - [4558] = {.lex_state = 268, .external_lex_state = 3}, - [4559] = {.lex_state = 268, .external_lex_state = 3}, - [4560] = {.lex_state = 268, .external_lex_state = 3}, - [4561] = {.lex_state = 268, .external_lex_state = 3}, - [4562] = {.lex_state = 268, .external_lex_state = 3}, - [4563] = {.lex_state = 268, .external_lex_state = 3}, - [4564] = {.lex_state = 268, .external_lex_state = 3}, - [4565] = {.lex_state = 268, .external_lex_state = 3}, - [4566] = {.lex_state = 268, .external_lex_state = 3}, - [4567] = {.lex_state = 268, .external_lex_state = 3}, - [4568] = {.lex_state = 268, .external_lex_state = 3}, - [4569] = {.lex_state = 13, .external_lex_state = 3}, - [4570] = {.lex_state = 268, .external_lex_state = 3}, - [4571] = {.lex_state = 13, .external_lex_state = 3}, - [4572] = {.lex_state = 268, .external_lex_state = 3}, - [4573] = {.lex_state = 268, .external_lex_state = 3}, - [4574] = {.lex_state = 268, .external_lex_state = 3}, - [4575] = {.lex_state = 268, .external_lex_state = 3}, - [4576] = {.lex_state = 13, .external_lex_state = 3}, - [4577] = {.lex_state = 13, .external_lex_state = 3}, - [4578] = {.lex_state = 268, .external_lex_state = 3}, - [4579] = {.lex_state = 268, .external_lex_state = 3}, - [4580] = {.lex_state = 268, .external_lex_state = 3}, - [4581] = {.lex_state = 268, .external_lex_state = 3}, - [4582] = {.lex_state = 268, .external_lex_state = 3}, - [4583] = {.lex_state = 268, .external_lex_state = 3}, - [4584] = {.lex_state = 268, .external_lex_state = 3}, - [4585] = {.lex_state = 268, .external_lex_state = 3}, - [4586] = {.lex_state = 268, .external_lex_state = 3}, - [4587] = {.lex_state = 268, .external_lex_state = 3}, - [4588] = {.lex_state = 268, .external_lex_state = 3}, - [4589] = {.lex_state = 268, .external_lex_state = 3}, - [4590] = {.lex_state = 268, .external_lex_state = 3}, - [4591] = {.lex_state = 268, .external_lex_state = 3}, - [4592] = {.lex_state = 268, .external_lex_state = 3}, - [4593] = {.lex_state = 268, .external_lex_state = 3}, - [4594] = {.lex_state = 268, .external_lex_state = 3}, - [4595] = {.lex_state = 268, .external_lex_state = 3}, - [4596] = {.lex_state = 268, .external_lex_state = 5}, - [4597] = {.lex_state = 268, .external_lex_state = 3}, - [4598] = {.lex_state = 268, .external_lex_state = 3}, - [4599] = {.lex_state = 268, .external_lex_state = 3}, - [4600] = {.lex_state = 13, .external_lex_state = 3}, - [4601] = {.lex_state = 268, .external_lex_state = 3}, - [4602] = {.lex_state = 268, .external_lex_state = 3}, - [4603] = {.lex_state = 268, .external_lex_state = 3}, - [4604] = {.lex_state = 13, .external_lex_state = 3}, - [4605] = {.lex_state = 268, .external_lex_state = 3}, - [4606] = {.lex_state = 268, .external_lex_state = 4}, - [4607] = {.lex_state = 268, .external_lex_state = 3}, - [4608] = {.lex_state = 268, .external_lex_state = 3}, - [4609] = {.lex_state = 268, .external_lex_state = 3}, - [4610] = {.lex_state = 268, .external_lex_state = 3}, - [4611] = {.lex_state = 268, .external_lex_state = 3}, - [4612] = {.lex_state = 268, .external_lex_state = 3}, - [4613] = {.lex_state = 268, .external_lex_state = 3}, - [4614] = {.lex_state = 268, .external_lex_state = 3}, - [4615] = {.lex_state = 268, .external_lex_state = 3}, - [4616] = {.lex_state = 268, .external_lex_state = 3}, - [4617] = {.lex_state = 268, .external_lex_state = 3}, - [4618] = {.lex_state = 268, .external_lex_state = 3}, - [4619] = {.lex_state = 268, .external_lex_state = 3}, - [4620] = {.lex_state = 268, .external_lex_state = 3}, - [4621] = {.lex_state = 268, .external_lex_state = 3}, - [4622] = {.lex_state = 13, .external_lex_state = 3}, - [4623] = {.lex_state = 268, .external_lex_state = 3}, - [4624] = {.lex_state = 268, .external_lex_state = 5}, - [4625] = {.lex_state = 268, .external_lex_state = 3}, - [4626] = {.lex_state = 268, .external_lex_state = 3}, - [4627] = {.lex_state = 268, .external_lex_state = 3}, - [4628] = {.lex_state = 268, .external_lex_state = 3}, - [4629] = {.lex_state = 268, .external_lex_state = 3}, - [4630] = {.lex_state = 268, .external_lex_state = 3}, - [4631] = {.lex_state = 268, .external_lex_state = 5}, - [4632] = {.lex_state = 268, .external_lex_state = 3}, - [4633] = {.lex_state = 268, .external_lex_state = 3}, - [4634] = {.lex_state = 268, .external_lex_state = 3}, - [4635] = {.lex_state = 268, .external_lex_state = 3}, - [4636] = {.lex_state = 268, .external_lex_state = 3}, - [4637] = {.lex_state = 268, .external_lex_state = 3}, - [4638] = {.lex_state = 268, .external_lex_state = 3}, - [4639] = {.lex_state = 13, .external_lex_state = 3}, - [4640] = {.lex_state = 268, .external_lex_state = 3}, - [4641] = {.lex_state = 268, .external_lex_state = 3}, - [4642] = {.lex_state = 268, .external_lex_state = 3}, - [4643] = {.lex_state = 268, .external_lex_state = 3}, - [4644] = {.lex_state = 268, .external_lex_state = 3}, - [4645] = {.lex_state = 268, .external_lex_state = 3}, - [4646] = {.lex_state = 268, .external_lex_state = 3}, - [4647] = {.lex_state = 268, .external_lex_state = 3}, - [4648] = {.lex_state = 268, .external_lex_state = 3}, - [4649] = {.lex_state = 268, .external_lex_state = 3}, - [4650] = {.lex_state = 268, .external_lex_state = 3}, - [4651] = {.lex_state = 268, .external_lex_state = 3}, - [4652] = {.lex_state = 268, .external_lex_state = 5}, - [4653] = {.lex_state = 268, .external_lex_state = 3}, - [4654] = {.lex_state = 61, .external_lex_state = 3}, - [4655] = {.lex_state = 268, .external_lex_state = 3}, - [4656] = {.lex_state = 268, .external_lex_state = 3}, - [4657] = {.lex_state = 268, .external_lex_state = 3}, - [4658] = {.lex_state = 268, .external_lex_state = 3}, - [4659] = {.lex_state = 268, .external_lex_state = 3}, - [4660] = {.lex_state = 268, .external_lex_state = 3}, - [4661] = {.lex_state = 268, .external_lex_state = 3}, - [4662] = {.lex_state = 268, .external_lex_state = 3}, - [4663] = {.lex_state = 268, .external_lex_state = 5}, - [4664] = {.lex_state = 268, .external_lex_state = 3}, - [4665] = {.lex_state = 268, .external_lex_state = 3}, - [4666] = {.lex_state = 268, .external_lex_state = 3}, - [4667] = {.lex_state = 19, .external_lex_state = 3}, - [4668] = {.lex_state = 19, .external_lex_state = 3}, - [4669] = {.lex_state = 268, .external_lex_state = 3}, - [4670] = {.lex_state = 268, .external_lex_state = 3}, - [4671] = {.lex_state = 268, .external_lex_state = 3}, - [4672] = {.lex_state = 268, .external_lex_state = 3}, - [4673] = {.lex_state = 268, .external_lex_state = 3}, - [4674] = {.lex_state = 19, .external_lex_state = 3}, - [4675] = {.lex_state = 90, .external_lex_state = 3}, - [4676] = {.lex_state = 19, .external_lex_state = 3}, - [4677] = {.lex_state = 268, .external_lex_state = 3}, - [4678] = {.lex_state = 268, .external_lex_state = 3}, - [4679] = {.lex_state = 268, .external_lex_state = 3}, - [4680] = {.lex_state = 268, .external_lex_state = 3}, - [4681] = {.lex_state = 19, .external_lex_state = 3}, - [4682] = {.lex_state = 268, .external_lex_state = 3}, - [4683] = {.lex_state = 268, .external_lex_state = 3}, - [4684] = {.lex_state = 268, .external_lex_state = 3}, - [4685] = {.lex_state = 268, .external_lex_state = 3}, - [4686] = {.lex_state = 268, .external_lex_state = 3}, - [4687] = {.lex_state = 19, .external_lex_state = 3}, - [4688] = {.lex_state = 268, .external_lex_state = 3}, - [4689] = {.lex_state = 19, .external_lex_state = 3}, - [4690] = {.lex_state = 268, .external_lex_state = 3}, - [4691] = {.lex_state = 268, .external_lex_state = 3}, - [4692] = {.lex_state = 268, .external_lex_state = 3}, - [4693] = {.lex_state = 268, .external_lex_state = 3}, - [4694] = {.lex_state = 268, .external_lex_state = 3}, - [4695] = {.lex_state = 268, .external_lex_state = 3}, - [4696] = {.lex_state = 268, .external_lex_state = 3}, - [4697] = {.lex_state = 268, .external_lex_state = 3}, - [4698] = {.lex_state = 268, .external_lex_state = 3}, - [4699] = {.lex_state = 268, .external_lex_state = 3}, - [4700] = {.lex_state = 268, .external_lex_state = 3}, - [4701] = {.lex_state = 268, .external_lex_state = 3}, - [4702] = {.lex_state = 268, .external_lex_state = 3}, - [4703] = {.lex_state = 268, .external_lex_state = 3}, - [4704] = {.lex_state = 19, .external_lex_state = 3}, - [4705] = {.lex_state = 268, .external_lex_state = 3}, - [4706] = {.lex_state = 268, .external_lex_state = 3}, - [4707] = {.lex_state = 268, .external_lex_state = 3}, - [4708] = {.lex_state = 268, .external_lex_state = 3}, - [4709] = {.lex_state = 268, .external_lex_state = 3}, - [4710] = {.lex_state = 268, .external_lex_state = 3}, - [4711] = {.lex_state = 268, .external_lex_state = 3}, - [4712] = {.lex_state = 13, .external_lex_state = 3}, - [4713] = {.lex_state = 268, .external_lex_state = 3}, - [4714] = {.lex_state = 1, .external_lex_state = 3}, - [4715] = {.lex_state = 268, .external_lex_state = 3}, - [4716] = {.lex_state = 268, .external_lex_state = 3}, - [4717] = {.lex_state = 268, .external_lex_state = 3}, - [4718] = {.lex_state = 268, .external_lex_state = 3}, - [4719] = {.lex_state = 268, .external_lex_state = 3}, - [4720] = {.lex_state = 268, .external_lex_state = 3}, - [4721] = {.lex_state = 268, .external_lex_state = 3}, - [4722] = {.lex_state = 268, .external_lex_state = 3}, - [4723] = {.lex_state = 268, .external_lex_state = 3}, - [4724] = {.lex_state = 90, .external_lex_state = 3}, - [4725] = {.lex_state = 268, .external_lex_state = 3}, - [4726] = {.lex_state = 268, .external_lex_state = 3}, - [4727] = {.lex_state = 268, .external_lex_state = 3}, - [4728] = {.lex_state = 1, .external_lex_state = 3}, - [4729] = {.lex_state = 58, .external_lex_state = 8}, - [4730] = {.lex_state = 268, .external_lex_state = 3}, - [4731] = {.lex_state = 268, .external_lex_state = 3}, - [4732] = {.lex_state = 13, .external_lex_state = 3}, - [4733] = {.lex_state = 268, .external_lex_state = 3}, - [4734] = {.lex_state = 19, .external_lex_state = 3}, - [4735] = {.lex_state = 19, .external_lex_state = 3}, - [4736] = {.lex_state = 268, .external_lex_state = 3}, - [4737] = {.lex_state = 268, .external_lex_state = 3}, - [4738] = {.lex_state = 19, .external_lex_state = 3}, - [4739] = {.lex_state = 19, .external_lex_state = 3}, - [4740] = {.lex_state = 268, .external_lex_state = 3}, - [4741] = {.lex_state = 268, .external_lex_state = 3}, - [4742] = {.lex_state = 268, .external_lex_state = 3}, - [4743] = {.lex_state = 268, .external_lex_state = 3}, - [4744] = {.lex_state = 268, .external_lex_state = 3}, - [4745] = {.lex_state = 268, .external_lex_state = 3}, - [4746] = {.lex_state = 268, .external_lex_state = 3}, - [4747] = {.lex_state = 268, .external_lex_state = 3}, - [4748] = {.lex_state = 268, .external_lex_state = 3}, - [4749] = {.lex_state = 268, .external_lex_state = 3}, - [4750] = {.lex_state = 268, .external_lex_state = 3}, - [4751] = {.lex_state = 268, .external_lex_state = 3}, - [4752] = {.lex_state = 268, .external_lex_state = 3}, - [4753] = {.lex_state = 268, .external_lex_state = 3}, - [4754] = {.lex_state = 268, .external_lex_state = 3}, - [4755] = {.lex_state = 19, .external_lex_state = 3}, - [4756] = {.lex_state = 268, .external_lex_state = 3}, - [4757] = {.lex_state = 13, .external_lex_state = 3}, - [4758] = {.lex_state = 268, .external_lex_state = 3}, - [4759] = {.lex_state = 268, .external_lex_state = 3}, - [4760] = {.lex_state = 19, .external_lex_state = 3}, - [4761] = {.lex_state = 268, .external_lex_state = 3}, - [4762] = {.lex_state = 19, .external_lex_state = 3}, - [4763] = {.lex_state = 268, .external_lex_state = 3}, - [4764] = {.lex_state = 268, .external_lex_state = 3}, - [4765] = {.lex_state = 90, .external_lex_state = 3}, - [4766] = {.lex_state = 1, .external_lex_state = 3}, - [4767] = {.lex_state = 268, .external_lex_state = 3}, - [4768] = {.lex_state = 19, .external_lex_state = 3}, - [4769] = {.lex_state = 19, .external_lex_state = 3}, - [4770] = {.lex_state = 268, .external_lex_state = 3}, - [4771] = {.lex_state = 19, .external_lex_state = 3}, - [4772] = {.lex_state = 268, .external_lex_state = 3}, - [4773] = {.lex_state = 268, .external_lex_state = 3}, - [4774] = {.lex_state = 268, .external_lex_state = 3}, - [4775] = {.lex_state = 268, .external_lex_state = 3}, - [4776] = {.lex_state = 90, .external_lex_state = 3}, - [4777] = {.lex_state = 19, .external_lex_state = 3}, - [4778] = {.lex_state = 268, .external_lex_state = 3}, - [4779] = {.lex_state = 268, .external_lex_state = 3}, - [4780] = {.lex_state = 268, .external_lex_state = 3}, - [4781] = {.lex_state = 268, .external_lex_state = 3}, - [4782] = {.lex_state = 1, .external_lex_state = 3}, - [4783] = {.lex_state = 90, .external_lex_state = 3}, - [4784] = {.lex_state = 19, .external_lex_state = 3}, - [4785] = {.lex_state = 58, .external_lex_state = 8}, - [4786] = {.lex_state = 268, .external_lex_state = 3}, - [4787] = {.lex_state = 268, .external_lex_state = 3}, - [4788] = {.lex_state = 268, .external_lex_state = 3}, - [4789] = {.lex_state = 268, .external_lex_state = 3}, - [4790] = {.lex_state = 19, .external_lex_state = 3}, - [4791] = {.lex_state = 19, .external_lex_state = 3}, - [4792] = {.lex_state = 268, .external_lex_state = 3}, - [4793] = {.lex_state = 268, .external_lex_state = 3}, - [4794] = {.lex_state = 268, .external_lex_state = 3}, - [4795] = {.lex_state = 268, .external_lex_state = 3}, - [4796] = {.lex_state = 19, .external_lex_state = 3}, - [4797] = {.lex_state = 268, .external_lex_state = 3}, - [4798] = {.lex_state = 268, .external_lex_state = 3}, - [4799] = {.lex_state = 268, .external_lex_state = 3}, - [4800] = {.lex_state = 268, .external_lex_state = 3}, - [4801] = {.lex_state = 19, .external_lex_state = 3}, - [4802] = {.lex_state = 268, .external_lex_state = 3}, - [4803] = {.lex_state = 268, .external_lex_state = 3}, - [4804] = {.lex_state = 268, .external_lex_state = 3}, - [4805] = {.lex_state = 268, .external_lex_state = 3}, - [4806] = {.lex_state = 1, .external_lex_state = 3}, - [4807] = {.lex_state = 268, .external_lex_state = 3}, - [4808] = {.lex_state = 268, .external_lex_state = 3}, - [4809] = {.lex_state = 268, .external_lex_state = 3}, - [4810] = {.lex_state = 19, .external_lex_state = 3}, - [4811] = {.lex_state = 268, .external_lex_state = 3}, - [4812] = {.lex_state = 19, .external_lex_state = 3}, - [4813] = {.lex_state = 268, .external_lex_state = 3}, - [4814] = {.lex_state = 268, .external_lex_state = 3}, - [4815] = {.lex_state = 19, .external_lex_state = 3}, - [4816] = {.lex_state = 268, .external_lex_state = 3}, - [4817] = {.lex_state = 268, .external_lex_state = 3}, - [4818] = {.lex_state = 19, .external_lex_state = 3}, - [4819] = {.lex_state = 268, .external_lex_state = 3}, - [4820] = {.lex_state = 268, .external_lex_state = 3}, - [4821] = {.lex_state = 19, .external_lex_state = 3}, - [4822] = {.lex_state = 268, .external_lex_state = 3}, - [4823] = {.lex_state = 19, .external_lex_state = 3}, - [4824] = {.lex_state = 268, .external_lex_state = 3}, - [4825] = {.lex_state = 19, .external_lex_state = 3}, - [4826] = {.lex_state = 268, .external_lex_state = 3}, - [4827] = {.lex_state = 268, .external_lex_state = 3}, - [4828] = {.lex_state = 268, .external_lex_state = 3}, - [4829] = {.lex_state = 19, .external_lex_state = 3}, - [4830] = {.lex_state = 268, .external_lex_state = 3}, - [4831] = {.lex_state = 268, .external_lex_state = 3}, - [4832] = {.lex_state = 1, .external_lex_state = 3}, - [4833] = {.lex_state = 268, .external_lex_state = 3}, - [4834] = {.lex_state = 19, .external_lex_state = 3}, - [4835] = {.lex_state = 268, .external_lex_state = 3}, - [4836] = {.lex_state = 268, .external_lex_state = 3}, - [4837] = {.lex_state = 268, .external_lex_state = 3}, - [4838] = {.lex_state = 268, .external_lex_state = 3}, - [4839] = {.lex_state = 268, .external_lex_state = 3}, - [4840] = {.lex_state = 268, .external_lex_state = 3}, - [4841] = {.lex_state = 19, .external_lex_state = 3}, - [4842] = {.lex_state = 268, .external_lex_state = 3}, - [4843] = {.lex_state = 19, .external_lex_state = 3}, - [4844] = {.lex_state = 19, .external_lex_state = 3}, - [4845] = {.lex_state = 268, .external_lex_state = 3}, - [4846] = {.lex_state = 268, .external_lex_state = 3}, - [4847] = {.lex_state = 268, .external_lex_state = 3}, - [4848] = {.lex_state = 268, .external_lex_state = 3}, - [4849] = {.lex_state = 19, .external_lex_state = 3}, - [4850] = {.lex_state = 268, .external_lex_state = 3}, - [4851] = {.lex_state = 268, .external_lex_state = 3}, - [4852] = {.lex_state = 268, .external_lex_state = 3}, - [4853] = {.lex_state = 268, .external_lex_state = 3}, - [4854] = {.lex_state = 19, .external_lex_state = 3}, - [4855] = {.lex_state = 268, .external_lex_state = 3}, - [4856] = {.lex_state = 268, .external_lex_state = 3}, - [4857] = {.lex_state = 1, .external_lex_state = 3}, - [4858] = {.lex_state = 19, .external_lex_state = 3}, - [4859] = {.lex_state = 268, .external_lex_state = 3}, - [4860] = {.lex_state = 19, .external_lex_state = 3}, - [4861] = {.lex_state = 268, .external_lex_state = 3}, - [4862] = {.lex_state = 268, .external_lex_state = 3}, - [4863] = {.lex_state = 268, .external_lex_state = 3}, - [4864] = {.lex_state = 268, .external_lex_state = 3}, - [4865] = {.lex_state = 268, .external_lex_state = 3}, - [4866] = {.lex_state = 13, .external_lex_state = 3}, - [4867] = {.lex_state = 268, .external_lex_state = 3}, - [4868] = {.lex_state = 268, .external_lex_state = 3}, - [4869] = {.lex_state = 268, .external_lex_state = 3}, - [4870] = {.lex_state = 268, .external_lex_state = 3}, - [4871] = {.lex_state = 268, .external_lex_state = 3}, - [4872] = {.lex_state = 268, .external_lex_state = 3}, - [4873] = {.lex_state = 19, .external_lex_state = 3}, - [4874] = {.lex_state = 268, .external_lex_state = 3}, - [4875] = {.lex_state = 268, .external_lex_state = 3}, - [4876] = {.lex_state = 268, .external_lex_state = 3}, - [4877] = {.lex_state = 268, .external_lex_state = 3}, - [4878] = {.lex_state = 268, .external_lex_state = 3}, - [4879] = {.lex_state = 268, .external_lex_state = 3}, - [4880] = {.lex_state = 268, .external_lex_state = 3}, - [4881] = {.lex_state = 268, .external_lex_state = 3}, - [4882] = {.lex_state = 13, .external_lex_state = 3}, - [4883] = {.lex_state = 268, .external_lex_state = 3}, - [4884] = {.lex_state = 268, .external_lex_state = 3}, - [4885] = {.lex_state = 268, .external_lex_state = 3}, - [4886] = {.lex_state = 268, .external_lex_state = 3}, - [4887] = {.lex_state = 19, .external_lex_state = 3}, - [4888] = {.lex_state = 268, .external_lex_state = 3}, - [4889] = {.lex_state = 268, .external_lex_state = 3}, - [4890] = {.lex_state = 1, .external_lex_state = 3}, - [4891] = {.lex_state = 268, .external_lex_state = 3}, - [4892] = {.lex_state = 268, .external_lex_state = 3}, - [4893] = {.lex_state = 268, .external_lex_state = 3}, - [4894] = {.lex_state = 268, .external_lex_state = 3}, - [4895] = {.lex_state = 268, .external_lex_state = 3}, - [4896] = {.lex_state = 19, .external_lex_state = 3}, - [4897] = {.lex_state = 268, .external_lex_state = 3}, - [4898] = {.lex_state = 268, .external_lex_state = 3}, - [4899] = {.lex_state = 268, .external_lex_state = 3}, - [4900] = {.lex_state = 268, .external_lex_state = 3}, - [4901] = {.lex_state = 268, .external_lex_state = 3}, - [4902] = {.lex_state = 19, .external_lex_state = 3}, - [4903] = {.lex_state = 268, .external_lex_state = 3}, - [4904] = {.lex_state = 268, .external_lex_state = 3}, - [4905] = {.lex_state = 268, .external_lex_state = 3}, - [4906] = {.lex_state = 268, .external_lex_state = 3}, - [4907] = {.lex_state = 268, .external_lex_state = 3}, - [4908] = {.lex_state = 268, .external_lex_state = 3}, - [4909] = {.lex_state = 268, .external_lex_state = 3}, - [4910] = {.lex_state = 90, .external_lex_state = 3}, - [4911] = {.lex_state = 268, .external_lex_state = 3}, - [4912] = {.lex_state = 268, .external_lex_state = 3}, - [4913] = {.lex_state = 58, .external_lex_state = 8}, - [4914] = {.lex_state = 268, .external_lex_state = 3}, - [4915] = {.lex_state = 268, .external_lex_state = 3}, - [4916] = {.lex_state = 268, .external_lex_state = 3}, - [4917] = {.lex_state = 268, .external_lex_state = 3}, - [4918] = {.lex_state = 268, .external_lex_state = 3}, - [4919] = {.lex_state = 268, .external_lex_state = 3}, - [4920] = {.lex_state = 13, .external_lex_state = 3}, - [4921] = {.lex_state = 13, .external_lex_state = 3}, - [4922] = {.lex_state = 268, .external_lex_state = 3}, - [4923] = {.lex_state = 268, .external_lex_state = 3}, - [4924] = {.lex_state = 268, .external_lex_state = 3}, - [4925] = {.lex_state = 268, .external_lex_state = 3}, - [4926] = {.lex_state = 268, .external_lex_state = 3}, - [4927] = {.lex_state = 19, .external_lex_state = 3}, - [4928] = {.lex_state = 268, .external_lex_state = 3}, - [4929] = {.lex_state = 268, .external_lex_state = 3}, - [4930] = {.lex_state = 268, .external_lex_state = 3}, - [4931] = {.lex_state = 268, .external_lex_state = 3}, - [4932] = {.lex_state = 268, .external_lex_state = 3}, - [4933] = {.lex_state = 90, .external_lex_state = 3}, - [4934] = {.lex_state = 268, .external_lex_state = 3}, - [4935] = {.lex_state = 268, .external_lex_state = 3}, - [4936] = {.lex_state = 268, .external_lex_state = 3}, - [4937] = {.lex_state = 268, .external_lex_state = 3}, - [4938] = {.lex_state = 268, .external_lex_state = 3}, - [4939] = {.lex_state = 268, .external_lex_state = 3}, - [4940] = {.lex_state = 268, .external_lex_state = 3}, - [4941] = {.lex_state = 58, .external_lex_state = 8}, - [4942] = {.lex_state = 268, .external_lex_state = 3}, - [4943] = {.lex_state = 268, .external_lex_state = 3}, - [4944] = {.lex_state = 268, .external_lex_state = 3}, - [4945] = {.lex_state = 268, .external_lex_state = 3}, - [4946] = {.lex_state = 13, .external_lex_state = 3}, - [4947] = {.lex_state = 268, .external_lex_state = 3}, - [4948] = {.lex_state = 268, .external_lex_state = 3}, - [4949] = {.lex_state = 19, .external_lex_state = 3}, - [4950] = {.lex_state = 268, .external_lex_state = 3}, - [4951] = {.lex_state = 268, .external_lex_state = 3}, - [4952] = {.lex_state = 268, .external_lex_state = 3}, - [4953] = {.lex_state = 268, .external_lex_state = 3}, - [4954] = {.lex_state = 268, .external_lex_state = 3}, - [4955] = {.lex_state = 268, .external_lex_state = 3}, - [4956] = {.lex_state = 58, .external_lex_state = 8}, - [4957] = {.lex_state = 268, .external_lex_state = 3}, - [4958] = {.lex_state = 268, .external_lex_state = 3}, - [4959] = {.lex_state = 13, .external_lex_state = 3}, - [4960] = {.lex_state = 268, .external_lex_state = 3}, - [4961] = {.lex_state = 268, .external_lex_state = 3}, - [4962] = {.lex_state = 268, .external_lex_state = 3}, - [4963] = {.lex_state = 1, .external_lex_state = 3}, - [4964] = {.lex_state = 58, .external_lex_state = 8}, - [4965] = {.lex_state = 268, .external_lex_state = 3}, - [4966] = {.lex_state = 19, .external_lex_state = 3}, - [4967] = {.lex_state = 268, .external_lex_state = 3}, - [4968] = {.lex_state = 268, .external_lex_state = 3}, - [4969] = {.lex_state = 13, .external_lex_state = 3}, - [4970] = {.lex_state = 268, .external_lex_state = 3}, - [4971] = {.lex_state = 268, .external_lex_state = 3}, - [4972] = {.lex_state = 268, .external_lex_state = 3}, - [4973] = {.lex_state = 1, .external_lex_state = 3}, - [4974] = {.lex_state = 90, .external_lex_state = 3}, - [4975] = {.lex_state = 19, .external_lex_state = 3}, - [4976] = {.lex_state = 58, .external_lex_state = 8}, - [4977] = {.lex_state = 268, .external_lex_state = 3}, - [4978] = {.lex_state = 268, .external_lex_state = 3}, - [4979] = {.lex_state = 268, .external_lex_state = 3}, - [4980] = {.lex_state = 268, .external_lex_state = 3}, - [4981] = {.lex_state = 268, .external_lex_state = 3}, - [4982] = {.lex_state = 268, .external_lex_state = 3}, - [4983] = {.lex_state = 268, .external_lex_state = 3}, - [4984] = {.lex_state = 268, .external_lex_state = 3}, - [4985] = {.lex_state = 268, .external_lex_state = 3}, - [4986] = {.lex_state = 268, .external_lex_state = 3}, - [4987] = {.lex_state = 268, .external_lex_state = 3}, - [4988] = {.lex_state = 268, .external_lex_state = 3}, - [4989] = {.lex_state = 268, .external_lex_state = 3}, - [4990] = {.lex_state = 19, .external_lex_state = 3}, - [4991] = {.lex_state = 268, .external_lex_state = 3}, - [4992] = {.lex_state = 19, .external_lex_state = 3}, - [4993] = {.lex_state = 268, .external_lex_state = 3}, - [4994] = {.lex_state = 13, .external_lex_state = 3}, - [4995] = {.lex_state = 268, .external_lex_state = 3}, - [4996] = {.lex_state = 268, .external_lex_state = 3}, - [4997] = {.lex_state = 268, .external_lex_state = 3}, - [4998] = {.lex_state = 19, .external_lex_state = 3}, - [4999] = {.lex_state = 268, .external_lex_state = 3}, - [5000] = {.lex_state = 268, .external_lex_state = 3}, - [5001] = {.lex_state = 268, .external_lex_state = 3}, - [5002] = {.lex_state = 268, .external_lex_state = 3}, - [5003] = {.lex_state = 268, .external_lex_state = 3}, - [5004] = {.lex_state = 19, .external_lex_state = 3}, - [5005] = {.lex_state = 268, .external_lex_state = 3}, - [5006] = {.lex_state = 268, .external_lex_state = 3}, - [5007] = {.lex_state = 268, .external_lex_state = 3}, - [5008] = {.lex_state = 268, .external_lex_state = 3}, - [5009] = {.lex_state = 19, .external_lex_state = 3}, - [5010] = {.lex_state = 13, .external_lex_state = 3}, - [5011] = {.lex_state = 268, .external_lex_state = 3}, - [5012] = {.lex_state = 268, .external_lex_state = 3}, - [5013] = {.lex_state = 268, .external_lex_state = 3}, - [5014] = {.lex_state = 268, .external_lex_state = 3}, - [5015] = {.lex_state = 268, .external_lex_state = 3}, - [5016] = {.lex_state = 268, .external_lex_state = 3}, - [5017] = {.lex_state = 268, .external_lex_state = 3}, - [5018] = {.lex_state = 268, .external_lex_state = 3}, - [5019] = {.lex_state = 268, .external_lex_state = 3}, - [5020] = {.lex_state = 268, .external_lex_state = 3}, - [5021] = {.lex_state = 268, .external_lex_state = 3}, - [5022] = {.lex_state = 268, .external_lex_state = 3}, - [5023] = {.lex_state = 90, .external_lex_state = 3}, - [5024] = {.lex_state = 268, .external_lex_state = 3}, - [5025] = {.lex_state = 58, .external_lex_state = 8}, - [5026] = {.lex_state = 13, .external_lex_state = 3}, - [5027] = {.lex_state = 13, .external_lex_state = 3}, - [5028] = {.lex_state = 19, .external_lex_state = 3}, - [5029] = {.lex_state = 268, .external_lex_state = 3}, - [5030] = {.lex_state = 268, .external_lex_state = 3}, - [5031] = {.lex_state = 268, .external_lex_state = 3}, - [5032] = {.lex_state = 268, .external_lex_state = 3}, - [5033] = {.lex_state = 268, .external_lex_state = 3}, - [5034] = {.lex_state = 19, .external_lex_state = 3}, - [5035] = {.lex_state = 19, .external_lex_state = 3}, - [5036] = {.lex_state = 268, .external_lex_state = 3}, - [5037] = {.lex_state = 268, .external_lex_state = 3}, - [5038] = {.lex_state = 268, .external_lex_state = 3}, - [5039] = {.lex_state = 268, .external_lex_state = 3}, - [5040] = {.lex_state = 268, .external_lex_state = 3}, - [5041] = {.lex_state = 268, .external_lex_state = 3}, - [5042] = {.lex_state = 268, .external_lex_state = 3}, - [5043] = {.lex_state = 1, .external_lex_state = 3}, - [5044] = {.lex_state = 268, .external_lex_state = 3}, - [5045] = {.lex_state = 268, .external_lex_state = 3}, - [5046] = {.lex_state = 268, .external_lex_state = 3}, - [5047] = {.lex_state = 268, .external_lex_state = 3}, - [5048] = {.lex_state = 268, .external_lex_state = 3}, - [5049] = {.lex_state = 268, .external_lex_state = 3}, - [5050] = {.lex_state = 268, .external_lex_state = 3}, - [5051] = {.lex_state = 19, .external_lex_state = 3}, - [5052] = {.lex_state = 268, .external_lex_state = 3}, - [5053] = {.lex_state = 268, .external_lex_state = 3}, - [5054] = {.lex_state = 268, .external_lex_state = 3}, - [5055] = {.lex_state = 268, .external_lex_state = 3}, - [5056] = {.lex_state = 90, .external_lex_state = 3}, - [5057] = {.lex_state = 268, .external_lex_state = 3}, - [5058] = {.lex_state = 13, .external_lex_state = 3}, - [5059] = {.lex_state = 268, .external_lex_state = 3}, - [5060] = {.lex_state = 19, .external_lex_state = 3}, - [5061] = {.lex_state = 268, .external_lex_state = 3}, - [5062] = {.lex_state = 268, .external_lex_state = 3}, - [5063] = {.lex_state = 268, .external_lex_state = 3}, - [5064] = {.lex_state = 268, .external_lex_state = 3}, - [5065] = {.lex_state = 268, .external_lex_state = 3}, - [5066] = {.lex_state = 268, .external_lex_state = 3}, - [5067] = {.lex_state = 268, .external_lex_state = 3}, - [5068] = {.lex_state = 19, .external_lex_state = 3}, - [5069] = {.lex_state = 268, .external_lex_state = 3}, - [5070] = {.lex_state = 268, .external_lex_state = 3}, - [5071] = {.lex_state = 268, .external_lex_state = 3}, - [5072] = {.lex_state = 19, .external_lex_state = 3}, - [5073] = {.lex_state = 268, .external_lex_state = 3}, - [5074] = {.lex_state = 268, .external_lex_state = 3}, - [5075] = {.lex_state = 268, .external_lex_state = 3}, - [5076] = {.lex_state = 268, .external_lex_state = 3}, - [5077] = {.lex_state = 268, .external_lex_state = 3}, - [5078] = {.lex_state = 19, .external_lex_state = 3}, - [5079] = {.lex_state = 268, .external_lex_state = 3}, - [5080] = {.lex_state = 268, .external_lex_state = 3}, - [5081] = {.lex_state = 90, .external_lex_state = 3}, - [5082] = {.lex_state = 268, .external_lex_state = 3}, - [5083] = {(TSStateId)(-1),}, - [5084] = {(TSStateId)(-1),}, - [5085] = {(TSStateId)(-1),}, - [5086] = {(TSStateId)(-1),}, - [5087] = {(TSStateId)(-1),}, - [5088] = {(TSStateId)(-1),}, + [1] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [3] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [4] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [5] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [6] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [7] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [8] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [9] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [10] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 3}, + [11] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 3}, + [12] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [13] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 3}, + [14] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [15] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 3}, + [16] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 3}, + [17] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 3}, + [18] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 3}, + [19] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 3}, + [20] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [21] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 3}, + [22] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [23] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 3}, + [24] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [25] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [26] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [27] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 3}, + [28] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 4}, + [29] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [30] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 4}, + [31] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [32] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [33] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [34] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [35] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [36] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [37] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [38] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [39] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [40] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [41] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [42] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [43] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [44] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [45] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 4}, + [46] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [47] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [48] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 4}, + [49] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [50] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [51] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [52] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 5}, + [53] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [54] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [55] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 5}, + [56] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [57] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [58] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [59] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [60] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [61] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [62] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [63] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [64] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [65] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [66] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [67] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [68] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [69] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [70] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [71] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [72] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [73] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [74] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [75] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [76] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [77] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [78] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [79] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [80] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [81] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [82] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [83] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [84] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [85] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [86] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [87] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [88] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [89] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [90] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [91] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [92] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [93] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [94] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [95] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [96] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [97] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [98] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [99] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [100] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [101] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [102] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [103] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [104] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [105] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [106] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [107] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [108] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [109] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [110] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [111] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [112] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [113] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [114] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [115] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [116] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [117] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [118] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [119] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [120] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [121] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [122] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [123] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [124] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [125] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [126] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [127] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [128] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [129] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [130] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [131] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [132] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [133] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [134] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [135] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [136] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [137] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [138] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [139] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [140] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [141] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [142] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [143] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [144] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [145] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [146] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [147] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [148] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [149] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [150] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [151] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [152] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [153] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [154] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [155] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [156] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [157] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [158] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [159] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [160] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [161] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [162] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [163] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [164] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [165] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [166] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [167] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [168] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [169] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [170] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [171] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [172] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [173] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [174] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [175] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [176] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [177] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [178] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [179] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [180] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [181] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [182] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [183] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [184] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [185] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [186] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [187] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [188] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [189] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [190] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [191] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [192] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [193] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [194] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [195] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [196] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [197] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [198] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [199] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [200] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [201] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [202] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [203] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [204] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [205] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [206] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [207] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [208] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [209] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [210] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [211] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [212] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [213] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [214] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [215] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [216] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [217] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [218] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [219] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [220] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [221] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [222] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [223] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [224] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [225] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [226] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [227] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [228] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [229] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [230] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [231] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [232] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [233] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [234] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [235] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [236] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [237] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [238] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [239] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [240] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [241] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [242] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [243] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [244] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [245] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [246] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [247] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [248] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [249] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [250] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [251] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [252] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [253] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [254] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [255] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [256] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [257] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [258] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [259] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [260] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [261] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [262] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [263] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [264] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [265] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [266] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [267] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [268] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [269] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [270] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [271] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [272] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [273] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [274] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [275] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [276] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [277] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [278] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [279] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [280] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [281] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [282] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [283] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [284] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [285] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [286] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [287] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [288] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [289] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [290] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [291] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [292] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [293] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [294] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [295] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [296] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [297] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [298] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [299] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [300] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [301] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [302] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [303] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [304] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [305] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [306] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [307] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [308] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [309] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [310] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [311] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [312] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [313] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [314] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [315] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [316] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [317] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [318] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [319] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [320] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [321] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [322] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [323] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [324] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [325] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [326] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [327] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [328] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [329] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [330] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [331] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [332] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [333] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [334] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [335] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [336] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [337] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [338] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [339] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [340] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [341] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [342] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [343] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [344] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [345] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [346] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [347] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [348] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [349] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [350] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [351] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [352] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [353] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [354] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [355] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [356] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [357] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [358] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [359] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [360] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [361] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [362] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [363] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [364] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [365] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [366] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [367] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [368] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [369] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [370] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [371] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [372] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [373] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [374] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [375] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [376] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [377] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [378] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [379] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [380] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [381] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [382] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [383] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [384] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [385] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [386] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [387] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [388] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [389] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [390] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [391] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [392] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [393] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [394] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [395] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [396] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [397] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [398] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [399] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [400] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [401] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [402] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [403] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [404] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [405] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [406] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [407] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [408] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [409] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [410] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [411] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [412] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [413] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [414] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [415] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [416] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [417] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [418] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [419] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [420] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [421] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [422] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [423] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [424] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [425] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [426] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [427] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [428] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [429] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [430] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [431] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [432] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [433] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [434] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [435] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [436] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [437] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [438] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [439] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [440] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [441] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [442] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [443] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [444] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [445] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [446] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [447] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [448] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [449] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [450] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [451] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [452] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [453] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [454] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [455] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [456] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [457] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [458] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [459] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [460] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [461] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [462] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [463] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [464] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [465] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [466] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [467] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [468] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [469] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [470] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [471] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [472] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [473] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [474] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [475] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [476] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [477] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [478] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [479] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [480] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [481] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [482] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [483] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [484] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [485] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [486] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [487] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [488] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [489] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [490] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [491] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [492] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [493] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [494] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [495] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [496] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [497] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [498] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [499] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [500] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [501] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [502] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [503] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [504] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [505] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [506] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [507] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [508] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [509] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [510] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [511] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [512] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [513] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [514] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [515] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [516] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [517] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [518] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [519] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [520] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [521] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [522] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [523] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [524] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [525] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [526] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [527] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [528] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [529] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [530] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [531] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [532] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [533] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [534] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [535] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [536] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [537] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [538] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [539] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [540] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [541] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [542] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [543] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [544] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [545] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [546] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [547] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [548] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [549] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [550] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [551] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [552] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [553] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [554] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [555] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [556] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [557] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [558] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [559] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [560] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [561] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [562] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [563] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [564] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [565] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [566] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [567] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [568] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [569] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [570] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [571] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [572] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [573] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [574] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [575] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [576] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [577] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [578] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [579] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [580] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [581] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [582] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [583] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [584] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [585] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [586] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [587] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [588] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [589] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [590] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [591] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [592] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [593] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [594] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [595] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [596] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [597] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [598] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [599] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [600] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [601] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [602] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [603] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [604] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [605] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [606] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [607] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [608] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [609] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [610] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [611] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [612] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [613] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [614] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [615] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [616] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [617] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [618] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [619] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [620] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [621] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [622] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [623] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [624] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [625] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [626] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [627] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [628] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [629] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [630] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [631] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [632] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [633] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [634] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [635] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [636] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [637] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [638] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [639] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [640] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [641] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [642] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [643] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [644] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [645] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [646] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [647] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [648] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [649] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 5}, + [650] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [651] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [652] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [653] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [654] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [655] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [656] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [657] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [658] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [659] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [660] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [661] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [662] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [663] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [664] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [665] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [666] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [667] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [668] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [669] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [670] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [671] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [672] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [673] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [674] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [675] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [676] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [677] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [678] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [679] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [680] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [681] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [682] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [683] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [684] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [685] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [686] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [687] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [688] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [689] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [690] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [691] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [692] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [693] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [694] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [695] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [696] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [697] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [698] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [699] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [700] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [701] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [702] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [703] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [704] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [705] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [706] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [707] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [708] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [709] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [710] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [711] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 6}, + [712] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [713] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [714] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [715] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [716] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [717] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [718] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [719] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [720] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [721] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [722] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [723] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [724] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 8}, + [725] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [726] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [727] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [728] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [729] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [730] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [731] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [732] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [733] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [734] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [735] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [736] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [737] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [738] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [739] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [740] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [741] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [742] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 8}, + [743] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [744] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [745] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [746] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [747] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [748] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [749] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [750] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [751] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [752] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [753] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [754] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [755] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [756] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [757] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [758] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [759] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [760] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [761] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [762] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [763] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [764] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [765] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [766] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [767] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [768] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [769] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [770] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [771] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [772] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [773] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [774] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [775] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [776] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [777] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [778] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [779] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [780] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [781] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [782] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [783] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [784] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [785] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 9}, + [786] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [787] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [788] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [789] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [790] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [791] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [792] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [793] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [794] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [795] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [796] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [797] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [798] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [799] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [800] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [801] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [802] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [803] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [804] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [805] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [806] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [807] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [808] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [809] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [810] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [811] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 10}, + [812] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [813] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [814] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [815] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [816] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [817] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [818] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [819] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [820] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [821] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [822] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [823] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 8}, + [824] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [825] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [826] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [827] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [828] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [829] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [830] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [831] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 8}, + [832] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [833] = {.lex_state = 7, .external_lex_state = 2, .reserved_word_set_id = 1}, + [834] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [835] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [836] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 11}, + [837] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [838] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 11}, + [839] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [840] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [841] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [842] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [843] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [844] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [845] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [846] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [847] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [848] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [849] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [850] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [851] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [852] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [853] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [854] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [855] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [856] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [857] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [858] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [859] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [860] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [861] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [862] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [863] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [864] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [865] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [866] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [867] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [868] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [869] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [870] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [871] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [872] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [873] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [874] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [875] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [876] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [877] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [878] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [879] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [880] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [881] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [882] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [883] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [884] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [885] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [886] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [887] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [888] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [889] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [890] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [891] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [892] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [893] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [894] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [895] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [896] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [897] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [898] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [899] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [900] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [901] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [902] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [903] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [904] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [905] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [906] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [907] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [908] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [909] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [910] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [911] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [912] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [913] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [914] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [915] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [916] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [917] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [918] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [919] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [920] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [921] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [922] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [923] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [924] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [925] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [926] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [927] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [928] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [929] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [930] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [931] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [932] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [933] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [934] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [935] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [936] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [937] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [938] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [939] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [940] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [941] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [942] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [943] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [944] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [945] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [946] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [947] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [948] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [949] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [950] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [951] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [952] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [953] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [954] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [955] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [956] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [957] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [958] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [959] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [960] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [961] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [962] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [963] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [964] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [965] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [966] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [967] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [968] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [969] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [970] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [971] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [972] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [973] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [974] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [975] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [976] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [977] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [978] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 6}, + [979] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [980] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [981] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [982] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [983] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [984] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [985] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [986] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [987] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [988] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [989] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [990] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [991] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [992] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 7}, + [993] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [994] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [995] = {.lex_state = 9, .external_lex_state = 3}, + [996] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [997] = {.lex_state = 10, .external_lex_state = 3}, + [998] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [999] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1000] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1001] = {.lex_state = 10, .external_lex_state = 3}, + [1002] = {.lex_state = 10, .external_lex_state = 3}, + [1003] = {.lex_state = 10, .external_lex_state = 3}, + [1004] = {.lex_state = 10, .external_lex_state = 3}, + [1005] = {.lex_state = 10, .external_lex_state = 3}, + [1006] = {.lex_state = 10, .external_lex_state = 3}, + [1007] = {.lex_state = 10, .external_lex_state = 3}, + [1008] = {.lex_state = 10, .external_lex_state = 3}, + [1009] = {.lex_state = 10, .external_lex_state = 3}, + [1010] = {.lex_state = 10, .external_lex_state = 3}, + [1011] = {.lex_state = 10, .external_lex_state = 3}, + [1012] = {.lex_state = 10, .external_lex_state = 3}, + [1013] = {.lex_state = 10, .external_lex_state = 3}, + [1014] = {.lex_state = 10, .external_lex_state = 3}, + [1015] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1016] = {.lex_state = 10, .external_lex_state = 3}, + [1017] = {.lex_state = 10, .external_lex_state = 3}, + [1018] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 14}, + [1019] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 14}, + [1020] = {.lex_state = 10, .external_lex_state = 3}, + [1021] = {.lex_state = 10, .external_lex_state = 3}, + [1022] = {.lex_state = 10, .external_lex_state = 3}, + [1023] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1024] = {.lex_state = 10, .external_lex_state = 3}, + [1025] = {.lex_state = 10, .external_lex_state = 3}, + [1026] = {.lex_state = 10, .external_lex_state = 3}, + [1027] = {.lex_state = 10, .external_lex_state = 3}, + [1028] = {.lex_state = 10, .external_lex_state = 3}, + [1029] = {.lex_state = 10, .external_lex_state = 3}, + [1030] = {.lex_state = 10, .external_lex_state = 3}, + [1031] = {.lex_state = 10, .external_lex_state = 3}, + [1032] = {.lex_state = 10, .external_lex_state = 3}, + [1033] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1034] = {.lex_state = 10, .external_lex_state = 3}, + [1035] = {.lex_state = 10, .external_lex_state = 3}, + [1036] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1037] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1038] = {.lex_state = 10, .external_lex_state = 3}, + [1039] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1040] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1041] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1042] = {.lex_state = 10, .external_lex_state = 3}, + [1043] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1044] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1045] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1046] = {.lex_state = 10, .external_lex_state = 3}, + [1047] = {.lex_state = 10, .external_lex_state = 3}, + [1048] = {.lex_state = 10, .external_lex_state = 3}, + [1049] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1050] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 14}, + [1051] = {.lex_state = 10, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1052] = {.lex_state = 10, .external_lex_state = 3}, + [1053] = {.lex_state = 10, .external_lex_state = 3}, + [1054] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1055] = {.lex_state = 10, .external_lex_state = 4, .reserved_word_set_id = 15}, + [1056] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1057] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1058] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1059] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1060] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1061] = {.lex_state = 10, .external_lex_state = 3}, + [1062] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 14}, + [1063] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1064] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 14}, + [1065] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1066] = {.lex_state = 10, .external_lex_state = 4, .reserved_word_set_id = 15}, + [1067] = {.lex_state = 20, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1068] = {.lex_state = 10, .external_lex_state = 4, .reserved_word_set_id = 1}, + [1069] = {.lex_state = 20, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1070] = {.lex_state = 10, .external_lex_state = 3}, + [1071] = {.lex_state = 10, .external_lex_state = 3}, + [1072] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 14}, + [1073] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1074] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1075] = {.lex_state = 9, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1076] = {.lex_state = 10, .external_lex_state = 3}, + [1077] = {.lex_state = 20, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1078] = {.lex_state = 20, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1079] = {.lex_state = 10, .external_lex_state = 3}, + [1080] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1081] = {.lex_state = 10, .external_lex_state = 3}, + [1082] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1083] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 14}, + [1084] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1085] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1086] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1087] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1088] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1089] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1090] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1091] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1092] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1093] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1094] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1095] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1096] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1097] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1098] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1099] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1100] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1101] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1102] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1103] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1104] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1105] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1106] = {.lex_state = 10, .external_lex_state = 3}, + [1107] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1108] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1109] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1110] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1111] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1112] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1113] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1114] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1115] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1116] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1117] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1118] = {.lex_state = 10, .external_lex_state = 3}, + [1119] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1120] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1121] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1122] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1123] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1124] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1125] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1126] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1127] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1128] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1129] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1130] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1131] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1132] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1133] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1134] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1135] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1136] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1137] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1138] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1139] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1140] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1141] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1142] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1143] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1144] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1145] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1146] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1147] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1148] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1149] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1150] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1151] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1152] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1153] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1154] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1155] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1156] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1157] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1158] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1159] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1160] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1161] = {.lex_state = 19, .external_lex_state = 4}, + [1162] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1163] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1164] = {.lex_state = 10, .external_lex_state = 3}, + [1165] = {.lex_state = 10, .external_lex_state = 3}, + [1166] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1167] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1168] = {.lex_state = 19, .external_lex_state = 4}, + [1169] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1170] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1171] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1172] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1173] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1174] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1175] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1176] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1177] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1178] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1179] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1180] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1181] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1182] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1183] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1184] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1185] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1186] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1187] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1188] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1189] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1190] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1191] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1192] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1193] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1194] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1195] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1196] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1197] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1198] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1199] = {.lex_state = 10, .external_lex_state = 3}, + [1200] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1201] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1202] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1203] = {.lex_state = 10, .external_lex_state = 3}, + [1204] = {.lex_state = 10, .external_lex_state = 3}, + [1205] = {.lex_state = 10, .external_lex_state = 3}, + [1206] = {.lex_state = 10, .external_lex_state = 3}, + [1207] = {.lex_state = 10, .external_lex_state = 3}, + [1208] = {.lex_state = 19, .external_lex_state = 4}, + [1209] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1210] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1211] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1212] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1213] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1214] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1215] = {.lex_state = 10, .external_lex_state = 3}, + [1216] = {.lex_state = 10, .external_lex_state = 3}, + [1217] = {.lex_state = 10, .external_lex_state = 3}, + [1218] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1219] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1220] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1221] = {.lex_state = 10, .external_lex_state = 3}, + [1222] = {.lex_state = 10, .external_lex_state = 3}, + [1223] = {.lex_state = 19, .external_lex_state = 4}, + [1224] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1225] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1226] = {.lex_state = 19, .external_lex_state = 4}, + [1227] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1228] = {.lex_state = 10, .external_lex_state = 3}, + [1229] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1230] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1231] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1232] = {.lex_state = 16, .external_lex_state = 3}, + [1233] = {.lex_state = 19, .external_lex_state = 4}, + [1234] = {.lex_state = 19, .external_lex_state = 4}, + [1235] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1236] = {.lex_state = 19, .external_lex_state = 4}, + [1237] = {.lex_state = 19, .external_lex_state = 4}, + [1238] = {.lex_state = 19, .external_lex_state = 4}, + [1239] = {.lex_state = 10, .external_lex_state = 3}, + [1240] = {.lex_state = 10, .external_lex_state = 3}, + [1241] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1242] = {.lex_state = 19, .external_lex_state = 4}, + [1243] = {.lex_state = 19, .external_lex_state = 4}, + [1244] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1245] = {.lex_state = 19, .external_lex_state = 4}, + [1246] = {.lex_state = 19, .external_lex_state = 4}, + [1247] = {.lex_state = 19, .external_lex_state = 4}, + [1248] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1249] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1250] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1251] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1252] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1253] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1254] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1255] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1256] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1257] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1258] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1259] = {.lex_state = 19, .external_lex_state = 4}, + [1260] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1261] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1262] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1263] = {.lex_state = 19, .external_lex_state = 4}, + [1264] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1265] = {.lex_state = 10, .external_lex_state = 3}, + [1266] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1267] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1268] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1269] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1270] = {.lex_state = 10, .external_lex_state = 3}, + [1271] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1272] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1273] = {.lex_state = 19, .external_lex_state = 4}, + [1274] = {.lex_state = 16, .external_lex_state = 3}, + [1275] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1276] = {.lex_state = 19, .external_lex_state = 4}, + [1277] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1278] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1279] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1280] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1281] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1282] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1283] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1284] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1285] = {.lex_state = 19, .external_lex_state = 4}, + [1286] = {.lex_state = 10, .external_lex_state = 3}, + [1287] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1288] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1289] = {.lex_state = 10, .external_lex_state = 3}, + [1290] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1291] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1292] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1293] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1294] = {.lex_state = 19, .external_lex_state = 4}, + [1295] = {.lex_state = 10, .external_lex_state = 3}, + [1296] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1297] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1298] = {.lex_state = 19, .external_lex_state = 4}, + [1299] = {.lex_state = 16, .external_lex_state = 3}, + [1300] = {.lex_state = 19, .external_lex_state = 4}, + [1301] = {.lex_state = 10, .external_lex_state = 3}, + [1302] = {.lex_state = 19, .external_lex_state = 4}, + [1303] = {.lex_state = 10, .external_lex_state = 3}, + [1304] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1305] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1306] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1307] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1308] = {.lex_state = 19, .external_lex_state = 4}, + [1309] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1310] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1311] = {.lex_state = 10, .external_lex_state = 3}, + [1312] = {.lex_state = 10, .external_lex_state = 3}, + [1313] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1314] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1315] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1316] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1317] = {.lex_state = 19, .external_lex_state = 4}, + [1318] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1319] = {.lex_state = 10, .external_lex_state = 3}, + [1320] = {.lex_state = 19, .external_lex_state = 4}, + [1321] = {.lex_state = 10, .external_lex_state = 3}, + [1322] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1323] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1324] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1325] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1326] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1327] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1328] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1329] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1330] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1331] = {.lex_state = 10, .external_lex_state = 3}, + [1332] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1333] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1334] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1335] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1336] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1337] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1338] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1339] = {.lex_state = 10, .external_lex_state = 3}, + [1340] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1341] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1342] = {.lex_state = 16, .external_lex_state = 3}, + [1343] = {.lex_state = 16, .external_lex_state = 3}, + [1344] = {.lex_state = 16, .external_lex_state = 3}, + [1345] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1346] = {.lex_state = 19, .external_lex_state = 4}, + [1347] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1348] = {.lex_state = 19, .external_lex_state = 4}, + [1349] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1350] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1351] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1352] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1353] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1354] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1355] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1356] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1357] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1358] = {.lex_state = 19, .external_lex_state = 4}, + [1359] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1360] = {.lex_state = 10, .external_lex_state = 3}, + [1361] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1362] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1363] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1364] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1365] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1366] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1367] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1368] = {.lex_state = 19, .external_lex_state = 4}, + [1369] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1370] = {.lex_state = 16, .external_lex_state = 3}, + [1371] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1372] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1373] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1374] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1375] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1376] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1377] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1378] = {.lex_state = 10, .external_lex_state = 3}, + [1379] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1380] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1381] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1382] = {.lex_state = 19, .external_lex_state = 4}, + [1383] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1384] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1385] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1386] = {.lex_state = 19, .external_lex_state = 4}, + [1387] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1388] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1389] = {.lex_state = 19, .external_lex_state = 4}, + [1390] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1391] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1392] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1393] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1394] = {.lex_state = 19, .external_lex_state = 4}, + [1395] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1396] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1397] = {.lex_state = 19, .external_lex_state = 4}, + [1398] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1399] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1400] = {.lex_state = 19, .external_lex_state = 4}, + [1401] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1402] = {.lex_state = 19, .external_lex_state = 4}, + [1403] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1404] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1405] = {.lex_state = 19, .external_lex_state = 4}, + [1406] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1407] = {.lex_state = 10, .external_lex_state = 3}, + [1408] = {.lex_state = 10, .external_lex_state = 4}, + [1409] = {.lex_state = 10, .external_lex_state = 4}, + [1410] = {.lex_state = 10, .external_lex_state = 4, .reserved_word_set_id = 16}, + [1411] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1412] = {.lex_state = 10, .external_lex_state = 4, .reserved_word_set_id = 16}, + [1413] = {.lex_state = 10, .external_lex_state = 4}, + [1414] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1415] = {.lex_state = 10, .external_lex_state = 3}, + [1416] = {.lex_state = 10, .external_lex_state = 3}, + [1417] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1418] = {.lex_state = 10, .external_lex_state = 4}, + [1419] = {.lex_state = 15, .external_lex_state = 3}, + [1420] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [1421] = {.lex_state = 10, .external_lex_state = 4}, + [1422] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [1423] = {.lex_state = 19, .external_lex_state = 4}, + [1424] = {.lex_state = 10, .external_lex_state = 3}, + [1425] = {.lex_state = 10, .external_lex_state = 4}, + [1426] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1427] = {.lex_state = 10, .external_lex_state = 4}, + [1428] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1429] = {.lex_state = 9, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1430] = {.lex_state = 9, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1431] = {.lex_state = 10, .external_lex_state = 4}, + [1432] = {.lex_state = 9, .external_lex_state = 3}, + [1433] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1434] = {.lex_state = 10, .external_lex_state = 3}, + [1435] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [1436] = {.lex_state = 10, .external_lex_state = 3}, + [1437] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1438] = {.lex_state = 10, .external_lex_state = 3}, + [1439] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1440] = {.lex_state = 10, .external_lex_state = 4}, + [1441] = {.lex_state = 10, .external_lex_state = 4}, + [1442] = {.lex_state = 10, .external_lex_state = 4}, + [1443] = {.lex_state = 10, .external_lex_state = 4}, + [1444] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1445] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1446] = {.lex_state = 10, .external_lex_state = 4}, + [1447] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1448] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1449] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1450] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1451] = {.lex_state = 10, .external_lex_state = 4}, + [1452] = {.lex_state = 10, .external_lex_state = 4}, + [1453] = {.lex_state = 10, .external_lex_state = 3}, + [1454] = {.lex_state = 10, .external_lex_state = 4}, + [1455] = {.lex_state = 10, .external_lex_state = 4}, + [1456] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1457] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1458] = {.lex_state = 9, .external_lex_state = 3}, + [1459] = {.lex_state = 10, .external_lex_state = 4}, + [1460] = {.lex_state = 10, .external_lex_state = 4}, + [1461] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1462] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1463] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1464] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1465] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1466] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 2}, + [1467] = {.lex_state = 10, .external_lex_state = 3}, + [1468] = {.lex_state = 10, .external_lex_state = 4}, + [1469] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1470] = {.lex_state = 10, .external_lex_state = 4}, + [1471] = {.lex_state = 9, .external_lex_state = 3}, + [1472] = {.lex_state = 10, .external_lex_state = 4}, + [1473] = {.lex_state = 10, .external_lex_state = 4}, + [1474] = {.lex_state = 10, .external_lex_state = 4}, + [1475] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1476] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1477] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1478] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1479] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1480] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1481] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1482] = {.lex_state = 9, .external_lex_state = 3}, + [1483] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1484] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1485] = {.lex_state = 9, .external_lex_state = 3}, + [1486] = {.lex_state = 14, .external_lex_state = 3}, + [1487] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1488] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1489] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1490] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1491] = {.lex_state = 10, .external_lex_state = 4}, + [1492] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1493] = {.lex_state = 10, .external_lex_state = 4}, + [1494] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1495] = {.lex_state = 10, .external_lex_state = 4}, + [1496] = {.lex_state = 10, .external_lex_state = 4}, + [1497] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1498] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1499] = {.lex_state = 9, .external_lex_state = 3}, + [1500] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1501] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1502] = {.lex_state = 9, .external_lex_state = 3}, + [1503] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1504] = {.lex_state = 10, .external_lex_state = 4}, + [1505] = {.lex_state = 10, .external_lex_state = 4}, + [1506] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1507] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1508] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1509] = {.lex_state = 10, .external_lex_state = 4}, + [1510] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1511] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1512] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1513] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1514] = {.lex_state = 10, .external_lex_state = 4}, + [1515] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1516] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1517] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1518] = {.lex_state = 10, .external_lex_state = 4}, + [1519] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1520] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1521] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1522] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1523] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1524] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1525] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1526] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1527] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1528] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1529] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1530] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1531] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1532] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1533] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1534] = {.lex_state = 9, .external_lex_state = 3}, + [1535] = {.lex_state = 9, .external_lex_state = 3}, + [1536] = {.lex_state = 9, .external_lex_state = 3}, + [1537] = {.lex_state = 9, .external_lex_state = 3}, + [1538] = {.lex_state = 10, .external_lex_state = 4}, + [1539] = {.lex_state = 9, .external_lex_state = 3}, + [1540] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1541] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1542] = {.lex_state = 10, .external_lex_state = 4}, + [1543] = {.lex_state = 9, .external_lex_state = 3}, + [1544] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1545] = {.lex_state = 10, .external_lex_state = 3}, + [1546] = {.lex_state = 10, .external_lex_state = 4}, + [1547] = {.lex_state = 10, .external_lex_state = 4}, + [1548] = {.lex_state = 10, .external_lex_state = 4}, + [1549] = {.lex_state = 10, .external_lex_state = 4}, + [1550] = {.lex_state = 10, .external_lex_state = 4}, + [1551] = {.lex_state = 10, .external_lex_state = 4}, + [1552] = {.lex_state = 10, .external_lex_state = 4}, + [1553] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1554] = {.lex_state = 10, .external_lex_state = 4}, + [1555] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1556] = {.lex_state = 10, .external_lex_state = 4}, + [1557] = {.lex_state = 16, .external_lex_state = 3}, + [1558] = {.lex_state = 9, .external_lex_state = 3}, + [1559] = {.lex_state = 9, .external_lex_state = 3}, + [1560] = {.lex_state = 9, .external_lex_state = 3}, + [1561] = {.lex_state = 9, .external_lex_state = 3}, + [1562] = {.lex_state = 10, .external_lex_state = 4}, + [1563] = {.lex_state = 10, .external_lex_state = 4}, + [1564] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1565] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1566] = {.lex_state = 9, .external_lex_state = 3}, + [1567] = {.lex_state = 9, .external_lex_state = 3}, + [1568] = {.lex_state = 9, .external_lex_state = 3}, + [1569] = {.lex_state = 9, .external_lex_state = 3}, + [1570] = {.lex_state = 9, .external_lex_state = 3}, + [1571] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1572] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1573] = {.lex_state = 9, .external_lex_state = 3}, + [1574] = {.lex_state = 9, .external_lex_state = 3}, + [1575] = {.lex_state = 9, .external_lex_state = 3}, + [1576] = {.lex_state = 9, .external_lex_state = 3}, + [1577] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1578] = {.lex_state = 10, .external_lex_state = 4}, + [1579] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1580] = {.lex_state = 9, .external_lex_state = 3}, + [1581] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1582] = {.lex_state = 10, .external_lex_state = 4}, + [1583] = {.lex_state = 9, .external_lex_state = 3}, + [1584] = {.lex_state = 9, .external_lex_state = 3}, + [1585] = {.lex_state = 9, .external_lex_state = 3}, + [1586] = {.lex_state = 9, .external_lex_state = 3}, + [1587] = {.lex_state = 9, .external_lex_state = 3}, + [1588] = {.lex_state = 9, .external_lex_state = 3}, + [1589] = {.lex_state = 9, .external_lex_state = 3}, + [1590] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1591] = {.lex_state = 9, .external_lex_state = 3}, + [1592] = {.lex_state = 9, .external_lex_state = 3}, + [1593] = {.lex_state = 9, .external_lex_state = 3}, + [1594] = {.lex_state = 10, .external_lex_state = 4}, + [1595] = {.lex_state = 9, .external_lex_state = 3}, + [1596] = {.lex_state = 9, .external_lex_state = 3}, + [1597] = {.lex_state = 9, .external_lex_state = 3}, + [1598] = {.lex_state = 9, .external_lex_state = 3}, + [1599] = {.lex_state = 9, .external_lex_state = 3}, + [1600] = {.lex_state = 9, .external_lex_state = 3}, + [1601] = {.lex_state = 9, .external_lex_state = 3}, + [1602] = {.lex_state = 9, .external_lex_state = 3}, + [1603] = {.lex_state = 10, .external_lex_state = 4}, + [1604] = {.lex_state = 9, .external_lex_state = 3}, + [1605] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1606] = {.lex_state = 10, .external_lex_state = 4}, + [1607] = {.lex_state = 10, .external_lex_state = 4}, + [1608] = {.lex_state = 17, .external_lex_state = 4}, + [1609] = {.lex_state = 9, .external_lex_state = 3}, + [1610] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1611] = {.lex_state = 9, .external_lex_state = 3}, + [1612] = {.lex_state = 9, .external_lex_state = 3}, + [1613] = {.lex_state = 10, .external_lex_state = 4}, + [1614] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1615] = {.lex_state = 9, .external_lex_state = 3}, + [1616] = {.lex_state = 10, .external_lex_state = 3}, + [1617] = {.lex_state = 9, .external_lex_state = 3}, + [1618] = {.lex_state = 9, .external_lex_state = 3}, + [1619] = {.lex_state = 10, .external_lex_state = 4, .reserved_word_set_id = 16}, + [1620] = {.lex_state = 9, .external_lex_state = 3}, + [1621] = {.lex_state = 10, .external_lex_state = 4}, + [1622] = {.lex_state = 9, .external_lex_state = 3}, + [1623] = {.lex_state = 9, .external_lex_state = 3}, + [1624] = {.lex_state = 9, .external_lex_state = 3}, + [1625] = {.lex_state = 9, .external_lex_state = 3}, + [1626] = {.lex_state = 9, .external_lex_state = 3}, + [1627] = {.lex_state = 9, .external_lex_state = 3}, + [1628] = {.lex_state = 10, .external_lex_state = 3}, + [1629] = {.lex_state = 10, .external_lex_state = 3}, + [1630] = {.lex_state = 9, .external_lex_state = 3}, + [1631] = {.lex_state = 9, .external_lex_state = 3}, + [1632] = {.lex_state = 9, .external_lex_state = 3}, + [1633] = {.lex_state = 9, .external_lex_state = 3}, + [1634] = {.lex_state = 9, .external_lex_state = 3}, + [1635] = {.lex_state = 10, .external_lex_state = 3}, + [1636] = {.lex_state = 9, .external_lex_state = 3}, + [1637] = {.lex_state = 9, .external_lex_state = 3}, + [1638] = {.lex_state = 9, .external_lex_state = 3}, + [1639] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 3}, + [1640] = {.lex_state = 9, .external_lex_state = 3}, + [1641] = {.lex_state = 10, .external_lex_state = 4}, + [1642] = {.lex_state = 9, .external_lex_state = 3}, + [1643] = {.lex_state = 9, .external_lex_state = 3}, + [1644] = {.lex_state = 9, .external_lex_state = 3}, + [1645] = {.lex_state = 9, .external_lex_state = 3}, + [1646] = {.lex_state = 9, .external_lex_state = 3}, + [1647] = {.lex_state = 9, .external_lex_state = 3}, + [1648] = {.lex_state = 9, .external_lex_state = 3}, + [1649] = {.lex_state = 10, .external_lex_state = 4}, + [1650] = {.lex_state = 9, .external_lex_state = 3}, + [1651] = {.lex_state = 10, .external_lex_state = 3}, + [1652] = {.lex_state = 10, .external_lex_state = 4}, + [1653] = {.lex_state = 10, .external_lex_state = 4}, + [1654] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1655] = {.lex_state = 10, .external_lex_state = 4}, + [1656] = {.lex_state = 9, .external_lex_state = 3}, + [1657] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1658] = {.lex_state = 9, .external_lex_state = 3}, + [1659] = {.lex_state = 9, .external_lex_state = 3}, + [1660] = {.lex_state = 9, .external_lex_state = 3}, + [1661] = {.lex_state = 10, .external_lex_state = 3}, + [1662] = {.lex_state = 9, .external_lex_state = 3}, + [1663] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1664] = {.lex_state = 9, .external_lex_state = 4}, + [1665] = {.lex_state = 9, .external_lex_state = 3}, + [1666] = {.lex_state = 9, .external_lex_state = 3}, + [1667] = {.lex_state = 9, .external_lex_state = 3}, + [1668] = {.lex_state = 9, .external_lex_state = 3}, + [1669] = {.lex_state = 9, .external_lex_state = 3}, + [1670] = {.lex_state = 9, .external_lex_state = 3}, + [1671] = {.lex_state = 9, .external_lex_state = 3}, + [1672] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1673] = {.lex_state = 9, .external_lex_state = 3}, + [1674] = {.lex_state = 9, .external_lex_state = 3}, + [1675] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1676] = {.lex_state = 9, .external_lex_state = 3}, + [1677] = {.lex_state = 9, .external_lex_state = 3}, + [1678] = {.lex_state = 9, .external_lex_state = 3}, + [1679] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1680] = {.lex_state = 10, .external_lex_state = 4}, + [1681] = {.lex_state = 10, .external_lex_state = 4}, + [1682] = {.lex_state = 10, .external_lex_state = 4}, + [1683] = {.lex_state = 10, .external_lex_state = 4}, + [1684] = {.lex_state = 10, .external_lex_state = 4}, + [1685] = {.lex_state = 9, .external_lex_state = 3}, + [1686] = {.lex_state = 17, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1687] = {.lex_state = 10, .external_lex_state = 4}, + [1688] = {.lex_state = 10, .external_lex_state = 4}, + [1689] = {.lex_state = 10, .external_lex_state = 4}, + [1690] = {.lex_state = 10, .external_lex_state = 4}, + [1691] = {.lex_state = 10, .external_lex_state = 4}, + [1692] = {.lex_state = 10, .external_lex_state = 4}, + [1693] = {.lex_state = 9, .external_lex_state = 3}, + [1694] = {.lex_state = 10, .external_lex_state = 4}, + [1695] = {.lex_state = 10, .external_lex_state = 4}, + [1696] = {.lex_state = 10, .external_lex_state = 4}, + [1697] = {.lex_state = 10, .external_lex_state = 4}, + [1698] = {.lex_state = 10, .external_lex_state = 4}, + [1699] = {.lex_state = 10, .external_lex_state = 4}, + [1700] = {.lex_state = 10, .external_lex_state = 4}, + [1701] = {.lex_state = 10, .external_lex_state = 4}, + [1702] = {.lex_state = 10, .external_lex_state = 4}, + [1703] = {.lex_state = 10, .external_lex_state = 3}, + [1704] = {.lex_state = 10, .external_lex_state = 4}, + [1705] = {.lex_state = 9, .external_lex_state = 3}, + [1706] = {.lex_state = 10, .external_lex_state = 4}, + [1707] = {.lex_state = 10, .external_lex_state = 3}, + [1708] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1709] = {.lex_state = 10, .external_lex_state = 4}, + [1710] = {.lex_state = 10, .external_lex_state = 4}, + [1711] = {.lex_state = 10, .external_lex_state = 4}, + [1712] = {.lex_state = 9, .external_lex_state = 3}, + [1713] = {.lex_state = 10, .external_lex_state = 4}, + [1714] = {.lex_state = 10, .external_lex_state = 4}, + [1715] = {.lex_state = 10, .external_lex_state = 4}, + [1716] = {.lex_state = 10, .external_lex_state = 4}, + [1717] = {.lex_state = 10, .external_lex_state = 4}, + [1718] = {.lex_state = 10, .external_lex_state = 4}, + [1719] = {.lex_state = 10, .external_lex_state = 4}, + [1720] = {.lex_state = 10, .external_lex_state = 4}, + [1721] = {.lex_state = 10, .external_lex_state = 4}, + [1722] = {.lex_state = 10, .external_lex_state = 4}, + [1723] = {.lex_state = 10, .external_lex_state = 4}, + [1724] = {.lex_state = 10, .external_lex_state = 4}, + [1725] = {.lex_state = 10, .external_lex_state = 4}, + [1726] = {.lex_state = 10, .external_lex_state = 4}, + [1727] = {.lex_state = 10, .external_lex_state = 4}, + [1728] = {.lex_state = 10, .external_lex_state = 4}, + [1729] = {.lex_state = 10, .external_lex_state = 4}, + [1730] = {.lex_state = 10, .external_lex_state = 4}, + [1731] = {.lex_state = 10, .external_lex_state = 4}, + [1732] = {.lex_state = 9, .external_lex_state = 4}, + [1733] = {.lex_state = 10, .external_lex_state = 4}, + [1734] = {.lex_state = 10, .external_lex_state = 4}, + [1735] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1736] = {.lex_state = 10, .external_lex_state = 4}, + [1737] = {.lex_state = 10, .external_lex_state = 4}, + [1738] = {.lex_state = 10, .external_lex_state = 4}, + [1739] = {.lex_state = 10, .external_lex_state = 4}, + [1740] = {.lex_state = 10, .external_lex_state = 4}, + [1741] = {.lex_state = 10, .external_lex_state = 4}, + [1742] = {.lex_state = 10, .external_lex_state = 4}, + [1743] = {.lex_state = 10, .external_lex_state = 4}, + [1744] = {.lex_state = 10, .external_lex_state = 4}, + [1745] = {.lex_state = 10, .external_lex_state = 4}, + [1746] = {.lex_state = 10, .external_lex_state = 4}, + [1747] = {.lex_state = 10, .external_lex_state = 3}, + [1748] = {.lex_state = 10, .external_lex_state = 3}, + [1749] = {.lex_state = 10, .external_lex_state = 4}, + [1750] = {.lex_state = 10, .external_lex_state = 4}, + [1751] = {.lex_state = 14, .external_lex_state = 4}, + [1752] = {.lex_state = 10, .external_lex_state = 4}, + [1753] = {.lex_state = 10, .external_lex_state = 4}, + [1754] = {.lex_state = 10, .external_lex_state = 4}, + [1755] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1756] = {.lex_state = 10, .external_lex_state = 4}, + [1757] = {.lex_state = 10, .external_lex_state = 4}, + [1758] = {.lex_state = 10, .external_lex_state = 4}, + [1759] = {.lex_state = 10, .external_lex_state = 4}, + [1760] = {.lex_state = 10, .external_lex_state = 4}, + [1761] = {.lex_state = 10, .external_lex_state = 4}, + [1762] = {.lex_state = 10, .external_lex_state = 4}, + [1763] = {.lex_state = 10, .external_lex_state = 4}, + [1764] = {.lex_state = 10, .external_lex_state = 4}, + [1765] = {.lex_state = 10, .external_lex_state = 4}, + [1766] = {.lex_state = 10, .external_lex_state = 4}, + [1767] = {.lex_state = 10, .external_lex_state = 4}, + [1768] = {.lex_state = 10, .external_lex_state = 4}, + [1769] = {.lex_state = 9, .external_lex_state = 3}, + [1770] = {.lex_state = 10, .external_lex_state = 3}, + [1771] = {.lex_state = 10, .external_lex_state = 3}, + [1772] = {.lex_state = 10, .external_lex_state = 4}, + [1773] = {.lex_state = 9, .external_lex_state = 3}, + [1774] = {.lex_state = 10, .external_lex_state = 4}, + [1775] = {.lex_state = 10, .external_lex_state = 4}, + [1776] = {.lex_state = 10, .external_lex_state = 4}, + [1777] = {.lex_state = 9, .external_lex_state = 3, .reserved_word_set_id = 13}, + [1778] = {.lex_state = 10, .external_lex_state = 4}, + [1779] = {.lex_state = 10, .external_lex_state = 4}, + [1780] = {.lex_state = 10, .external_lex_state = 4}, + [1781] = {.lex_state = 10, .external_lex_state = 3}, + [1782] = {.lex_state = 10, .external_lex_state = 4}, + [1783] = {.lex_state = 10, .external_lex_state = 4}, + [1784] = {.lex_state = 10, .external_lex_state = 4}, + [1785] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1786] = {.lex_state = 9, .external_lex_state = 3}, + [1787] = {.lex_state = 10, .external_lex_state = 4}, + [1788] = {.lex_state = 9, .external_lex_state = 3}, + [1789] = {.lex_state = 10, .external_lex_state = 4}, + [1790] = {.lex_state = 12, .external_lex_state = 3}, + [1791] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1792] = {.lex_state = 9, .external_lex_state = 3}, + [1793] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1794] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1795] = {.lex_state = 10, .external_lex_state = 3}, + [1796] = {.lex_state = 10, .external_lex_state = 4}, + [1797] = {.lex_state = 10, .external_lex_state = 4}, + [1798] = {.lex_state = 10, .external_lex_state = 4}, + [1799] = {.lex_state = 10, .external_lex_state = 4}, + [1800] = {.lex_state = 10, .external_lex_state = 4}, + [1801] = {.lex_state = 10, .external_lex_state = 4}, + [1802] = {.lex_state = 10, .external_lex_state = 4}, + [1803] = {.lex_state = 10, .external_lex_state = 4}, + [1804] = {.lex_state = 10, .external_lex_state = 4}, + [1805] = {.lex_state = 10, .external_lex_state = 4}, + [1806] = {.lex_state = 10, .external_lex_state = 4}, + [1807] = {.lex_state = 9, .external_lex_state = 3}, + [1808] = {.lex_state = 9, .external_lex_state = 3}, + [1809] = {.lex_state = 10, .external_lex_state = 4}, + [1810] = {.lex_state = 9, .external_lex_state = 3}, + [1811] = {.lex_state = 10, .external_lex_state = 4}, + [1812] = {.lex_state = 10, .external_lex_state = 4}, + [1813] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1814] = {.lex_state = 10, .external_lex_state = 4}, + [1815] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1816] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1817] = {.lex_state = 10, .external_lex_state = 4}, + [1818] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1819] = {.lex_state = 9, .external_lex_state = 3}, + [1820] = {.lex_state = 10, .external_lex_state = 3}, + [1821] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1822] = {.lex_state = 10, .external_lex_state = 3}, + [1823] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1824] = {.lex_state = 9, .external_lex_state = 4}, + [1825] = {.lex_state = 9, .external_lex_state = 3}, + [1826] = {.lex_state = 10, .external_lex_state = 4}, + [1827] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1828] = {.lex_state = 10, .external_lex_state = 4}, + [1829] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1830] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1831] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1832] = {.lex_state = 10, .external_lex_state = 4}, + [1833] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1834] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1835] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1836] = {.lex_state = 10, .external_lex_state = 4}, + [1837] = {.lex_state = 10, .external_lex_state = 4}, + [1838] = {.lex_state = 10, .external_lex_state = 4}, + [1839] = {.lex_state = 10, .external_lex_state = 4}, + [1840] = {.lex_state = 10, .external_lex_state = 4}, + [1841] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1842] = {.lex_state = 10, .external_lex_state = 4}, + [1843] = {.lex_state = 10, .external_lex_state = 4}, + [1844] = {.lex_state = 10, .external_lex_state = 4}, + [1845] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1846] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1847] = {.lex_state = 10, .external_lex_state = 4}, + [1848] = {.lex_state = 10, .external_lex_state = 4}, + [1849] = {.lex_state = 10, .external_lex_state = 4}, + [1850] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1851] = {.lex_state = 9, .external_lex_state = 3}, + [1852] = {.lex_state = 9, .external_lex_state = 3}, + [1853] = {.lex_state = 9, .external_lex_state = 3}, + [1854] = {.lex_state = 10, .external_lex_state = 3}, + [1855] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1856] = {.lex_state = 9, .external_lex_state = 3}, + [1857] = {.lex_state = 10, .external_lex_state = 4}, + [1858] = {.lex_state = 9, .external_lex_state = 3}, + [1859] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1860] = {.lex_state = 9, .external_lex_state = 3}, + [1861] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1862] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1863] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1864] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1865] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1866] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1867] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1868] = {.lex_state = 9, .external_lex_state = 3}, + [1869] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1870] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1871] = {.lex_state = 9, .external_lex_state = 4}, + [1872] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1873] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1874] = {.lex_state = 9, .external_lex_state = 4}, + [1875] = {.lex_state = 9, .external_lex_state = 4}, + [1876] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1877] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1878] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1879] = {.lex_state = 9, .external_lex_state = 3}, + [1880] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1881] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1882] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1883] = {.lex_state = 9, .external_lex_state = 4}, + [1884] = {.lex_state = 9, .external_lex_state = 4}, + [1885] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1886] = {.lex_state = 10, .external_lex_state = 3}, + [1887] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1888] = {.lex_state = 9, .external_lex_state = 3}, + [1889] = {.lex_state = 9, .external_lex_state = 3}, + [1890] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1891] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1892] = {.lex_state = 9, .external_lex_state = 3}, + [1893] = {.lex_state = 10, .external_lex_state = 3}, + [1894] = {.lex_state = 9, .external_lex_state = 3}, + [1895] = {.lex_state = 9, .external_lex_state = 3}, + [1896] = {.lex_state = 9, .external_lex_state = 3}, + [1897] = {.lex_state = 9, .external_lex_state = 3}, + [1898] = {.lex_state = 10, .external_lex_state = 4}, + [1899] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1900] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1901] = {.lex_state = 9, .external_lex_state = 3}, + [1902] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1903] = {.lex_state = 10, .external_lex_state = 4}, + [1904] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1905] = {.lex_state = 9, .external_lex_state = 3}, + [1906] = {.lex_state = 9, .external_lex_state = 3}, + [1907] = {.lex_state = 9, .external_lex_state = 3}, + [1908] = {.lex_state = 9, .external_lex_state = 3}, + [1909] = {.lex_state = 9, .external_lex_state = 3}, + [1910] = {.lex_state = 9, .external_lex_state = 3}, + [1911] = {.lex_state = 9, .external_lex_state = 3}, + [1912] = {.lex_state = 9, .external_lex_state = 3}, + [1913] = {.lex_state = 10, .external_lex_state = 3}, + [1914] = {.lex_state = 10, .external_lex_state = 3}, + [1915] = {.lex_state = 9, .external_lex_state = 3}, + [1916] = {.lex_state = 9, .external_lex_state = 3}, + [1917] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1918] = {.lex_state = 10, .external_lex_state = 4}, + [1919] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1920] = {.lex_state = 9, .external_lex_state = 4}, + [1921] = {.lex_state = 9, .external_lex_state = 3}, + [1922] = {.lex_state = 9, .external_lex_state = 3}, + [1923] = {.lex_state = 9, .external_lex_state = 3}, + [1924] = {.lex_state = 9, .external_lex_state = 3}, + [1925] = {.lex_state = 9, .external_lex_state = 3}, + [1926] = {.lex_state = 9, .external_lex_state = 3}, + [1927] = {.lex_state = 9, .external_lex_state = 3}, + [1928] = {.lex_state = 9, .external_lex_state = 3}, + [1929] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1930] = {.lex_state = 9, .external_lex_state = 3}, + [1931] = {.lex_state = 9, .external_lex_state = 3}, + [1932] = {.lex_state = 10, .external_lex_state = 4}, + [1933] = {.lex_state = 9, .external_lex_state = 3}, + [1934] = {.lex_state = 9, .external_lex_state = 3}, + [1935] = {.lex_state = 10, .external_lex_state = 4}, + [1936] = {.lex_state = 10, .external_lex_state = 4}, + [1937] = {.lex_state = 10, .external_lex_state = 4}, + [1938] = {.lex_state = 10, .external_lex_state = 4}, + [1939] = {.lex_state = 10, .external_lex_state = 4}, + [1940] = {.lex_state = 10, .external_lex_state = 4}, + [1941] = {.lex_state = 10, .external_lex_state = 4}, + [1942] = {.lex_state = 10, .external_lex_state = 4}, + [1943] = {.lex_state = 10, .external_lex_state = 4}, + [1944] = {.lex_state = 10, .external_lex_state = 4}, + [1945] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1946] = {.lex_state = 10, .external_lex_state = 4}, + [1947] = {.lex_state = 10, .external_lex_state = 4}, + [1948] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1949] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1950] = {.lex_state = 9, .external_lex_state = 3}, + [1951] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1952] = {.lex_state = 9, .external_lex_state = 3}, + [1953] = {.lex_state = 9, .external_lex_state = 3}, + [1954] = {.lex_state = 9, .external_lex_state = 3}, + [1955] = {.lex_state = 9, .external_lex_state = 3}, + [1956] = {.lex_state = 9, .external_lex_state = 3}, + [1957] = {.lex_state = 9, .external_lex_state = 3}, + [1958] = {.lex_state = 9, .external_lex_state = 3}, + [1959] = {.lex_state = 9, .external_lex_state = 3}, + [1960] = {.lex_state = 9, .external_lex_state = 3}, + [1961] = {.lex_state = 9, .external_lex_state = 3}, + [1962] = {.lex_state = 9, .external_lex_state = 3}, + [1963] = {.lex_state = 9, .external_lex_state = 3}, + [1964] = {.lex_state = 9, .external_lex_state = 3}, + [1965] = {.lex_state = 9, .external_lex_state = 3}, + [1966] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1967] = {.lex_state = 9, .external_lex_state = 3}, + [1968] = {.lex_state = 9, .external_lex_state = 3}, + [1969] = {.lex_state = 9, .external_lex_state = 3}, + [1970] = {.lex_state = 10, .external_lex_state = 3}, + [1971] = {.lex_state = 9, .external_lex_state = 3}, + [1972] = {.lex_state = 9, .external_lex_state = 3}, + [1973] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1974] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1975] = {.lex_state = 9, .external_lex_state = 3}, + [1976] = {.lex_state = 9, .external_lex_state = 3}, + [1977] = {.lex_state = 9, .external_lex_state = 3}, + [1978] = {.lex_state = 10, .external_lex_state = 3}, + [1979] = {.lex_state = 10, .external_lex_state = 4}, + [1980] = {.lex_state = 10, .external_lex_state = 4}, + [1981] = {.lex_state = 10, .external_lex_state = 4}, + [1982] = {.lex_state = 10, .external_lex_state = 4}, + [1983] = {.lex_state = 10, .external_lex_state = 4}, + [1984] = {.lex_state = 10, .external_lex_state = 4}, + [1985] = {.lex_state = 10, .external_lex_state = 4}, + [1986] = {.lex_state = 10, .external_lex_state = 4}, + [1987] = {.lex_state = 10, .external_lex_state = 4}, + [1988] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1989] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1990] = {.lex_state = 9, .external_lex_state = 3}, + [1991] = {.lex_state = 9, .external_lex_state = 3}, + [1992] = {.lex_state = 9, .external_lex_state = 3}, + [1993] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1994] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1995] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [1996] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1997] = {.lex_state = 10, .external_lex_state = 4}, + [1998] = {.lex_state = 10, .external_lex_state = 4}, + [1999] = {.lex_state = 9, .external_lex_state = 3}, + [2000] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2001] = {.lex_state = 10, .external_lex_state = 4}, + [2002] = {.lex_state = 9, .external_lex_state = 3}, + [2003] = {.lex_state = 9, .external_lex_state = 3}, + [2004] = {.lex_state = 9, .external_lex_state = 3}, + [2005] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [2006] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2007] = {.lex_state = 10, .external_lex_state = 3}, + [2008] = {.lex_state = 10, .external_lex_state = 4}, + [2009] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [2010] = {.lex_state = 9, .external_lex_state = 3}, + [2011] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2012] = {.lex_state = 9, .external_lex_state = 3}, + [2013] = {.lex_state = 9, .external_lex_state = 3}, + [2014] = {.lex_state = 9, .external_lex_state = 4}, + [2015] = {.lex_state = 9, .external_lex_state = 4}, + [2016] = {.lex_state = 10, .external_lex_state = 3}, + [2017] = {.lex_state = 10, .external_lex_state = 3}, + [2018] = {.lex_state = 10, .external_lex_state = 3}, + [2019] = {.lex_state = 10, .external_lex_state = 3}, + [2020] = {.lex_state = 10, .external_lex_state = 3}, + [2021] = {.lex_state = 10, .external_lex_state = 3}, + [2022] = {.lex_state = 10, .external_lex_state = 3}, + [2023] = {.lex_state = 10, .external_lex_state = 3}, + [2024] = {.lex_state = 10, .external_lex_state = 3}, + [2025] = {.lex_state = 10, .external_lex_state = 3}, + [2026] = {.lex_state = 9, .external_lex_state = 3}, + [2027] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [2028] = {.lex_state = 10, .external_lex_state = 3}, + [2029] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2030] = {.lex_state = 9, .external_lex_state = 3}, + [2031] = {.lex_state = 9, .external_lex_state = 4}, + [2032] = {.lex_state = 9, .external_lex_state = 4}, + [2033] = {.lex_state = 9, .external_lex_state = 3}, + [2034] = {.lex_state = 9, .external_lex_state = 3}, + [2035] = {.lex_state = 9, .external_lex_state = 3}, + [2036] = {.lex_state = 9, .external_lex_state = 3}, + [2037] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2038] = {.lex_state = 9, .external_lex_state = 3}, + [2039] = {.lex_state = 9, .external_lex_state = 3}, + [2040] = {.lex_state = 9, .external_lex_state = 3}, + [2041] = {.lex_state = 9, .external_lex_state = 3}, + [2042] = {.lex_state = 9, .external_lex_state = 3}, + [2043] = {.lex_state = 9, .external_lex_state = 3}, + [2044] = {.lex_state = 9, .external_lex_state = 3}, + [2045] = {.lex_state = 9, .external_lex_state = 3}, + [2046] = {.lex_state = 9, .external_lex_state = 3}, + [2047] = {.lex_state = 10, .external_lex_state = 4}, + [2048] = {.lex_state = 10, .external_lex_state = 4}, + [2049] = {.lex_state = 9, .external_lex_state = 3}, + [2050] = {.lex_state = 9, .external_lex_state = 3}, + [2051] = {.lex_state = 9, .external_lex_state = 3}, + [2052] = {.lex_state = 9, .external_lex_state = 3}, + [2053] = {.lex_state = 9, .external_lex_state = 3}, + [2054] = {.lex_state = 9, .external_lex_state = 3}, + [2055] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2056] = {.lex_state = 9, .external_lex_state = 3}, + [2057] = {.lex_state = 9, .external_lex_state = 3}, + [2058] = {.lex_state = 9, .external_lex_state = 3}, + [2059] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2060] = {.lex_state = 9, .external_lex_state = 3}, + [2061] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [2062] = {.lex_state = 9, .external_lex_state = 3}, + [2063] = {.lex_state = 9, .external_lex_state = 3}, + [2064] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2065] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [2066] = {.lex_state = 10, .external_lex_state = 4}, + [2067] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2068] = {.lex_state = 10, .external_lex_state = 3}, + [2069] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [2070] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2071] = {.lex_state = 9, .external_lex_state = 3}, + [2072] = {.lex_state = 9, .external_lex_state = 3}, + [2073] = {.lex_state = 10, .external_lex_state = 4}, + [2074] = {.lex_state = 9, .external_lex_state = 3}, + [2075] = {.lex_state = 9, .external_lex_state = 3}, + [2076] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2077] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2078] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2079] = {.lex_state = 9, .external_lex_state = 3}, + [2080] = {.lex_state = 9, .external_lex_state = 3}, + [2081] = {.lex_state = 9, .external_lex_state = 3}, + [2082] = {.lex_state = 10, .external_lex_state = 3}, + [2083] = {.lex_state = 10, .external_lex_state = 3}, + [2084] = {.lex_state = 10, .external_lex_state = 3}, + [2085] = {.lex_state = 10, .external_lex_state = 3}, + [2086] = {.lex_state = 10, .external_lex_state = 3}, + [2087] = {.lex_state = 10, .external_lex_state = 3}, + [2088] = {.lex_state = 10, .external_lex_state = 3}, + [2089] = {.lex_state = 10, .external_lex_state = 3}, + [2090] = {.lex_state = 10, .external_lex_state = 3}, + [2091] = {.lex_state = 10, .external_lex_state = 3}, + [2092] = {.lex_state = 9, .external_lex_state = 4}, + [2093] = {.lex_state = 10, .external_lex_state = 3}, + [2094] = {.lex_state = 9, .external_lex_state = 3}, + [2095] = {.lex_state = 9, .external_lex_state = 3}, + [2096] = {.lex_state = 9, .external_lex_state = 3}, + [2097] = {.lex_state = 9, .external_lex_state = 3}, + [2098] = {.lex_state = 9, .external_lex_state = 3}, + [2099] = {.lex_state = 9, .external_lex_state = 3}, + [2100] = {.lex_state = 9, .external_lex_state = 4}, + [2101] = {.lex_state = 10, .external_lex_state = 3}, + [2102] = {.lex_state = 10, .external_lex_state = 3}, + [2103] = {.lex_state = 9, .external_lex_state = 3}, + [2104] = {.lex_state = 10, .external_lex_state = 3}, + [2105] = {.lex_state = 9, .external_lex_state = 4}, + [2106] = {.lex_state = 9, .external_lex_state = 4}, + [2107] = {.lex_state = 10, .external_lex_state = 3}, + [2108] = {.lex_state = 10, .external_lex_state = 3}, + [2109] = {.lex_state = 9, .external_lex_state = 4}, + [2110] = {.lex_state = 9, .external_lex_state = 4}, + [2111] = {.lex_state = 9, .external_lex_state = 4}, + [2112] = {.lex_state = 10, .external_lex_state = 3}, + [2113] = {.lex_state = 10, .external_lex_state = 3}, + [2114] = {.lex_state = 10, .external_lex_state = 3}, + [2115] = {.lex_state = 9, .external_lex_state = 4}, + [2116] = {.lex_state = 10, .external_lex_state = 3}, + [2117] = {.lex_state = 9, .external_lex_state = 4}, + [2118] = {.lex_state = 9, .external_lex_state = 3}, + [2119] = {.lex_state = 9, .external_lex_state = 3}, + [2120] = {.lex_state = 17, .external_lex_state = 3}, + [2121] = {.lex_state = 10, .external_lex_state = 3}, + [2122] = {.lex_state = 10, .external_lex_state = 3}, + [2123] = {.lex_state = 9, .external_lex_state = 3}, + [2124] = {.lex_state = 10, .external_lex_state = 3}, + [2125] = {.lex_state = 10, .external_lex_state = 3}, + [2126] = {.lex_state = 10, .external_lex_state = 3}, + [2127] = {.lex_state = 10, .external_lex_state = 3}, + [2128] = {.lex_state = 9, .external_lex_state = 3}, + [2129] = {.lex_state = 9, .external_lex_state = 3}, + [2130] = {.lex_state = 10, .external_lex_state = 3}, + [2131] = {.lex_state = 10, .external_lex_state = 3}, + [2132] = {.lex_state = 10, .external_lex_state = 3}, + [2133] = {.lex_state = 10, .external_lex_state = 3}, + [2134] = {.lex_state = 10, .external_lex_state = 3}, + [2135] = {.lex_state = 10, .external_lex_state = 3}, + [2136] = {.lex_state = 10, .external_lex_state = 3}, + [2137] = {.lex_state = 10, .external_lex_state = 3}, + [2138] = {.lex_state = 10, .external_lex_state = 3}, + [2139] = {.lex_state = 10, .external_lex_state = 3}, + [2140] = {.lex_state = 10, .external_lex_state = 3}, + [2141] = {.lex_state = 10, .external_lex_state = 3}, + [2142] = {.lex_state = 10, .external_lex_state = 3}, + [2143] = {.lex_state = 10, .external_lex_state = 3}, + [2144] = {.lex_state = 10, .external_lex_state = 3}, + [2145] = {.lex_state = 10, .external_lex_state = 3}, + [2146] = {.lex_state = 9, .external_lex_state = 3}, + [2147] = {.lex_state = 9, .external_lex_state = 3}, + [2148] = {.lex_state = 10, .external_lex_state = 3}, + [2149] = {.lex_state = 17, .external_lex_state = 3}, + [2150] = {.lex_state = 10, .external_lex_state = 3}, + [2151] = {.lex_state = 9, .external_lex_state = 3}, + [2152] = {.lex_state = 10, .external_lex_state = 3}, + [2153] = {.lex_state = 10, .external_lex_state = 3}, + [2154] = {.lex_state = 10, .external_lex_state = 3}, + [2155] = {.lex_state = 10, .external_lex_state = 3}, + [2156] = {.lex_state = 10, .external_lex_state = 3}, + [2157] = {.lex_state = 10, .external_lex_state = 3}, + [2158] = {.lex_state = 9, .external_lex_state = 3}, + [2159] = {.lex_state = 9, .external_lex_state = 3}, + [2160] = {.lex_state = 10, .external_lex_state = 3}, + [2161] = {.lex_state = 10, .external_lex_state = 3}, + [2162] = {.lex_state = 10, .external_lex_state = 3}, + [2163] = {.lex_state = 9, .external_lex_state = 3}, + [2164] = {.lex_state = 10, .external_lex_state = 3}, + [2165] = {.lex_state = 10, .external_lex_state = 3}, + [2166] = {.lex_state = 10, .external_lex_state = 3}, + [2167] = {.lex_state = 10, .external_lex_state = 3}, + [2168] = {.lex_state = 9, .external_lex_state = 3}, + [2169] = {.lex_state = 10, .external_lex_state = 3}, + [2170] = {.lex_state = 10, .external_lex_state = 3}, + [2171] = {.lex_state = 10, .external_lex_state = 3}, + [2172] = {.lex_state = 10, .external_lex_state = 3}, + [2173] = {.lex_state = 10, .external_lex_state = 3}, + [2174] = {.lex_state = 10, .external_lex_state = 3}, + [2175] = {.lex_state = 10, .external_lex_state = 3}, + [2176] = {.lex_state = 10, .external_lex_state = 3}, + [2177] = {.lex_state = 10, .external_lex_state = 3}, + [2178] = {.lex_state = 10, .external_lex_state = 3}, + [2179] = {.lex_state = 10, .external_lex_state = 3}, + [2180] = {.lex_state = 10, .external_lex_state = 3}, + [2181] = {.lex_state = 10, .external_lex_state = 3}, + [2182] = {.lex_state = 10, .external_lex_state = 3}, + [2183] = {.lex_state = 10, .external_lex_state = 3}, + [2184] = {.lex_state = 10, .external_lex_state = 3}, + [2185] = {.lex_state = 10, .external_lex_state = 3}, + [2186] = {.lex_state = 10, .external_lex_state = 3}, + [2187] = {.lex_state = 10, .external_lex_state = 3}, + [2188] = {.lex_state = 10, .external_lex_state = 3}, + [2189] = {.lex_state = 10, .external_lex_state = 3}, + [2190] = {.lex_state = 10, .external_lex_state = 3}, + [2191] = {.lex_state = 10, .external_lex_state = 3}, + [2192] = {.lex_state = 10, .external_lex_state = 3}, + [2193] = {.lex_state = 10, .external_lex_state = 3}, + [2194] = {.lex_state = 10, .external_lex_state = 3}, + [2195] = {.lex_state = 10, .external_lex_state = 3}, + [2196] = {.lex_state = 10, .external_lex_state = 3}, + [2197] = {.lex_state = 10, .external_lex_state = 3}, + [2198] = {.lex_state = 10, .external_lex_state = 3}, + [2199] = {.lex_state = 10, .external_lex_state = 3}, + [2200] = {.lex_state = 10, .external_lex_state = 3}, + [2201] = {.lex_state = 10, .external_lex_state = 3}, + [2202] = {.lex_state = 9, .external_lex_state = 4}, + [2203] = {.lex_state = 9, .external_lex_state = 4}, + [2204] = {.lex_state = 9, .external_lex_state = 4}, + [2205] = {.lex_state = 10, .external_lex_state = 3}, + [2206] = {.lex_state = 9, .external_lex_state = 4}, + [2207] = {.lex_state = 9, .external_lex_state = 3}, + [2208] = {.lex_state = 9, .external_lex_state = 3}, + [2209] = {.lex_state = 9, .external_lex_state = 4}, + [2210] = {.lex_state = 9, .external_lex_state = 4}, + [2211] = {.lex_state = 9, .external_lex_state = 4}, + [2212] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2213] = {.lex_state = 9, .external_lex_state = 3}, + [2214] = {.lex_state = 9, .external_lex_state = 4}, + [2215] = {.lex_state = 9, .external_lex_state = 4}, + [2216] = {.lex_state = 9, .external_lex_state = 3}, + [2217] = {.lex_state = 9, .external_lex_state = 4}, + [2218] = {.lex_state = 9, .external_lex_state = 3}, + [2219] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2220] = {.lex_state = 9, .external_lex_state = 4}, + [2221] = {.lex_state = 9, .external_lex_state = 4}, + [2222] = {.lex_state = 9, .external_lex_state = 4}, + [2223] = {.lex_state = 9, .external_lex_state = 3}, + [2224] = {.lex_state = 9, .external_lex_state = 4}, + [2225] = {.lex_state = 9, .external_lex_state = 4}, + [2226] = {.lex_state = 9, .external_lex_state = 4}, + [2227] = {.lex_state = 9, .external_lex_state = 4}, + [2228] = {.lex_state = 9, .external_lex_state = 4}, + [2229] = {.lex_state = 9, .external_lex_state = 4}, + [2230] = {.lex_state = 9, .external_lex_state = 4}, + [2231] = {.lex_state = 9, .external_lex_state = 4}, + [2232] = {.lex_state = 9, .external_lex_state = 4}, + [2233] = {.lex_state = 9, .external_lex_state = 4}, + [2234] = {.lex_state = 9, .external_lex_state = 4}, + [2235] = {.lex_state = 9, .external_lex_state = 4}, + [2236] = {.lex_state = 9, .external_lex_state = 4}, + [2237] = {.lex_state = 9, .external_lex_state = 3}, + [2238] = {.lex_state = 9, .external_lex_state = 3}, + [2239] = {.lex_state = 9, .external_lex_state = 4}, + [2240] = {.lex_state = 9, .external_lex_state = 4}, + [2241] = {.lex_state = 9, .external_lex_state = 4}, + [2242] = {.lex_state = 9, .external_lex_state = 3}, + [2243] = {.lex_state = 9, .external_lex_state = 3}, + [2244] = {.lex_state = 9, .external_lex_state = 3}, + [2245] = {.lex_state = 9, .external_lex_state = 4}, + [2246] = {.lex_state = 9, .external_lex_state = 3}, + [2247] = {.lex_state = 9, .external_lex_state = 3}, + [2248] = {.lex_state = 9, .external_lex_state = 3}, + [2249] = {.lex_state = 9, .external_lex_state = 3}, + [2250] = {.lex_state = 9, .external_lex_state = 3}, + [2251] = {.lex_state = 9, .external_lex_state = 3}, + [2252] = {.lex_state = 9, .external_lex_state = 3}, + [2253] = {.lex_state = 9, .external_lex_state = 3}, + [2254] = {.lex_state = 9, .external_lex_state = 4}, + [2255] = {.lex_state = 9, .external_lex_state = 3}, + [2256] = {.lex_state = 9, .external_lex_state = 3}, + [2257] = {.lex_state = 9, .external_lex_state = 4}, + [2258] = {.lex_state = 9, .external_lex_state = 3}, + [2259] = {.lex_state = 9, .external_lex_state = 4}, + [2260] = {.lex_state = 9, .external_lex_state = 3}, + [2261] = {.lex_state = 9, .external_lex_state = 3}, + [2262] = {.lex_state = 9, .external_lex_state = 4}, + [2263] = {.lex_state = 9, .external_lex_state = 3}, + [2264] = {.lex_state = 9, .external_lex_state = 3}, + [2265] = {.lex_state = 9, .external_lex_state = 4}, + [2266] = {.lex_state = 9, .external_lex_state = 3}, + [2267] = {.lex_state = 9, .external_lex_state = 3}, + [2268] = {.lex_state = 9, .external_lex_state = 4}, + [2269] = {.lex_state = 9, .external_lex_state = 4}, + [2270] = {.lex_state = 9, .external_lex_state = 4}, + [2271] = {.lex_state = 9, .external_lex_state = 4}, + [2272] = {.lex_state = 9, .external_lex_state = 4}, + [2273] = {.lex_state = 9, .external_lex_state = 4}, + [2274] = {.lex_state = 9, .external_lex_state = 4}, + [2275] = {.lex_state = 9, .external_lex_state = 4}, + [2276] = {.lex_state = 9, .external_lex_state = 3}, + [2277] = {.lex_state = 9, .external_lex_state = 3}, + [2278] = {.lex_state = 9, .external_lex_state = 3}, + [2279] = {.lex_state = 9, .external_lex_state = 3}, + [2280] = {.lex_state = 9, .external_lex_state = 4}, + [2281] = {.lex_state = 9, .external_lex_state = 4}, + [2282] = {.lex_state = 9, .external_lex_state = 3}, + [2283] = {.lex_state = 9, .external_lex_state = 3}, + [2284] = {.lex_state = 9, .external_lex_state = 4}, + [2285] = {.lex_state = 9, .external_lex_state = 3}, + [2286] = {.lex_state = 9, .external_lex_state = 4}, + [2287] = {.lex_state = 9, .external_lex_state = 3}, + [2288] = {.lex_state = 9, .external_lex_state = 3}, + [2289] = {.lex_state = 9, .external_lex_state = 3}, + [2290] = {.lex_state = 9, .external_lex_state = 3}, + [2291] = {.lex_state = 9, .external_lex_state = 4}, + [2292] = {.lex_state = 9, .external_lex_state = 3}, + [2293] = {.lex_state = 9, .external_lex_state = 4}, + [2294] = {.lex_state = 9, .external_lex_state = 4}, + [2295] = {.lex_state = 9, .external_lex_state = 3}, + [2296] = {.lex_state = 9, .external_lex_state = 3}, + [2297] = {.lex_state = 9, .external_lex_state = 3}, + [2298] = {.lex_state = 9, .external_lex_state = 3}, + [2299] = {.lex_state = 9, .external_lex_state = 3}, + [2300] = {.lex_state = 9, .external_lex_state = 3}, + [2301] = {.lex_state = 9, .external_lex_state = 3}, + [2302] = {.lex_state = 9, .external_lex_state = 3}, + [2303] = {.lex_state = 9, .external_lex_state = 3}, + [2304] = {.lex_state = 9, .external_lex_state = 3}, + [2305] = {.lex_state = 9, .external_lex_state = 3}, + [2306] = {.lex_state = 9, .external_lex_state = 3}, + [2307] = {.lex_state = 9, .external_lex_state = 3}, + [2308] = {.lex_state = 9, .external_lex_state = 3}, + [2309] = {.lex_state = 9, .external_lex_state = 3}, + [2310] = {.lex_state = 9, .external_lex_state = 3}, + [2311] = {.lex_state = 9, .external_lex_state = 3}, + [2312] = {.lex_state = 9, .external_lex_state = 3}, + [2313] = {.lex_state = 9, .external_lex_state = 3}, + [2314] = {.lex_state = 9, .external_lex_state = 3}, + [2315] = {.lex_state = 9, .external_lex_state = 3}, + [2316] = {.lex_state = 9, .external_lex_state = 3}, + [2317] = {.lex_state = 9, .external_lex_state = 3}, + [2318] = {.lex_state = 9, .external_lex_state = 3}, + [2319] = {.lex_state = 9, .external_lex_state = 3}, + [2320] = {.lex_state = 9, .external_lex_state = 3}, + [2321] = {.lex_state = 9, .external_lex_state = 3}, + [2322] = {.lex_state = 9, .external_lex_state = 3}, + [2323] = {.lex_state = 9, .external_lex_state = 3}, + [2324] = {.lex_state = 9, .external_lex_state = 3}, + [2325] = {.lex_state = 9, .external_lex_state = 3}, + [2326] = {.lex_state = 9, .external_lex_state = 3}, + [2327] = {.lex_state = 9, .external_lex_state = 3}, + [2328] = {.lex_state = 9, .external_lex_state = 3}, + [2329] = {.lex_state = 9, .external_lex_state = 3}, + [2330] = {.lex_state = 9, .external_lex_state = 3}, + [2331] = {.lex_state = 9, .external_lex_state = 3}, + [2332] = {.lex_state = 9, .external_lex_state = 3}, + [2333] = {.lex_state = 9, .external_lex_state = 3}, + [2334] = {.lex_state = 9, .external_lex_state = 3}, + [2335] = {.lex_state = 9, .external_lex_state = 3}, + [2336] = {.lex_state = 9, .external_lex_state = 3}, + [2337] = {.lex_state = 9, .external_lex_state = 3}, + [2338] = {.lex_state = 9, .external_lex_state = 3}, + [2339] = {.lex_state = 9, .external_lex_state = 3}, + [2340] = {.lex_state = 9, .external_lex_state = 3}, + [2341] = {.lex_state = 9, .external_lex_state = 3}, + [2342] = {.lex_state = 9, .external_lex_state = 3}, + [2343] = {.lex_state = 9, .external_lex_state = 3}, + [2344] = {.lex_state = 9, .external_lex_state = 3}, + [2345] = {.lex_state = 9, .external_lex_state = 3}, + [2346] = {.lex_state = 9, .external_lex_state = 3}, + [2347] = {.lex_state = 9, .external_lex_state = 3}, + [2348] = {.lex_state = 9, .external_lex_state = 3}, + [2349] = {.lex_state = 9, .external_lex_state = 3}, + [2350] = {.lex_state = 9, .external_lex_state = 3}, + [2351] = {.lex_state = 9, .external_lex_state = 3}, + [2352] = {.lex_state = 9, .external_lex_state = 3}, + [2353] = {.lex_state = 9, .external_lex_state = 3}, + [2354] = {.lex_state = 9, .external_lex_state = 3}, + [2355] = {.lex_state = 9, .external_lex_state = 3}, + [2356] = {.lex_state = 9, .external_lex_state = 3}, + [2357] = {.lex_state = 9, .external_lex_state = 3}, + [2358] = {.lex_state = 9, .external_lex_state = 3}, + [2359] = {.lex_state = 9, .external_lex_state = 3}, + [2360] = {.lex_state = 9, .external_lex_state = 3}, + [2361] = {.lex_state = 9, .external_lex_state = 3}, + [2362] = {.lex_state = 9, .external_lex_state = 3}, + [2363] = {.lex_state = 9, .external_lex_state = 3}, + [2364] = {.lex_state = 9, .external_lex_state = 3}, + [2365] = {.lex_state = 9, .external_lex_state = 3}, + [2366] = {.lex_state = 9, .external_lex_state = 3}, + [2367] = {.lex_state = 9, .external_lex_state = 3}, + [2368] = {.lex_state = 9, .external_lex_state = 3}, + [2369] = {.lex_state = 9, .external_lex_state = 3}, + [2370] = {.lex_state = 9, .external_lex_state = 3}, + [2371] = {.lex_state = 9, .external_lex_state = 3}, + [2372] = {.lex_state = 9, .external_lex_state = 3}, + [2373] = {.lex_state = 9, .external_lex_state = 3}, + [2374] = {.lex_state = 9, .external_lex_state = 3}, + [2375] = {.lex_state = 9, .external_lex_state = 3}, + [2376] = {.lex_state = 9, .external_lex_state = 3}, + [2377] = {.lex_state = 9, .external_lex_state = 3}, + [2378] = {.lex_state = 9, .external_lex_state = 3}, + [2379] = {.lex_state = 9, .external_lex_state = 3}, + [2380] = {.lex_state = 9, .external_lex_state = 3}, + [2381] = {.lex_state = 9, .external_lex_state = 3}, + [2382] = {.lex_state = 9, .external_lex_state = 3}, + [2383] = {.lex_state = 9, .external_lex_state = 3}, + [2384] = {.lex_state = 9, .external_lex_state = 3}, + [2385] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2386] = {.lex_state = 9, .external_lex_state = 3}, + [2387] = {.lex_state = 9, .external_lex_state = 3}, + [2388] = {.lex_state = 9, .external_lex_state = 3}, + [2389] = {.lex_state = 9, .external_lex_state = 3}, + [2390] = {.lex_state = 9, .external_lex_state = 3}, + [2391] = {.lex_state = 9, .external_lex_state = 3}, + [2392] = {.lex_state = 9, .external_lex_state = 3}, + [2393] = {.lex_state = 9, .external_lex_state = 3}, + [2394] = {.lex_state = 9, .external_lex_state = 3}, + [2395] = {.lex_state = 9, .external_lex_state = 3}, + [2396] = {.lex_state = 9, .external_lex_state = 3}, + [2397] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2398] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 6}, + [2399] = {.lex_state = 9, .external_lex_state = 3}, + [2400] = {.lex_state = 9, .external_lex_state = 3}, + [2401] = {.lex_state = 9, .external_lex_state = 3}, + [2402] = {.lex_state = 9, .external_lex_state = 3}, + [2403] = {.lex_state = 9, .external_lex_state = 3}, + [2404] = {.lex_state = 9, .external_lex_state = 3}, + [2405] = {.lex_state = 9, .external_lex_state = 3}, + [2406] = {.lex_state = 9, .external_lex_state = 3}, + [2407] = {.lex_state = 9, .external_lex_state = 3}, + [2408] = {.lex_state = 9, .external_lex_state = 3}, + [2409] = {.lex_state = 9, .external_lex_state = 3}, + [2410] = {.lex_state = 9, .external_lex_state = 3}, + [2411] = {.lex_state = 9, .external_lex_state = 3}, + [2412] = {.lex_state = 9, .external_lex_state = 3}, + [2413] = {.lex_state = 9, .external_lex_state = 3}, + [2414] = {.lex_state = 9, .external_lex_state = 3}, + [2415] = {.lex_state = 9, .external_lex_state = 3}, + [2416] = {.lex_state = 9, .external_lex_state = 3}, + [2417] = {.lex_state = 9, .external_lex_state = 3}, + [2418] = {.lex_state = 9, .external_lex_state = 3}, + [2419] = {.lex_state = 9, .external_lex_state = 3}, + [2420] = {.lex_state = 9, .external_lex_state = 3}, + [2421] = {.lex_state = 9, .external_lex_state = 3}, + [2422] = {.lex_state = 9, .external_lex_state = 3}, + [2423] = {.lex_state = 9, .external_lex_state = 3}, + [2424] = {.lex_state = 9, .external_lex_state = 3}, + [2425] = {.lex_state = 9, .external_lex_state = 3}, + [2426] = {.lex_state = 9, .external_lex_state = 3}, + [2427] = {.lex_state = 9, .external_lex_state = 3}, + [2428] = {.lex_state = 9, .external_lex_state = 3}, + [2429] = {.lex_state = 9, .external_lex_state = 3}, + [2430] = {.lex_state = 9, .external_lex_state = 3}, + [2431] = {.lex_state = 9, .external_lex_state = 3}, + [2432] = {.lex_state = 9, .external_lex_state = 3}, + [2433] = {.lex_state = 9, .external_lex_state = 3}, + [2434] = {.lex_state = 9, .external_lex_state = 3}, + [2435] = {.lex_state = 9, .external_lex_state = 3}, + [2436] = {.lex_state = 9, .external_lex_state = 3}, + [2437] = {.lex_state = 9, .external_lex_state = 3}, + [2438] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2439] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2440] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2441] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2442] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2443] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2444] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2445] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2446] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2447] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2448] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2449] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2450] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2451] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2452] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2453] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2454] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2455] = {.lex_state = 2, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2456] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2457] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2458] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2459] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2460] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2461] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2462] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2463] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2464] = {.lex_state = 89, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2465] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2466] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2467] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2468] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2469] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2470] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2471] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2472] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2473] = {.lex_state = 4, .external_lex_state = 3}, + [2474] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2475] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2476] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2477] = {.lex_state = 4, .external_lex_state = 3}, + [2478] = {.lex_state = 4, .external_lex_state = 3}, + [2479] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2480] = {.lex_state = 4, .external_lex_state = 3}, + [2481] = {.lex_state = 4, .external_lex_state = 3}, + [2482] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2483] = {.lex_state = 4, .external_lex_state = 3}, + [2484] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2485] = {.lex_state = 4, .external_lex_state = 3}, + [2486] = {.lex_state = 4, .external_lex_state = 3}, + [2487] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2488] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2489] = {.lex_state = 4, .external_lex_state = 3}, + [2490] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 17}, + [2491] = {.lex_state = 4, .external_lex_state = 3}, + [2492] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 17}, + [2493] = {.lex_state = 4, .external_lex_state = 3}, + [2494] = {.lex_state = 4, .external_lex_state = 3}, + [2495] = {.lex_state = 4, .external_lex_state = 3}, + [2496] = {.lex_state = 4, .external_lex_state = 3}, + [2497] = {.lex_state = 4, .external_lex_state = 3}, + [2498] = {.lex_state = 4, .external_lex_state = 3}, + [2499] = {.lex_state = 4, .external_lex_state = 3}, + [2500] = {.lex_state = 4, .external_lex_state = 3}, + [2501] = {.lex_state = 4, .external_lex_state = 3}, + [2502] = {.lex_state = 4, .external_lex_state = 3}, + [2503] = {.lex_state = 4, .external_lex_state = 3}, + [2504] = {.lex_state = 4, .external_lex_state = 3}, + [2505] = {.lex_state = 4, .external_lex_state = 3}, + [2506] = {.lex_state = 4, .external_lex_state = 3}, + [2507] = {.lex_state = 4, .external_lex_state = 3}, + [2508] = {.lex_state = 4, .external_lex_state = 3}, + [2509] = {.lex_state = 4, .external_lex_state = 3}, + [2510] = {.lex_state = 4, .external_lex_state = 3}, + [2511] = {.lex_state = 31, .external_lex_state = 4, .reserved_word_set_id = 18}, + [2512] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2513] = {.lex_state = 4, .external_lex_state = 3}, + [2514] = {.lex_state = 20, .external_lex_state = 5, .reserved_word_set_id = 19}, + [2515] = {.lex_state = 20, .external_lex_state = 5, .reserved_word_set_id = 19}, + [2516] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 15}, + [2517] = {.lex_state = 4, .external_lex_state = 3}, + [2518] = {.lex_state = 4, .external_lex_state = 3}, + [2519] = {.lex_state = 20, .external_lex_state = 5, .reserved_word_set_id = 19}, + [2520] = {.lex_state = 20, .external_lex_state = 5, .reserved_word_set_id = 19}, + [2521] = {.lex_state = 20, .external_lex_state = 5, .reserved_word_set_id = 19}, + [2522] = {.lex_state = 20, .external_lex_state = 5, .reserved_word_set_id = 19}, + [2523] = {.lex_state = 4, .external_lex_state = 3}, + [2524] = {.lex_state = 4, .external_lex_state = 3}, + [2525] = {.lex_state = 4, .external_lex_state = 3}, + [2526] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2527] = {.lex_state = 4, .external_lex_state = 3}, + [2528] = {.lex_state = 4, .external_lex_state = 3}, + [2529] = {.lex_state = 4, .external_lex_state = 3}, + [2530] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2531] = {.lex_state = 4, .external_lex_state = 3}, + [2532] = {.lex_state = 31, .external_lex_state = 4, .reserved_word_set_id = 18}, + [2533] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2534] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2535] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2536] = {.lex_state = 4, .external_lex_state = 3}, + [2537] = {.lex_state = 4, .external_lex_state = 3}, + [2538] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2539] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2540] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 12}, + [2541] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2542] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 20}, + [2543] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2544] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2545] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2546] = {.lex_state = 4, .external_lex_state = 3}, + [2547] = {.lex_state = 4, .external_lex_state = 3}, + [2548] = {.lex_state = 4, .external_lex_state = 3}, + [2549] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2550] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2551] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2552] = {.lex_state = 4, .external_lex_state = 4}, + [2553] = {.lex_state = 4, .external_lex_state = 3}, + [2554] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2555] = {.lex_state = 4, .external_lex_state = 3}, + [2556] = {.lex_state = 4, .external_lex_state = 3}, + [2557] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2558] = {.lex_state = 4, .external_lex_state = 3}, + [2559] = {.lex_state = 4, .external_lex_state = 3}, + [2560] = {.lex_state = 4, .external_lex_state = 3}, + [2561] = {.lex_state = 4, .external_lex_state = 3}, + [2562] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2563] = {.lex_state = 4, .external_lex_state = 3}, + [2564] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2565] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 20}, + [2566] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2567] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2568] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2569] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2570] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2571] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2572] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2573] = {.lex_state = 4, .external_lex_state = 3}, + [2574] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2575] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2576] = {.lex_state = 4, .external_lex_state = 3}, + [2577] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2578] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2579] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2580] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2581] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2582] = {.lex_state = 4, .external_lex_state = 3}, + [2583] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2584] = {.lex_state = 4, .external_lex_state = 3}, + [2585] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2586] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2587] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2588] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2589] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2590] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2591] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2592] = {.lex_state = 4, .external_lex_state = 3}, + [2593] = {.lex_state = 4, .external_lex_state = 3}, + [2594] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2595] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2596] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2597] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2598] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2599] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2600] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2601] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2602] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2603] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2604] = {.lex_state = 4, .external_lex_state = 3}, + [2605] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2606] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2607] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2608] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2609] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2610] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2611] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2612] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2613] = {.lex_state = 4, .external_lex_state = 3}, + [2614] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2615] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2616] = {.lex_state = 33, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2617] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2618] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2619] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2620] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2621] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2622] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2623] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2624] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2625] = {.lex_state = 4, .external_lex_state = 4}, + [2626] = {.lex_state = 4, .external_lex_state = 3}, + [2627] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 14}, + [2628] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 14}, + [2629] = {.lex_state = 4, .external_lex_state = 3}, + [2630] = {.lex_state = 4, .external_lex_state = 4}, + [2631] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2632] = {.lex_state = 4, .external_lex_state = 3}, + [2633] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2634] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2635] = {.lex_state = 4, .external_lex_state = 3}, + [2636] = {.lex_state = 4, .external_lex_state = 4}, + [2637] = {.lex_state = 4, .external_lex_state = 3}, + [2638] = {.lex_state = 4, .external_lex_state = 3}, + [2639] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2640] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2641] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2642] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2643] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2644] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2645] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2646] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2647] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2648] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2649] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2650] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2651] = {.lex_state = 4, .external_lex_state = 3}, + [2652] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2653] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2654] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2655] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2656] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2657] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2658] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2659] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2660] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2661] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2662] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2663] = {.lex_state = 4, .external_lex_state = 4}, + [2664] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2665] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2666] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2667] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2668] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2669] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2670] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2671] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2672] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2673] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2674] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2675] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2676] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2677] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2678] = {.lex_state = 4, .external_lex_state = 4}, + [2679] = {.lex_state = 4, .external_lex_state = 4}, + [2680] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2681] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2682] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2683] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2684] = {.lex_state = 4, .external_lex_state = 4}, + [2685] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2686] = {.lex_state = 4, .external_lex_state = 3}, + [2687] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2688] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2689] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2690] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2691] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2692] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2693] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2694] = {.lex_state = 4, .external_lex_state = 4}, + [2695] = {.lex_state = 4, .external_lex_state = 3}, + [2696] = {.lex_state = 4, .external_lex_state = 4}, + [2697] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2698] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2699] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2700] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2701] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2702] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2703] = {.lex_state = 4, .external_lex_state = 3}, + [2704] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2705] = {.lex_state = 4, .external_lex_state = 3}, + [2706] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2707] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2708] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2709] = {.lex_state = 4, .external_lex_state = 4}, + [2710] = {.lex_state = 4, .external_lex_state = 4}, + [2711] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2712] = {.lex_state = 4, .external_lex_state = 4}, + [2713] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2714] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2715] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2716] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2717] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2718] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2719] = {.lex_state = 4, .external_lex_state = 3}, + [2720] = {.lex_state = 4, .external_lex_state = 3}, + [2721] = {.lex_state = 4, .external_lex_state = 3}, + [2722] = {.lex_state = 4, .external_lex_state = 3}, + [2723] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2724] = {.lex_state = 4, .external_lex_state = 3}, + [2725] = {.lex_state = 4, .external_lex_state = 3}, + [2726] = {.lex_state = 4, .external_lex_state = 3}, + [2727] = {.lex_state = 4, .external_lex_state = 4}, + [2728] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2729] = {.lex_state = 4, .external_lex_state = 4}, + [2730] = {.lex_state = 4, .external_lex_state = 3}, + [2731] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2732] = {.lex_state = 4, .external_lex_state = 3}, + [2733] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2734] = {.lex_state = 4, .external_lex_state = 3}, + [2735] = {.lex_state = 4, .external_lex_state = 3}, + [2736] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2737] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2738] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2739] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2740] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2741] = {.lex_state = 4, .external_lex_state = 4}, + [2742] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2743] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2744] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2745] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2746] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2747] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2748] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2749] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2750] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2751] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2752] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2753] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2754] = {.lex_state = 4, .external_lex_state = 4}, + [2755] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 19}, + [2756] = {.lex_state = 4, .external_lex_state = 4}, + [2757] = {.lex_state = 4, .external_lex_state = 3}, + [2758] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 19}, + [2759] = {.lex_state = 4, .external_lex_state = 4}, + [2760] = {.lex_state = 4, .external_lex_state = 4}, + [2761] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 19}, + [2762] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 19}, + [2763] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 19}, + [2764] = {.lex_state = 4, .external_lex_state = 3}, + [2765] = {.lex_state = 4, .external_lex_state = 4}, + [2766] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 19}, + [2767] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 19}, + [2768] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2769] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 19}, + [2770] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 19}, + [2771] = {.lex_state = 89, .external_lex_state = 5}, + [2772] = {.lex_state = 4, .external_lex_state = 4}, + [2773] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2774] = {.lex_state = 4, .external_lex_state = 4}, + [2775] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2776] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2777] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2778] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 19}, + [2779] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 19}, + [2780] = {.lex_state = 89, .external_lex_state = 5}, + [2781] = {.lex_state = 16, .external_lex_state = 3}, + [2782] = {.lex_state = 4, .external_lex_state = 3}, + [2783] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 19}, + [2784] = {.lex_state = 4, .external_lex_state = 3}, + [2785] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2786] = {.lex_state = 4, .external_lex_state = 3}, + [2787] = {.lex_state = 4, .external_lex_state = 3}, + [2788] = {.lex_state = 4, .external_lex_state = 3}, + [2789] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 13}, + [2790] = {.lex_state = 4, .external_lex_state = 3}, + [2791] = {.lex_state = 4, .external_lex_state = 3}, + [2792] = {.lex_state = 10, .external_lex_state = 4}, + [2793] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2794] = {.lex_state = 4, .external_lex_state = 3}, + [2795] = {.lex_state = 10, .external_lex_state = 4}, + [2796] = {.lex_state = 4, .external_lex_state = 3}, + [2797] = {.lex_state = 4, .external_lex_state = 3}, + [2798] = {.lex_state = 4, .external_lex_state = 3}, + [2799] = {.lex_state = 4, .external_lex_state = 3}, + [2800] = {.lex_state = 4, .external_lex_state = 3}, + [2801] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2802] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2803] = {.lex_state = 4, .external_lex_state = 3}, + [2804] = {.lex_state = 4, .external_lex_state = 3}, + [2805] = {.lex_state = 4, .external_lex_state = 3}, + [2806] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2807] = {.lex_state = 4, .external_lex_state = 3}, + [2808] = {.lex_state = 4, .external_lex_state = 3}, + [2809] = {.lex_state = 4, .external_lex_state = 3}, + [2810] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2811] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2812] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2813] = {.lex_state = 4, .external_lex_state = 4}, + [2814] = {.lex_state = 4, .external_lex_state = 3}, + [2815] = {.lex_state = 4, .external_lex_state = 3}, + [2816] = {.lex_state = 4, .external_lex_state = 3}, + [2817] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2818] = {.lex_state = 4, .external_lex_state = 3}, + [2819] = {.lex_state = 4, .external_lex_state = 3}, + [2820] = {.lex_state = 4, .external_lex_state = 3}, + [2821] = {.lex_state = 4, .external_lex_state = 3}, + [2822] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2823] = {.lex_state = 4, .external_lex_state = 3}, + [2824] = {.lex_state = 4, .external_lex_state = 4}, + [2825] = {.lex_state = 4, .external_lex_state = 3}, + [2826] = {.lex_state = 4, .external_lex_state = 3}, + [2827] = {.lex_state = 10, .external_lex_state = 4}, + [2828] = {.lex_state = 4, .external_lex_state = 3}, + [2829] = {.lex_state = 4, .external_lex_state = 3}, + [2830] = {.lex_state = 4, .external_lex_state = 3}, + [2831] = {.lex_state = 4, .external_lex_state = 3}, + [2832] = {.lex_state = 4, .external_lex_state = 3}, + [2833] = {.lex_state = 4, .external_lex_state = 3}, + [2834] = {.lex_state = 4, .external_lex_state = 3}, + [2835] = {.lex_state = 4, .external_lex_state = 3}, + [2836] = {.lex_state = 4, .external_lex_state = 3}, + [2837] = {.lex_state = 4, .external_lex_state = 3}, + [2838] = {.lex_state = 4, .external_lex_state = 3}, + [2839] = {.lex_state = 4, .external_lex_state = 3}, + [2840] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2841] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 13}, + [2842] = {.lex_state = 4, .external_lex_state = 4}, + [2843] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2844] = {.lex_state = 4, .external_lex_state = 3}, + [2845] = {.lex_state = 10, .external_lex_state = 3}, + [2846] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2847] = {.lex_state = 27, .external_lex_state = 6}, + [2848] = {.lex_state = 10, .external_lex_state = 3}, + [2849] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2850] = {.lex_state = 4, .external_lex_state = 4}, + [2851] = {.lex_state = 4, .external_lex_state = 4}, + [2852] = {.lex_state = 4, .external_lex_state = 4}, + [2853] = {.lex_state = 10, .external_lex_state = 3}, + [2854] = {.lex_state = 4, .external_lex_state = 4}, + [2855] = {.lex_state = 10, .external_lex_state = 4}, + [2856] = {.lex_state = 4, .external_lex_state = 4}, + [2857] = {.lex_state = 4, .external_lex_state = 4}, + [2858] = {.lex_state = 9, .external_lex_state = 7, .reserved_word_set_id = 1}, + [2859] = {.lex_state = 16, .external_lex_state = 3}, + [2860] = {.lex_state = 10, .external_lex_state = 4}, + [2861] = {.lex_state = 4, .external_lex_state = 4}, + [2862] = {.lex_state = 4, .external_lex_state = 4}, + [2863] = {.lex_state = 4, .external_lex_state = 4}, + [2864] = {.lex_state = 10, .external_lex_state = 4}, + [2865] = {.lex_state = 10, .external_lex_state = 3}, + [2866] = {.lex_state = 10, .external_lex_state = 3}, + [2867] = {.lex_state = 27, .external_lex_state = 6}, + [2868] = {.lex_state = 10, .external_lex_state = 3}, + [2869] = {.lex_state = 4, .external_lex_state = 4}, + [2870] = {.lex_state = 4, .external_lex_state = 4}, + [2871] = {.lex_state = 4, .external_lex_state = 4}, + [2872] = {.lex_state = 4, .external_lex_state = 4}, + [2873] = {.lex_state = 27, .external_lex_state = 6}, + [2874] = {.lex_state = 10, .external_lex_state = 3}, + [2875] = {.lex_state = 4, .external_lex_state = 4}, + [2876] = {.lex_state = 4, .external_lex_state = 4}, + [2877] = {.lex_state = 10, .external_lex_state = 3}, + [2878] = {.lex_state = 4, .external_lex_state = 4}, + [2879] = {.lex_state = 10, .external_lex_state = 4}, + [2880] = {.lex_state = 10, .external_lex_state = 4}, + [2881] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 21}, + [2882] = {.lex_state = 27, .external_lex_state = 6}, + [2883] = {.lex_state = 10, .external_lex_state = 3}, + [2884] = {.lex_state = 4, .external_lex_state = 4}, + [2885] = {.lex_state = 10, .external_lex_state = 4}, + [2886] = {.lex_state = 27, .external_lex_state = 6}, + [2887] = {.lex_state = 10, .external_lex_state = 3}, + [2888] = {.lex_state = 10, .external_lex_state = 4}, + [2889] = {.lex_state = 10, .external_lex_state = 4}, + [2890] = {.lex_state = 10, .external_lex_state = 4}, + [2891] = {.lex_state = 10, .external_lex_state = 3}, + [2892] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2893] = {.lex_state = 10, .external_lex_state = 4}, + [2894] = {.lex_state = 27, .external_lex_state = 6}, + [2895] = {.lex_state = 4, .external_lex_state = 4}, + [2896] = {.lex_state = 10, .external_lex_state = 3}, + [2897] = {.lex_state = 10, .external_lex_state = 4}, + [2898] = {.lex_state = 4, .external_lex_state = 4}, + [2899] = {.lex_state = 4, .external_lex_state = 4}, + [2900] = {.lex_state = 27, .external_lex_state = 6}, + [2901] = {.lex_state = 10, .external_lex_state = 4}, + [2902] = {.lex_state = 4, .external_lex_state = 3}, + [2903] = {.lex_state = 16, .external_lex_state = 3}, + [2904] = {.lex_state = 4, .external_lex_state = 4}, + [2905] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2906] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2907] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2908] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2909] = {.lex_state = 4, .external_lex_state = 4}, + [2910] = {.lex_state = 4, .external_lex_state = 4}, + [2911] = {.lex_state = 4, .external_lex_state = 3}, + [2912] = {.lex_state = 10, .external_lex_state = 3}, + [2913] = {.lex_state = 4, .external_lex_state = 4}, + [2914] = {.lex_state = 4, .external_lex_state = 4}, + [2915] = {.lex_state = 4, .external_lex_state = 4}, + [2916] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2917] = {.lex_state = 4, .external_lex_state = 3}, + [2918] = {.lex_state = 4, .external_lex_state = 3}, + [2919] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2920] = {.lex_state = 4, .external_lex_state = 4}, + [2921] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2922] = {.lex_state = 4, .external_lex_state = 4}, + [2923] = {.lex_state = 4, .external_lex_state = 3}, + [2924] = {.lex_state = 4, .external_lex_state = 4}, + [2925] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2926] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2927] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2928] = {.lex_state = 4, .external_lex_state = 4}, + [2929] = {.lex_state = 4, .external_lex_state = 3}, + [2930] = {.lex_state = 4, .external_lex_state = 3}, + [2931] = {.lex_state = 27, .external_lex_state = 6}, + [2932] = {.lex_state = 4, .external_lex_state = 4}, + [2933] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2934] = {.lex_state = 10, .external_lex_state = 3}, + [2935] = {.lex_state = 4, .external_lex_state = 4}, + [2936] = {.lex_state = 4, .external_lex_state = 4}, + [2937] = {.lex_state = 4, .external_lex_state = 3}, + [2938] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2939] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2940] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2941] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2942] = {.lex_state = 4, .external_lex_state = 4}, + [2943] = {.lex_state = 4, .external_lex_state = 3}, + [2944] = {.lex_state = 10, .external_lex_state = 3}, + [2945] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2946] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2947] = {.lex_state = 31, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2948] = {.lex_state = 4, .external_lex_state = 4}, + [2949] = {.lex_state = 4, .external_lex_state = 3}, + [2950] = {.lex_state = 4, .external_lex_state = 3}, + [2951] = {.lex_state = 4, .external_lex_state = 3}, + [2952] = {.lex_state = 27, .external_lex_state = 6}, + [2953] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2954] = {.lex_state = 4, .external_lex_state = 3}, + [2955] = {.lex_state = 4, .external_lex_state = 4}, + [2956] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2957] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2958] = {.lex_state = 4, .external_lex_state = 4}, + [2959] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2960] = {.lex_state = 4, .external_lex_state = 4}, + [2961] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2962] = {.lex_state = 4, .external_lex_state = 4}, + [2963] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2964] = {.lex_state = 4, .external_lex_state = 4}, + [2965] = {.lex_state = 4, .external_lex_state = 3}, + [2966] = {.lex_state = 10, .external_lex_state = 3}, + [2967] = {.lex_state = 4, .external_lex_state = 4}, + [2968] = {.lex_state = 4, .external_lex_state = 4}, + [2969] = {.lex_state = 4, .external_lex_state = 4}, + [2970] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2971] = {.lex_state = 4, .external_lex_state = 4}, + [2972] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2973] = {.lex_state = 10, .external_lex_state = 3}, + [2974] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2975] = {.lex_state = 4, .external_lex_state = 3}, + [2976] = {.lex_state = 4, .external_lex_state = 3}, + [2977] = {.lex_state = 4, .external_lex_state = 4}, + [2978] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2979] = {.lex_state = 16, .external_lex_state = 3}, + [2980] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 22}, + [2981] = {.lex_state = 4, .external_lex_state = 4}, + [2982] = {.lex_state = 4, .external_lex_state = 4}, + [2983] = {.lex_state = 4, .external_lex_state = 4}, + [2984] = {.lex_state = 4, .external_lex_state = 4}, + [2985] = {.lex_state = 10, .external_lex_state = 3}, + [2986] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2987] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2988] = {.lex_state = 31, .external_lex_state = 3}, + [2989] = {.lex_state = 4, .external_lex_state = 4}, + [2990] = {.lex_state = 4, .external_lex_state = 3}, + [2991] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2992] = {.lex_state = 4, .external_lex_state = 4}, + [2993] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [2994] = {.lex_state = 16, .external_lex_state = 3}, + [2995] = {.lex_state = 4, .external_lex_state = 4}, + [2996] = {.lex_state = 4, .external_lex_state = 4}, + [2997] = {.lex_state = 4, .external_lex_state = 4}, + [2998] = {.lex_state = 4, .external_lex_state = 4}, + [2999] = {.lex_state = 10, .external_lex_state = 3}, + [3000] = {.lex_state = 4, .external_lex_state = 4}, + [3001] = {.lex_state = 4, .external_lex_state = 3}, + [3002] = {.lex_state = 4, .external_lex_state = 4}, + [3003] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3004] = {.lex_state = 4, .external_lex_state = 4}, + [3005] = {.lex_state = 4, .external_lex_state = 3}, + [3006] = {.lex_state = 4, .external_lex_state = 4}, + [3007] = {.lex_state = 4, .external_lex_state = 4}, + [3008] = {.lex_state = 4, .external_lex_state = 4}, + [3009] = {.lex_state = 4, .external_lex_state = 4}, + [3010] = {.lex_state = 4, .external_lex_state = 4}, + [3011] = {.lex_state = 4, .external_lex_state = 4}, + [3012] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3013] = {.lex_state = 15, .external_lex_state = 3}, + [3014] = {.lex_state = 4, .external_lex_state = 4}, + [3015] = {.lex_state = 4, .external_lex_state = 4}, + [3016] = {.lex_state = 4, .external_lex_state = 3}, + [3017] = {.lex_state = 4, .external_lex_state = 4}, + [3018] = {.lex_state = 4, .external_lex_state = 4}, + [3019] = {.lex_state = 4, .external_lex_state = 4}, + [3020] = {.lex_state = 4, .external_lex_state = 4}, + [3021] = {.lex_state = 4, .external_lex_state = 4}, + [3022] = {.lex_state = 4, .external_lex_state = 4}, + [3023] = {.lex_state = 4, .external_lex_state = 4}, + [3024] = {.lex_state = 4, .external_lex_state = 4}, + [3025] = {.lex_state = 4, .external_lex_state = 4}, + [3026] = {.lex_state = 89, .external_lex_state = 4}, + [3027] = {.lex_state = 4, .external_lex_state = 4}, + [3028] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3029] = {.lex_state = 89, .external_lex_state = 5}, + [3030] = {.lex_state = 4, .external_lex_state = 3}, + [3031] = {.lex_state = 89, .external_lex_state = 5}, + [3032] = {.lex_state = 89, .external_lex_state = 5}, + [3033] = {.lex_state = 89, .external_lex_state = 5}, + [3034] = {.lex_state = 89, .external_lex_state = 5}, + [3035] = {.lex_state = 89, .external_lex_state = 5}, + [3036] = {.lex_state = 4, .external_lex_state = 3}, + [3037] = {.lex_state = 89, .external_lex_state = 5}, + [3038] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3039] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3040] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3041] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3042] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3043] = {.lex_state = 89, .external_lex_state = 5}, + [3044] = {.lex_state = 89, .external_lex_state = 5}, + [3045] = {.lex_state = 4, .external_lex_state = 4}, + [3046] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3047] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3048] = {.lex_state = 4, .external_lex_state = 4}, + [3049] = {.lex_state = 4, .external_lex_state = 4}, + [3050] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3051] = {.lex_state = 20, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3052] = {.lex_state = 27, .external_lex_state = 6}, + [3053] = {.lex_state = 89, .external_lex_state = 5}, + [3054] = {.lex_state = 16, .external_lex_state = 3}, + [3055] = {.lex_state = 89, .external_lex_state = 5}, + [3056] = {.lex_state = 89, .external_lex_state = 5}, + [3057] = {.lex_state = 4, .external_lex_state = 4}, + [3058] = {.lex_state = 4, .external_lex_state = 3}, + [3059] = {.lex_state = 4, .external_lex_state = 3}, + [3060] = {.lex_state = 89, .external_lex_state = 5}, + [3061] = {.lex_state = 89, .external_lex_state = 5}, + [3062] = {.lex_state = 4, .external_lex_state = 3}, + [3063] = {.lex_state = 4, .external_lex_state = 3}, + [3064] = {.lex_state = 4, .external_lex_state = 3}, + [3065] = {.lex_state = 4, .external_lex_state = 3}, + [3066] = {.lex_state = 4, .external_lex_state = 3}, + [3067] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3068] = {.lex_state = 4, .external_lex_state = 4}, + [3069] = {.lex_state = 16, .external_lex_state = 3}, + [3070] = {.lex_state = 4, .external_lex_state = 4}, + [3071] = {.lex_state = 4, .external_lex_state = 3}, + [3072] = {.lex_state = 4, .external_lex_state = 3}, + [3073] = {.lex_state = 4, .external_lex_state = 3}, + [3074] = {.lex_state = 4, .external_lex_state = 4}, + [3075] = {.lex_state = 4, .external_lex_state = 3}, + [3076] = {.lex_state = 4, .external_lex_state = 3}, + [3077] = {.lex_state = 4, .external_lex_state = 3}, + [3078] = {.lex_state = 4, .external_lex_state = 3}, + [3079] = {.lex_state = 4, .external_lex_state = 3}, + [3080] = {.lex_state = 4, .external_lex_state = 3}, + [3081] = {.lex_state = 4, .external_lex_state = 3}, + [3082] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3083] = {.lex_state = 4, .external_lex_state = 4}, + [3084] = {.lex_state = 16, .external_lex_state = 3}, + [3085] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3086] = {.lex_state = 4, .external_lex_state = 3}, + [3087] = {.lex_state = 4, .external_lex_state = 3}, + [3088] = {.lex_state = 4, .external_lex_state = 3}, + [3089] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3090] = {.lex_state = 4, .external_lex_state = 3}, + [3091] = {.lex_state = 4, .external_lex_state = 3}, + [3092] = {.lex_state = 4, .external_lex_state = 3}, + [3093] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3094] = {.lex_state = 4, .external_lex_state = 3}, + [3095] = {.lex_state = 4, .external_lex_state = 3}, + [3096] = {.lex_state = 4, .external_lex_state = 3}, + [3097] = {.lex_state = 4, .external_lex_state = 3}, + [3098] = {.lex_state = 4, .external_lex_state = 3}, + [3099] = {.lex_state = 4, .external_lex_state = 3}, + [3100] = {.lex_state = 4, .external_lex_state = 3}, + [3101] = {.lex_state = 4, .external_lex_state = 4}, + [3102] = {.lex_state = 20, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3103] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3104] = {.lex_state = 89, .external_lex_state = 5}, + [3105] = {.lex_state = 27, .external_lex_state = 6}, + [3106] = {.lex_state = 89, .external_lex_state = 5}, + [3107] = {.lex_state = 89, .external_lex_state = 5}, + [3108] = {.lex_state = 27, .external_lex_state = 6}, + [3109] = {.lex_state = 27, .external_lex_state = 6}, + [3110] = {.lex_state = 89, .external_lex_state = 5}, + [3111] = {.lex_state = 4, .external_lex_state = 4}, + [3112] = {.lex_state = 89, .external_lex_state = 5}, + [3113] = {.lex_state = 89, .external_lex_state = 5}, + [3114] = {.lex_state = 20, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3115] = {.lex_state = 89, .external_lex_state = 5}, + [3116] = {.lex_state = 27, .external_lex_state = 6}, + [3117] = {.lex_state = 10, .external_lex_state = 3}, + [3118] = {.lex_state = 4, .external_lex_state = 3}, + [3119] = {.lex_state = 10, .external_lex_state = 4}, + [3120] = {.lex_state = 4, .external_lex_state = 3}, + [3121] = {.lex_state = 4, .external_lex_state = 3}, + [3122] = {.lex_state = 4, .external_lex_state = 3}, + [3123] = {.lex_state = 4, .external_lex_state = 3}, + [3124] = {.lex_state = 4, .external_lex_state = 3}, + [3125] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3126] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3127] = {.lex_state = 4, .external_lex_state = 3}, + [3128] = {.lex_state = 4, .external_lex_state = 3}, + [3129] = {.lex_state = 4, .external_lex_state = 4}, + [3130] = {.lex_state = 4, .external_lex_state = 4}, + [3131] = {.lex_state = 4, .external_lex_state = 4}, + [3132] = {.lex_state = 4, .external_lex_state = 3}, + [3133] = {.lex_state = 4, .external_lex_state = 4}, + [3134] = {.lex_state = 4, .external_lex_state = 4}, + [3135] = {.lex_state = 4, .external_lex_state = 3}, + [3136] = {.lex_state = 4, .external_lex_state = 3}, + [3137] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3138] = {.lex_state = 4, .external_lex_state = 3}, + [3139] = {.lex_state = 4, .external_lex_state = 3}, + [3140] = {.lex_state = 89, .external_lex_state = 5}, + [3141] = {.lex_state = 4, .external_lex_state = 3}, + [3142] = {.lex_state = 4, .external_lex_state = 3}, + [3143] = {.lex_state = 4, .external_lex_state = 4}, + [3144] = {.lex_state = 4, .external_lex_state = 4}, + [3145] = {.lex_state = 4, .external_lex_state = 4}, + [3146] = {.lex_state = 4, .external_lex_state = 4}, + [3147] = {.lex_state = 4, .external_lex_state = 3}, + [3148] = {.lex_state = 4, .external_lex_state = 3}, + [3149] = {.lex_state = 89, .external_lex_state = 5}, + [3150] = {.lex_state = 4, .external_lex_state = 4}, + [3151] = {.lex_state = 4, .external_lex_state = 4}, + [3152] = {.lex_state = 4, .external_lex_state = 4}, + [3153] = {.lex_state = 89, .external_lex_state = 5}, + [3154] = {.lex_state = 4, .external_lex_state = 4}, + [3155] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3156] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3157] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3158] = {.lex_state = 4, .external_lex_state = 3}, + [3159] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3160] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3161] = {.lex_state = 4, .external_lex_state = 3}, + [3162] = {.lex_state = 10, .external_lex_state = 3}, + [3163] = {.lex_state = 4, .external_lex_state = 4}, + [3164] = {.lex_state = 4, .external_lex_state = 3}, + [3165] = {.lex_state = 4, .external_lex_state = 4}, + [3166] = {.lex_state = 4, .external_lex_state = 4}, + [3167] = {.lex_state = 4, .external_lex_state = 3}, + [3168] = {.lex_state = 4, .external_lex_state = 4}, + [3169] = {.lex_state = 4, .external_lex_state = 4}, + [3170] = {.lex_state = 4, .external_lex_state = 3}, + [3171] = {.lex_state = 4, .external_lex_state = 3}, + [3172] = {.lex_state = 4, .external_lex_state = 3}, + [3173] = {.lex_state = 4, .external_lex_state = 3}, + [3174] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3175] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3176] = {.lex_state = 89, .external_lex_state = 3}, + [3177] = {.lex_state = 4, .external_lex_state = 4}, + [3178] = {.lex_state = 4, .external_lex_state = 3}, + [3179] = {.lex_state = 4, .external_lex_state = 4}, + [3180] = {.lex_state = 4, .external_lex_state = 4}, + [3181] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3182] = {.lex_state = 4, .external_lex_state = 3}, + [3183] = {.lex_state = 4, .external_lex_state = 3}, + [3184] = {.lex_state = 4, .external_lex_state = 4}, + [3185] = {.lex_state = 4, .external_lex_state = 4}, + [3186] = {.lex_state = 89, .external_lex_state = 4}, + [3187] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3188] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3189] = {.lex_state = 4, .external_lex_state = 3}, + [3190] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3191] = {.lex_state = 4, .external_lex_state = 3}, + [3192] = {.lex_state = 4, .external_lex_state = 4}, + [3193] = {.lex_state = 4, .external_lex_state = 3}, + [3194] = {.lex_state = 4, .external_lex_state = 4}, + [3195] = {.lex_state = 20, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3196] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3197] = {.lex_state = 10, .external_lex_state = 3}, + [3198] = {.lex_state = 89, .external_lex_state = 5}, + [3199] = {.lex_state = 4, .external_lex_state = 3}, + [3200] = {.lex_state = 4, .external_lex_state = 4}, + [3201] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3202] = {.lex_state = 4, .external_lex_state = 4}, + [3203] = {.lex_state = 4, .external_lex_state = 4}, + [3204] = {.lex_state = 4, .external_lex_state = 4}, + [3205] = {.lex_state = 4, .external_lex_state = 4}, + [3206] = {.lex_state = 4, .external_lex_state = 4}, + [3207] = {.lex_state = 4, .external_lex_state = 4}, + [3208] = {.lex_state = 4, .external_lex_state = 3}, + [3209] = {.lex_state = 4, .external_lex_state = 4}, + [3210] = {.lex_state = 4, .external_lex_state = 4}, + [3211] = {.lex_state = 4, .external_lex_state = 3}, + [3212] = {.lex_state = 4, .external_lex_state = 4}, + [3213] = {.lex_state = 4, .external_lex_state = 4}, + [3214] = {.lex_state = 4, .external_lex_state = 3}, + [3215] = {.lex_state = 4, .external_lex_state = 4}, + [3216] = {.lex_state = 4, .external_lex_state = 3}, + [3217] = {.lex_state = 4, .external_lex_state = 3}, + [3218] = {.lex_state = 4, .external_lex_state = 3}, + [3219] = {.lex_state = 4, .external_lex_state = 3}, + [3220] = {.lex_state = 4, .external_lex_state = 3}, + [3221] = {.lex_state = 4, .external_lex_state = 3}, + [3222] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3223] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3224] = {.lex_state = 10, .external_lex_state = 3}, + [3225] = {.lex_state = 4, .external_lex_state = 4}, + [3226] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3227] = {.lex_state = 4, .external_lex_state = 4}, + [3228] = {.lex_state = 4, .external_lex_state = 3}, + [3229] = {.lex_state = 4, .external_lex_state = 3}, + [3230] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3231] = {.lex_state = 4, .external_lex_state = 4}, + [3232] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3233] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3234] = {.lex_state = 4, .external_lex_state = 4}, + [3235] = {.lex_state = 4, .external_lex_state = 4}, + [3236] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3237] = {.lex_state = 4, .external_lex_state = 4}, + [3238] = {.lex_state = 4, .external_lex_state = 4}, + [3239] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3240] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3241] = {.lex_state = 4, .external_lex_state = 4}, + [3242] = {.lex_state = 16, .external_lex_state = 3}, + [3243] = {.lex_state = 4, .external_lex_state = 3}, + [3244] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3245] = {.lex_state = 4, .external_lex_state = 4}, + [3246] = {.lex_state = 20, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3247] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3248] = {.lex_state = 4, .external_lex_state = 4}, + [3249] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3250] = {.lex_state = 4, .external_lex_state = 4}, + [3251] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3252] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3253] = {.lex_state = 10, .external_lex_state = 3}, + [3254] = {.lex_state = 4, .external_lex_state = 3}, + [3255] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3256] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3257] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3258] = {.lex_state = 4, .external_lex_state = 3}, + [3259] = {.lex_state = 4, .external_lex_state = 3}, + [3260] = {.lex_state = 4, .external_lex_state = 3}, + [3261] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3262] = {.lex_state = 4, .external_lex_state = 3}, + [3263] = {.lex_state = 4, .external_lex_state = 3}, + [3264] = {.lex_state = 10, .external_lex_state = 3}, + [3265] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3266] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3267] = {.lex_state = 10, .external_lex_state = 3}, + [3268] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3269] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3270] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3271] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3272] = {.lex_state = 4, .external_lex_state = 3}, + [3273] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3274] = {.lex_state = 4, .external_lex_state = 4}, + [3275] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3276] = {.lex_state = 10, .external_lex_state = 3}, + [3277] = {.lex_state = 4, .external_lex_state = 4}, + [3278] = {.lex_state = 4, .external_lex_state = 4}, + [3279] = {.lex_state = 4, .external_lex_state = 4}, + [3280] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3281] = {.lex_state = 4, .external_lex_state = 3}, + [3282] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3283] = {.lex_state = 4, .external_lex_state = 4}, + [3284] = {.lex_state = 4, .external_lex_state = 4}, + [3285] = {.lex_state = 4, .external_lex_state = 3}, + [3286] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3287] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3288] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3289] = {.lex_state = 4, .external_lex_state = 3}, + [3290] = {.lex_state = 10, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3291] = {.lex_state = 4, .external_lex_state = 4}, + [3292] = {.lex_state = 4, .external_lex_state = 3}, + [3293] = {.lex_state = 89, .external_lex_state = 3}, + [3294] = {.lex_state = 4, .external_lex_state = 3}, + [3295] = {.lex_state = 4, .external_lex_state = 4}, + [3296] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3297] = {.lex_state = 4, .external_lex_state = 4}, + [3298] = {.lex_state = 4, .external_lex_state = 4}, + [3299] = {.lex_state = 4, .external_lex_state = 4}, + [3300] = {.lex_state = 4, .external_lex_state = 4}, + [3301] = {.lex_state = 4, .external_lex_state = 4}, + [3302] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3303] = {.lex_state = 4, .external_lex_state = 4}, + [3304] = {.lex_state = 4, .external_lex_state = 4}, + [3305] = {.lex_state = 4, .external_lex_state = 4}, + [3306] = {.lex_state = 4, .external_lex_state = 4}, + [3307] = {.lex_state = 4, .external_lex_state = 4}, + [3308] = {.lex_state = 4, .external_lex_state = 4}, + [3309] = {.lex_state = 4, .external_lex_state = 4}, + [3310] = {.lex_state = 4, .external_lex_state = 4}, + [3311] = {.lex_state = 4, .external_lex_state = 4}, + [3312] = {.lex_state = 4, .external_lex_state = 4}, + [3313] = {.lex_state = 89, .external_lex_state = 3}, + [3314] = {.lex_state = 89, .external_lex_state = 3}, + [3315] = {.lex_state = 89, .external_lex_state = 3}, + [3316] = {.lex_state = 89, .external_lex_state = 3}, + [3317] = {.lex_state = 89, .external_lex_state = 3}, + [3318] = {.lex_state = 89, .external_lex_state = 3}, + [3319] = {.lex_state = 89, .external_lex_state = 3}, + [3320] = {.lex_state = 89, .external_lex_state = 3}, + [3321] = {.lex_state = 89, .external_lex_state = 3}, + [3322] = {.lex_state = 89, .external_lex_state = 3}, + [3323] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3324] = {.lex_state = 89, .external_lex_state = 5}, + [3325] = {.lex_state = 89, .external_lex_state = 3}, + [3326] = {.lex_state = 89, .external_lex_state = 5}, + [3327] = {.lex_state = 89, .external_lex_state = 3}, + [3328] = {.lex_state = 89, .external_lex_state = 3}, + [3329] = {.lex_state = 89, .external_lex_state = 3}, + [3330] = {.lex_state = 89, .external_lex_state = 3}, + [3331] = {.lex_state = 4, .external_lex_state = 3}, + [3332] = {.lex_state = 89, .external_lex_state = 3}, + [3333] = {.lex_state = 89, .external_lex_state = 5}, + [3334] = {.lex_state = 89, .external_lex_state = 5}, + [3335] = {.lex_state = 89, .external_lex_state = 3}, + [3336] = {.lex_state = 89, .external_lex_state = 3}, + [3337] = {.lex_state = 89, .external_lex_state = 3}, + [3338] = {.lex_state = 4, .external_lex_state = 3}, + [3339] = {.lex_state = 4, .external_lex_state = 3}, + [3340] = {.lex_state = 89, .external_lex_state = 3}, + [3341] = {.lex_state = 89, .external_lex_state = 5}, + [3342] = {.lex_state = 89, .external_lex_state = 3}, + [3343] = {.lex_state = 4, .external_lex_state = 3}, + [3344] = {.lex_state = 89, .external_lex_state = 3}, + [3345] = {.lex_state = 4, .external_lex_state = 3}, + [3346] = {.lex_state = 89, .external_lex_state = 3}, + [3347] = {.lex_state = 21, .external_lex_state = 5}, + [3348] = {.lex_state = 4, .external_lex_state = 3}, + [3349] = {.lex_state = 89, .external_lex_state = 5}, + [3350] = {.lex_state = 89, .external_lex_state = 3}, + [3351] = {.lex_state = 89, .external_lex_state = 3}, + [3352] = {.lex_state = 89, .external_lex_state = 5}, + [3353] = {.lex_state = 89, .external_lex_state = 3}, + [3354] = {.lex_state = 89, .external_lex_state = 3}, + [3355] = {.lex_state = 89, .external_lex_state = 3}, + [3356] = {.lex_state = 89, .external_lex_state = 3}, + [3357] = {.lex_state = 89, .external_lex_state = 3}, + [3358] = {.lex_state = 89, .external_lex_state = 5}, + [3359] = {.lex_state = 89, .external_lex_state = 3}, + [3360] = {.lex_state = 89, .external_lex_state = 3}, + [3361] = {.lex_state = 89, .external_lex_state = 3}, + [3362] = {.lex_state = 89, .external_lex_state = 4}, + [3363] = {.lex_state = 89, .external_lex_state = 3}, + [3364] = {.lex_state = 89, .external_lex_state = 5}, + [3365] = {.lex_state = 89, .external_lex_state = 3}, + [3366] = {.lex_state = 89, .external_lex_state = 4}, + [3367] = {.lex_state = 89, .external_lex_state = 3}, + [3368] = {.lex_state = 89, .external_lex_state = 3}, + [3369] = {.lex_state = 89, .external_lex_state = 3}, + [3370] = {.lex_state = 89, .external_lex_state = 3}, + [3371] = {.lex_state = 89, .external_lex_state = 3}, + [3372] = {.lex_state = 89, .external_lex_state = 3}, + [3373] = {.lex_state = 4, .external_lex_state = 3}, + [3374] = {.lex_state = 89, .external_lex_state = 3}, + [3375] = {.lex_state = 4, .external_lex_state = 3}, + [3376] = {.lex_state = 4, .external_lex_state = 3}, + [3377] = {.lex_state = 89, .external_lex_state = 3}, + [3378] = {.lex_state = 89, .external_lex_state = 3}, + [3379] = {.lex_state = 10, .external_lex_state = 3}, + [3380] = {.lex_state = 89, .external_lex_state = 3}, + [3381] = {.lex_state = 89, .external_lex_state = 3}, + [3382] = {.lex_state = 4, .external_lex_state = 3}, + [3383] = {.lex_state = 89, .external_lex_state = 3}, + [3384] = {.lex_state = 89, .external_lex_state = 4}, + [3385] = {.lex_state = 89, .external_lex_state = 3}, + [3386] = {.lex_state = 89, .external_lex_state = 3}, + [3387] = {.lex_state = 89, .external_lex_state = 3}, + [3388] = {.lex_state = 89, .external_lex_state = 3}, + [3389] = {.lex_state = 89, .external_lex_state = 4}, + [3390] = {.lex_state = 89, .external_lex_state = 3}, + [3391] = {.lex_state = 89, .external_lex_state = 3}, + [3392] = {.lex_state = 4, .external_lex_state = 3}, + [3393] = {.lex_state = 21, .external_lex_state = 5}, + [3394] = {.lex_state = 4, .external_lex_state = 3}, + [3395] = {.lex_state = 89, .external_lex_state = 3}, + [3396] = {.lex_state = 89, .external_lex_state = 5}, + [3397] = {.lex_state = 89, .external_lex_state = 3}, + [3398] = {.lex_state = 89, .external_lex_state = 3}, + [3399] = {.lex_state = 89, .external_lex_state = 3}, + [3400] = {.lex_state = 89, .external_lex_state = 3}, + [3401] = {.lex_state = 89, .external_lex_state = 3}, + [3402] = {.lex_state = 4, .external_lex_state = 3}, + [3403] = {.lex_state = 4, .external_lex_state = 3}, + [3404] = {.lex_state = 89, .external_lex_state = 5}, + [3405] = {.lex_state = 4, .external_lex_state = 3}, + [3406] = {.lex_state = 89, .external_lex_state = 3}, + [3407] = {.lex_state = 89, .external_lex_state = 3}, + [3408] = {.lex_state = 89, .external_lex_state = 3}, + [3409] = {.lex_state = 4, .external_lex_state = 3}, + [3410] = {.lex_state = 4, .external_lex_state = 3}, + [3411] = {.lex_state = 89, .external_lex_state = 3}, + [3412] = {.lex_state = 89, .external_lex_state = 3}, + [3413] = {.lex_state = 89, .external_lex_state = 3}, + [3414] = {.lex_state = 4, .external_lex_state = 3}, + [3415] = {.lex_state = 4, .external_lex_state = 3}, + [3416] = {.lex_state = 4, .external_lex_state = 3}, + [3417] = {.lex_state = 89, .external_lex_state = 3}, + [3418] = {.lex_state = 89, .external_lex_state = 3}, + [3419] = {.lex_state = 89, .external_lex_state = 5}, + [3420] = {.lex_state = 89, .external_lex_state = 3}, + [3421] = {.lex_state = 89, .external_lex_state = 4}, + [3422] = {.lex_state = 4, .external_lex_state = 3}, + [3423] = {.lex_state = 4, .external_lex_state = 3}, + [3424] = {.lex_state = 89, .external_lex_state = 5}, + [3425] = {.lex_state = 89, .external_lex_state = 3}, + [3426] = {.lex_state = 89, .external_lex_state = 3}, + [3427] = {.lex_state = 89, .external_lex_state = 3}, + [3428] = {.lex_state = 4, .external_lex_state = 3}, + [3429] = {.lex_state = 89, .external_lex_state = 3}, + [3430] = {.lex_state = 89, .external_lex_state = 5}, + [3431] = {.lex_state = 4, .external_lex_state = 3}, + [3432] = {.lex_state = 89, .external_lex_state = 3}, + [3433] = {.lex_state = 89, .external_lex_state = 3}, + [3434] = {.lex_state = 89, .external_lex_state = 4}, + [3435] = {.lex_state = 89, .external_lex_state = 5}, + [3436] = {.lex_state = 89, .external_lex_state = 3}, + [3437] = {.lex_state = 89, .external_lex_state = 3}, + [3438] = {.lex_state = 89, .external_lex_state = 3}, + [3439] = {.lex_state = 89, .external_lex_state = 3}, + [3440] = {.lex_state = 89, .external_lex_state = 3}, + [3441] = {.lex_state = 89, .external_lex_state = 3}, + [3442] = {.lex_state = 89, .external_lex_state = 3}, + [3443] = {.lex_state = 89, .external_lex_state = 3}, + [3444] = {.lex_state = 89, .external_lex_state = 3}, + [3445] = {.lex_state = 89, .external_lex_state = 3}, + [3446] = {.lex_state = 89, .external_lex_state = 3}, + [3447] = {.lex_state = 89, .external_lex_state = 3}, + [3448] = {.lex_state = 89, .external_lex_state = 5}, + [3449] = {.lex_state = 89, .external_lex_state = 4}, + [3450] = {.lex_state = 4, .external_lex_state = 3}, + [3451] = {.lex_state = 89, .external_lex_state = 3}, + [3452] = {.lex_state = 4, .external_lex_state = 3}, + [3453] = {.lex_state = 89, .external_lex_state = 5}, + [3454] = {.lex_state = 4, .external_lex_state = 3}, + [3455] = {.lex_state = 89, .external_lex_state = 3}, + [3456] = {.lex_state = 89, .external_lex_state = 3}, + [3457] = {.lex_state = 89, .external_lex_state = 5}, + [3458] = {.lex_state = 89, .external_lex_state = 3}, + [3459] = {.lex_state = 89, .external_lex_state = 3}, + [3460] = {.lex_state = 89, .external_lex_state = 3}, + [3461] = {.lex_state = 89, .external_lex_state = 3}, + [3462] = {.lex_state = 89, .external_lex_state = 3}, + [3463] = {.lex_state = 89, .external_lex_state = 3}, + [3464] = {.lex_state = 89, .external_lex_state = 5}, + [3465] = {.lex_state = 10, .external_lex_state = 3}, + [3466] = {.lex_state = 4, .external_lex_state = 3}, + [3467] = {.lex_state = 89, .external_lex_state = 3}, + [3468] = {.lex_state = 89, .external_lex_state = 3}, + [3469] = {.lex_state = 89, .external_lex_state = 5}, + [3470] = {.lex_state = 89, .external_lex_state = 3}, + [3471] = {.lex_state = 89, .external_lex_state = 3}, + [3472] = {.lex_state = 89, .external_lex_state = 3}, + [3473] = {.lex_state = 89, .external_lex_state = 3}, + [3474] = {.lex_state = 89, .external_lex_state = 3}, + [3475] = {.lex_state = 89, .external_lex_state = 3}, + [3476] = {.lex_state = 89, .external_lex_state = 3}, + [3477] = {.lex_state = 4, .external_lex_state = 3}, + [3478] = {.lex_state = 89, .external_lex_state = 3}, + [3479] = {.lex_state = 89, .external_lex_state = 3}, + [3480] = {.lex_state = 89, .external_lex_state = 3}, + [3481] = {.lex_state = 4, .external_lex_state = 3}, + [3482] = {.lex_state = 89, .external_lex_state = 3}, + [3483] = {.lex_state = 89, .external_lex_state = 3}, + [3484] = {.lex_state = 89, .external_lex_state = 3}, + [3485] = {.lex_state = 89, .external_lex_state = 5}, + [3486] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3487] = {.lex_state = 89, .external_lex_state = 4}, + [3488] = {.lex_state = 89, .external_lex_state = 4}, + [3489] = {.lex_state = 89, .external_lex_state = 3}, + [3490] = {.lex_state = 89, .external_lex_state = 3}, + [3491] = {.lex_state = 4, .external_lex_state = 3}, + [3492] = {.lex_state = 4, .external_lex_state = 3}, + [3493] = {.lex_state = 4, .external_lex_state = 3}, + [3494] = {.lex_state = 21, .external_lex_state = 5}, + [3495] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3496] = {.lex_state = 22, .external_lex_state = 5}, + [3497] = {.lex_state = 4, .external_lex_state = 3}, + [3498] = {.lex_state = 89, .external_lex_state = 3}, + [3499] = {.lex_state = 32, .external_lex_state = 3}, + [3500] = {.lex_state = 22, .external_lex_state = 5}, + [3501] = {.lex_state = 89, .external_lex_state = 3}, + [3502] = {.lex_state = 89, .external_lex_state = 3}, + [3503] = {.lex_state = 89, .external_lex_state = 3}, + [3504] = {.lex_state = 89, .external_lex_state = 3}, + [3505] = {.lex_state = 89, .external_lex_state = 5}, + [3506] = {.lex_state = 4, .external_lex_state = 3}, + [3507] = {.lex_state = 89, .external_lex_state = 4}, + [3508] = {.lex_state = 32, .external_lex_state = 3}, + [3509] = {.lex_state = 89, .external_lex_state = 3}, + [3510] = {.lex_state = 89, .external_lex_state = 5}, + [3511] = {.lex_state = 89, .external_lex_state = 3}, + [3512] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3513] = {.lex_state = 21, .external_lex_state = 5}, + [3514] = {.lex_state = 89, .external_lex_state = 4}, + [3515] = {.lex_state = 22, .external_lex_state = 5}, + [3516] = {.lex_state = 89, .external_lex_state = 4}, + [3517] = {.lex_state = 89, .external_lex_state = 5}, + [3518] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3519] = {.lex_state = 32, .external_lex_state = 3}, + [3520] = {.lex_state = 21, .external_lex_state = 5}, + [3521] = {.lex_state = 89, .external_lex_state = 5}, + [3522] = {.lex_state = 89, .external_lex_state = 3}, + [3523] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3524] = {.lex_state = 4, .external_lex_state = 3}, + [3525] = {.lex_state = 22, .external_lex_state = 5}, + [3526] = {.lex_state = 22, .external_lex_state = 5}, + [3527] = {.lex_state = 22, .external_lex_state = 5}, + [3528] = {.lex_state = 89, .external_lex_state = 3}, + [3529] = {.lex_state = 32, .external_lex_state = 3}, + [3530] = {.lex_state = 4, .external_lex_state = 3}, + [3531] = {.lex_state = 89, .external_lex_state = 3}, + [3532] = {.lex_state = 89, .external_lex_state = 3}, + [3533] = {.lex_state = 89, .external_lex_state = 3}, + [3534] = {.lex_state = 22, .external_lex_state = 5}, + [3535] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3536] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3537] = {.lex_state = 32, .external_lex_state = 3}, + [3538] = {.lex_state = 89, .external_lex_state = 5}, + [3539] = {.lex_state = 89, .external_lex_state = 5}, + [3540] = {.lex_state = 4, .external_lex_state = 3}, + [3541] = {.lex_state = 22, .external_lex_state = 5}, + [3542] = {.lex_state = 22, .external_lex_state = 5}, + [3543] = {.lex_state = 32, .external_lex_state = 3}, + [3544] = {.lex_state = 89, .external_lex_state = 5}, + [3545] = {.lex_state = 89, .external_lex_state = 3}, + [3546] = {.lex_state = 89, .external_lex_state = 3}, + [3547] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3548] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3549] = {.lex_state = 21, .external_lex_state = 5}, + [3550] = {.lex_state = 89, .external_lex_state = 5}, + [3551] = {.lex_state = 32, .external_lex_state = 3}, + [3552] = {.lex_state = 32, .external_lex_state = 3}, + [3553] = {.lex_state = 89, .external_lex_state = 3}, + [3554] = {.lex_state = 4, .external_lex_state = 3}, + [3555] = {.lex_state = 32, .external_lex_state = 3}, + [3556] = {.lex_state = 4, .external_lex_state = 3}, + [3557] = {.lex_state = 22, .external_lex_state = 5}, + [3558] = {.lex_state = 4, .external_lex_state = 3}, + [3559] = {.lex_state = 22, .external_lex_state = 5}, + [3560] = {.lex_state = 21, .external_lex_state = 5}, + [3561] = {.lex_state = 22, .external_lex_state = 5}, + [3562] = {.lex_state = 89, .external_lex_state = 3}, + [3563] = {.lex_state = 89, .external_lex_state = 3}, + [3564] = {.lex_state = 22, .external_lex_state = 5}, + [3565] = {.lex_state = 4, .external_lex_state = 3}, + [3566] = {.lex_state = 89, .external_lex_state = 3}, + [3567] = {.lex_state = 4, .external_lex_state = 3}, + [3568] = {.lex_state = 22, .external_lex_state = 5}, + [3569] = {.lex_state = 89, .external_lex_state = 5}, + [3570] = {.lex_state = 89, .external_lex_state = 3}, + [3571] = {.lex_state = 4, .external_lex_state = 3}, + [3572] = {.lex_state = 4, .external_lex_state = 3}, + [3573] = {.lex_state = 4, .external_lex_state = 3}, + [3574] = {.lex_state = 89, .external_lex_state = 3}, + [3575] = {.lex_state = 4, .external_lex_state = 3}, + [3576] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3577] = {.lex_state = 89, .external_lex_state = 3}, + [3578] = {.lex_state = 89, .external_lex_state = 3}, + [3579] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3580] = {.lex_state = 89, .external_lex_state = 3}, + [3581] = {.lex_state = 4, .external_lex_state = 3}, + [3582] = {.lex_state = 4, .external_lex_state = 3}, + [3583] = {.lex_state = 89, .external_lex_state = 5}, + [3584] = {.lex_state = 4, .external_lex_state = 3}, + [3585] = {.lex_state = 4, .external_lex_state = 3}, + [3586] = {.lex_state = 4, .external_lex_state = 3}, + [3587] = {.lex_state = 4, .external_lex_state = 3}, + [3588] = {.lex_state = 89, .external_lex_state = 5}, + [3589] = {.lex_state = 32, .external_lex_state = 3}, + [3590] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3591] = {.lex_state = 89, .external_lex_state = 3}, + [3592] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3593] = {.lex_state = 22, .external_lex_state = 5}, + [3594] = {.lex_state = 4, .external_lex_state = 3}, + [3595] = {.lex_state = 4, .external_lex_state = 3}, + [3596] = {.lex_state = 4, .external_lex_state = 3}, + [3597] = {.lex_state = 32, .external_lex_state = 3}, + [3598] = {.lex_state = 4, .external_lex_state = 3}, + [3599] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3600] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3601] = {.lex_state = 89, .external_lex_state = 3}, + [3602] = {.lex_state = 4, .external_lex_state = 3}, + [3603] = {.lex_state = 21, .external_lex_state = 5}, + [3604] = {.lex_state = 4, .external_lex_state = 3}, + [3605] = {.lex_state = 32, .external_lex_state = 3}, + [3606] = {.lex_state = 89, .external_lex_state = 5}, + [3607] = {.lex_state = 4, .external_lex_state = 3}, + [3608] = {.lex_state = 89, .external_lex_state = 5}, + [3609] = {.lex_state = 4, .external_lex_state = 3}, + [3610] = {.lex_state = 4, .external_lex_state = 3}, + [3611] = {.lex_state = 4, .external_lex_state = 3}, + [3612] = {.lex_state = 89, .external_lex_state = 5}, + [3613] = {.lex_state = 89, .external_lex_state = 3}, + [3614] = {.lex_state = 32, .external_lex_state = 3}, + [3615] = {.lex_state = 4, .external_lex_state = 3}, + [3616] = {.lex_state = 89, .external_lex_state = 5}, + [3617] = {.lex_state = 89, .external_lex_state = 3}, + [3618] = {.lex_state = 89, .external_lex_state = 5}, + [3619] = {.lex_state = 4, .external_lex_state = 3}, + [3620] = {.lex_state = 4, .external_lex_state = 3}, + [3621] = {.lex_state = 4, .external_lex_state = 3}, + [3622] = {.lex_state = 89, .external_lex_state = 3}, + [3623] = {.lex_state = 89, .external_lex_state = 3}, + [3624] = {.lex_state = 22, .external_lex_state = 5}, + [3625] = {.lex_state = 89, .external_lex_state = 5}, + [3626] = {.lex_state = 32, .external_lex_state = 3}, + [3627] = {.lex_state = 89, .external_lex_state = 5}, + [3628] = {.lex_state = 4, .external_lex_state = 3}, + [3629] = {.lex_state = 89, .external_lex_state = 3}, + [3630] = {.lex_state = 89, .external_lex_state = 3}, + [3631] = {.lex_state = 89, .external_lex_state = 3}, + [3632] = {.lex_state = 4, .external_lex_state = 3}, + [3633] = {.lex_state = 4, .external_lex_state = 3}, + [3634] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3635] = {.lex_state = 89, .external_lex_state = 5}, + [3636] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3637] = {.lex_state = 89, .external_lex_state = 3}, + [3638] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3639] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3640] = {.lex_state = 89, .external_lex_state = 3}, + [3641] = {.lex_state = 22, .external_lex_state = 5}, + [3642] = {.lex_state = 4, .external_lex_state = 3}, + [3643] = {.lex_state = 89, .external_lex_state = 3}, + [3644] = {.lex_state = 89, .external_lex_state = 3}, + [3645] = {.lex_state = 89, .external_lex_state = 4}, + [3646] = {.lex_state = 89, .external_lex_state = 4}, + [3647] = {.lex_state = 4, .external_lex_state = 3}, + [3648] = {.lex_state = 4, .external_lex_state = 3}, + [3649] = {.lex_state = 21, .external_lex_state = 5}, + [3650] = {.lex_state = 4, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3651] = {.lex_state = 32, .external_lex_state = 3}, + [3652] = {.lex_state = 89, .external_lex_state = 3}, + [3653] = {.lex_state = 4, .external_lex_state = 3}, + [3654] = {.lex_state = 89, .external_lex_state = 3}, + [3655] = {.lex_state = 10, .external_lex_state = 3}, + [3656] = {.lex_state = 89, .external_lex_state = 3}, + [3657] = {.lex_state = 89, .external_lex_state = 3}, + [3658] = {.lex_state = 89, .external_lex_state = 3}, + [3659] = {.lex_state = 89, .external_lex_state = 3}, + [3660] = {.lex_state = 89, .external_lex_state = 3}, + [3661] = {.lex_state = 89, .external_lex_state = 3}, + [3662] = {.lex_state = 89, .external_lex_state = 3}, + [3663] = {.lex_state = 89, .external_lex_state = 3}, + [3664] = {.lex_state = 89, .external_lex_state = 3}, + [3665] = {.lex_state = 89, .external_lex_state = 3}, + [3666] = {.lex_state = 89, .external_lex_state = 3}, + [3667] = {.lex_state = 89, .external_lex_state = 3}, + [3668] = {.lex_state = 89, .external_lex_state = 3}, + [3669] = {.lex_state = 89, .external_lex_state = 3}, + [3670] = {.lex_state = 4, .external_lex_state = 3}, + [3671] = {.lex_state = 10, .external_lex_state = 3}, + [3672] = {.lex_state = 4, .external_lex_state = 3}, + [3673] = {.lex_state = 89, .external_lex_state = 3}, + [3674] = {.lex_state = 89, .external_lex_state = 3}, + [3675] = {.lex_state = 10, .external_lex_state = 3}, + [3676] = {.lex_state = 29, .external_lex_state = 3}, + [3677] = {.lex_state = 89, .external_lex_state = 3}, + [3678] = {.lex_state = 89, .external_lex_state = 3}, + [3679] = {.lex_state = 89, .external_lex_state = 3}, + [3680] = {.lex_state = 89, .external_lex_state = 3}, + [3681] = {.lex_state = 89, .external_lex_state = 3}, + [3682] = {.lex_state = 10, .external_lex_state = 3}, + [3683] = {.lex_state = 89, .external_lex_state = 3}, + [3684] = {.lex_state = 89, .external_lex_state = 3}, + [3685] = {.lex_state = 89, .external_lex_state = 3}, + [3686] = {.lex_state = 89, .external_lex_state = 3}, + [3687] = {.lex_state = 89, .external_lex_state = 3}, + [3688] = {.lex_state = 89, .external_lex_state = 3}, + [3689] = {.lex_state = 89, .external_lex_state = 3}, + [3690] = {.lex_state = 89, .external_lex_state = 3}, + [3691] = {.lex_state = 29, .external_lex_state = 3}, + [3692] = {.lex_state = 89, .external_lex_state = 3}, + [3693] = {.lex_state = 89, .external_lex_state = 3}, + [3694] = {.lex_state = 89, .external_lex_state = 3}, + [3695] = {.lex_state = 89, .external_lex_state = 3}, + [3696] = {.lex_state = 89, .external_lex_state = 3}, + [3697] = {.lex_state = 89, .external_lex_state = 3}, + [3698] = {.lex_state = 89, .external_lex_state = 3}, + [3699] = {.lex_state = 89, .external_lex_state = 3}, + [3700] = {.lex_state = 89, .external_lex_state = 3}, + [3701] = {.lex_state = 10, .external_lex_state = 3}, + [3702] = {.lex_state = 89, .external_lex_state = 3}, + [3703] = {.lex_state = 89, .external_lex_state = 3}, + [3704] = {.lex_state = 29, .external_lex_state = 3}, + [3705] = {.lex_state = 89, .external_lex_state = 3}, + [3706] = {.lex_state = 89, .external_lex_state = 3}, + [3707] = {.lex_state = 89, .external_lex_state = 3}, + [3708] = {.lex_state = 89, .external_lex_state = 3}, + [3709] = {.lex_state = 89, .external_lex_state = 3}, + [3710] = {.lex_state = 89, .external_lex_state = 3}, + [3711] = {.lex_state = 89, .external_lex_state = 3}, + [3712] = {.lex_state = 89, .external_lex_state = 3}, + [3713] = {.lex_state = 89, .external_lex_state = 3}, + [3714] = {.lex_state = 89, .external_lex_state = 3}, + [3715] = {.lex_state = 89, .external_lex_state = 3}, + [3716] = {.lex_state = 89, .external_lex_state = 3}, + [3717] = {.lex_state = 89, .external_lex_state = 3}, + [3718] = {.lex_state = 89, .external_lex_state = 3}, + [3719] = {.lex_state = 89, .external_lex_state = 3}, + [3720] = {.lex_state = 89, .external_lex_state = 3}, + [3721] = {.lex_state = 89, .external_lex_state = 3}, + [3722] = {.lex_state = 89, .external_lex_state = 3}, + [3723] = {.lex_state = 89, .external_lex_state = 3}, + [3724] = {.lex_state = 89, .external_lex_state = 3}, + [3725] = {.lex_state = 89, .external_lex_state = 3}, + [3726] = {.lex_state = 89, .external_lex_state = 3}, + [3727] = {.lex_state = 89, .external_lex_state = 3}, + [3728] = {.lex_state = 10, .external_lex_state = 3}, + [3729] = {.lex_state = 4, .external_lex_state = 3}, + [3730] = {.lex_state = 89, .external_lex_state = 3}, + [3731] = {.lex_state = 89, .external_lex_state = 3}, + [3732] = {.lex_state = 89, .external_lex_state = 3}, + [3733] = {.lex_state = 89, .external_lex_state = 3}, + [3734] = {.lex_state = 89, .external_lex_state = 3}, + [3735] = {.lex_state = 89, .external_lex_state = 3}, + [3736] = {.lex_state = 89, .external_lex_state = 3}, + [3737] = {.lex_state = 89, .external_lex_state = 3}, + [3738] = {.lex_state = 89, .external_lex_state = 3}, + [3739] = {.lex_state = 4, .external_lex_state = 3}, + [3740] = {.lex_state = 89, .external_lex_state = 3}, + [3741] = {.lex_state = 89, .external_lex_state = 3}, + [3742] = {.lex_state = 10, .external_lex_state = 3}, + [3743] = {.lex_state = 89, .external_lex_state = 3}, + [3744] = {.lex_state = 89, .external_lex_state = 3}, + [3745] = {.lex_state = 89, .external_lex_state = 3}, + [3746] = {.lex_state = 89, .external_lex_state = 3}, + [3747] = {.lex_state = 89, .external_lex_state = 3}, + [3748] = {.lex_state = 89, .external_lex_state = 3}, + [3749] = {.lex_state = 89, .external_lex_state = 3}, + [3750] = {.lex_state = 89, .external_lex_state = 3}, + [3751] = {.lex_state = 4, .external_lex_state = 3}, + [3752] = {.lex_state = 89, .external_lex_state = 3}, + [3753] = {.lex_state = 89, .external_lex_state = 3}, + [3754] = {.lex_state = 89, .external_lex_state = 3}, + [3755] = {.lex_state = 4, .external_lex_state = 3}, + [3756] = {.lex_state = 89, .external_lex_state = 3}, + [3757] = {.lex_state = 4, .external_lex_state = 3}, + [3758] = {.lex_state = 89, .external_lex_state = 3}, + [3759] = {.lex_state = 89, .external_lex_state = 3}, + [3760] = {.lex_state = 89, .external_lex_state = 3}, + [3761] = {.lex_state = 89, .external_lex_state = 3}, + [3762] = {.lex_state = 89, .external_lex_state = 3}, + [3763] = {.lex_state = 89, .external_lex_state = 3}, + [3764] = {.lex_state = 89, .external_lex_state = 3}, + [3765] = {.lex_state = 89, .external_lex_state = 3}, + [3766] = {.lex_state = 89, .external_lex_state = 3}, + [3767] = {.lex_state = 10, .external_lex_state = 3}, + [3768] = {.lex_state = 89, .external_lex_state = 3}, + [3769] = {.lex_state = 89, .external_lex_state = 3}, + [3770] = {.lex_state = 89, .external_lex_state = 3}, + [3771] = {.lex_state = 89, .external_lex_state = 3}, + [3772] = {.lex_state = 89, .external_lex_state = 3}, + [3773] = {.lex_state = 89, .external_lex_state = 3}, + [3774] = {.lex_state = 89, .external_lex_state = 3}, + [3775] = {.lex_state = 10, .external_lex_state = 3}, + [3776] = {.lex_state = 89, .external_lex_state = 3}, + [3777] = {.lex_state = 89, .external_lex_state = 3}, + [3778] = {.lex_state = 4, .external_lex_state = 3}, + [3779] = {.lex_state = 89, .external_lex_state = 3}, + [3780] = {.lex_state = 89, .external_lex_state = 3}, + [3781] = {.lex_state = 89, .external_lex_state = 3}, + [3782] = {.lex_state = 22, .external_lex_state = 5}, + [3783] = {.lex_state = 89, .external_lex_state = 3}, + [3784] = {.lex_state = 89, .external_lex_state = 3}, + [3785] = {.lex_state = 89, .external_lex_state = 3}, + [3786] = {.lex_state = 10, .external_lex_state = 3}, + [3787] = {.lex_state = 89, .external_lex_state = 3}, + [3788] = {.lex_state = 89, .external_lex_state = 3}, + [3789] = {.lex_state = 89, .external_lex_state = 3}, + [3790] = {.lex_state = 89, .external_lex_state = 3}, + [3791] = {.lex_state = 89, .external_lex_state = 3}, + [3792] = {.lex_state = 32, .external_lex_state = 3}, + [3793] = {.lex_state = 89, .external_lex_state = 3}, + [3794] = {.lex_state = 89, .external_lex_state = 3}, + [3795] = {.lex_state = 89, .external_lex_state = 3}, + [3796] = {.lex_state = 89, .external_lex_state = 3}, + [3797] = {.lex_state = 89, .external_lex_state = 3}, + [3798] = {.lex_state = 89, .external_lex_state = 3}, + [3799] = {.lex_state = 89, .external_lex_state = 3}, + [3800] = {.lex_state = 89, .external_lex_state = 3}, + [3801] = {.lex_state = 89, .external_lex_state = 3}, + [3802] = {.lex_state = 89, .external_lex_state = 3}, + [3803] = {.lex_state = 89, .external_lex_state = 3}, + [3804] = {.lex_state = 89, .external_lex_state = 3}, + [3805] = {.lex_state = 4, .external_lex_state = 3}, + [3806] = {.lex_state = 89, .external_lex_state = 3}, + [3807] = {.lex_state = 89, .external_lex_state = 3}, + [3808] = {.lex_state = 4, .external_lex_state = 3}, + [3809] = {.lex_state = 89, .external_lex_state = 3}, + [3810] = {.lex_state = 89, .external_lex_state = 3}, + [3811] = {.lex_state = 89, .external_lex_state = 3}, + [3812] = {.lex_state = 89, .external_lex_state = 3}, + [3813] = {.lex_state = 89, .external_lex_state = 3}, + [3814] = {.lex_state = 89, .external_lex_state = 3}, + [3815] = {.lex_state = 89, .external_lex_state = 3}, + [3816] = {.lex_state = 89, .external_lex_state = 3}, + [3817] = {.lex_state = 89, .external_lex_state = 3}, + [3818] = {.lex_state = 4, .external_lex_state = 3}, + [3819] = {.lex_state = 89, .external_lex_state = 3}, + [3820] = {.lex_state = 89, .external_lex_state = 3}, + [3821] = {.lex_state = 89, .external_lex_state = 3}, + [3822] = {.lex_state = 89, .external_lex_state = 3}, + [3823] = {.lex_state = 89, .external_lex_state = 3}, + [3824] = {.lex_state = 89, .external_lex_state = 3}, + [3825] = {.lex_state = 89, .external_lex_state = 3}, + [3826] = {.lex_state = 89, .external_lex_state = 3}, + [3827] = {.lex_state = 89, .external_lex_state = 3}, + [3828] = {.lex_state = 89, .external_lex_state = 3}, + [3829] = {.lex_state = 4, .external_lex_state = 3}, + [3830] = {.lex_state = 89, .external_lex_state = 3}, + [3831] = {.lex_state = 10, .external_lex_state = 3}, + [3832] = {.lex_state = 89, .external_lex_state = 3}, + [3833] = {.lex_state = 10, .external_lex_state = 3}, + [3834] = {.lex_state = 89, .external_lex_state = 3}, + [3835] = {.lex_state = 10, .external_lex_state = 3}, + [3836] = {.lex_state = 89, .external_lex_state = 3}, + [3837] = {.lex_state = 29, .external_lex_state = 3}, + [3838] = {.lex_state = 89, .external_lex_state = 3}, + [3839] = {.lex_state = 89, .external_lex_state = 3}, + [3840] = {.lex_state = 89, .external_lex_state = 3}, + [3841] = {.lex_state = 89, .external_lex_state = 3}, + [3842] = {.lex_state = 89, .external_lex_state = 3}, + [3843] = {.lex_state = 89, .external_lex_state = 3}, + [3844] = {.lex_state = 89, .external_lex_state = 3}, + [3845] = {.lex_state = 89, .external_lex_state = 3}, + [3846] = {.lex_state = 10, .external_lex_state = 3}, + [3847] = {.lex_state = 89, .external_lex_state = 3}, + [3848] = {.lex_state = 89, .external_lex_state = 3}, + [3849] = {.lex_state = 10, .external_lex_state = 3}, + [3850] = {.lex_state = 29, .external_lex_state = 3}, + [3851] = {.lex_state = 89, .external_lex_state = 3}, + [3852] = {.lex_state = 89, .external_lex_state = 3}, + [3853] = {.lex_state = 10, .external_lex_state = 3}, + [3854] = {.lex_state = 10, .external_lex_state = 3}, + [3855] = {.lex_state = 89, .external_lex_state = 3}, + [3856] = {.lex_state = 10, .external_lex_state = 3}, + [3857] = {.lex_state = 89, .external_lex_state = 3}, + [3858] = {.lex_state = 89, .external_lex_state = 3}, + [3859] = {.lex_state = 89, .external_lex_state = 3}, + [3860] = {.lex_state = 89, .external_lex_state = 3}, + [3861] = {.lex_state = 4, .external_lex_state = 3}, + [3862] = {.lex_state = 89, .external_lex_state = 5}, + [3863] = {.lex_state = 4, .external_lex_state = 3}, + [3864] = {.lex_state = 89, .external_lex_state = 3}, + [3865] = {.lex_state = 89, .external_lex_state = 3}, + [3866] = {.lex_state = 89, .external_lex_state = 3}, + [3867] = {.lex_state = 89, .external_lex_state = 3}, + [3868] = {.lex_state = 89, .external_lex_state = 3}, + [3869] = {.lex_state = 89, .external_lex_state = 3}, + [3870] = {.lex_state = 89, .external_lex_state = 3}, + [3871] = {.lex_state = 89, .external_lex_state = 3}, + [3872] = {.lex_state = 89, .external_lex_state = 3}, + [3873] = {.lex_state = 89, .external_lex_state = 3}, + [3874] = {.lex_state = 89, .external_lex_state = 3}, + [3875] = {.lex_state = 89, .external_lex_state = 3}, + [3876] = {.lex_state = 89, .external_lex_state = 3}, + [3877] = {.lex_state = 89, .external_lex_state = 3}, + [3878] = {.lex_state = 89, .external_lex_state = 3}, + [3879] = {.lex_state = 89, .external_lex_state = 3}, + [3880] = {.lex_state = 89, .external_lex_state = 3}, + [3881] = {.lex_state = 89, .external_lex_state = 3}, + [3882] = {.lex_state = 89, .external_lex_state = 3}, + [3883] = {.lex_state = 89, .external_lex_state = 3}, + [3884] = {.lex_state = 89, .external_lex_state = 3}, + [3885] = {.lex_state = 89, .external_lex_state = 3}, + [3886] = {.lex_state = 89, .external_lex_state = 3}, + [3887] = {.lex_state = 89, .external_lex_state = 3}, + [3888] = {.lex_state = 89, .external_lex_state = 3}, + [3889] = {.lex_state = 89, .external_lex_state = 5}, + [3890] = {.lex_state = 89, .external_lex_state = 3}, + [3891] = {.lex_state = 89, .external_lex_state = 3}, + [3892] = {.lex_state = 4, .external_lex_state = 3}, + [3893] = {.lex_state = 89, .external_lex_state = 3}, + [3894] = {.lex_state = 89, .external_lex_state = 3}, + [3895] = {.lex_state = 10, .external_lex_state = 3}, + [3896] = {.lex_state = 89, .external_lex_state = 3}, + [3897] = {.lex_state = 89, .external_lex_state = 3}, + [3898] = {.lex_state = 89, .external_lex_state = 3}, + [3899] = {.lex_state = 89, .external_lex_state = 3}, + [3900] = {.lex_state = 89, .external_lex_state = 3}, + [3901] = {.lex_state = 29, .external_lex_state = 3}, + [3902] = {.lex_state = 89, .external_lex_state = 3}, + [3903] = {.lex_state = 89, .external_lex_state = 3}, + [3904] = {.lex_state = 89, .external_lex_state = 3}, + [3905] = {.lex_state = 89, .external_lex_state = 3}, + [3906] = {.lex_state = 89, .external_lex_state = 3}, + [3907] = {.lex_state = 89, .external_lex_state = 3}, + [3908] = {.lex_state = 89, .external_lex_state = 3}, + [3909] = {.lex_state = 89, .external_lex_state = 3}, + [3910] = {.lex_state = 89, .external_lex_state = 3}, + [3911] = {.lex_state = 89, .external_lex_state = 3}, + [3912] = {.lex_state = 89, .external_lex_state = 3}, + [3913] = {.lex_state = 89, .external_lex_state = 3}, + [3914] = {.lex_state = 89, .external_lex_state = 3}, + [3915] = {.lex_state = 89, .external_lex_state = 3}, + [3916] = {.lex_state = 89, .external_lex_state = 3}, + [3917] = {.lex_state = 89, .external_lex_state = 3}, + [3918] = {.lex_state = 89, .external_lex_state = 3}, + [3919] = {.lex_state = 89, .external_lex_state = 3}, + [3920] = {.lex_state = 89, .external_lex_state = 3}, + [3921] = {.lex_state = 4, .external_lex_state = 3}, + [3922] = {.lex_state = 89, .external_lex_state = 3}, + [3923] = {.lex_state = 89, .external_lex_state = 3}, + [3924] = {.lex_state = 89, .external_lex_state = 3}, + [3925] = {.lex_state = 89, .external_lex_state = 3}, + [3926] = {.lex_state = 89, .external_lex_state = 3}, + [3927] = {.lex_state = 89, .external_lex_state = 3}, + [3928] = {.lex_state = 89, .external_lex_state = 3}, + [3929] = {.lex_state = 89, .external_lex_state = 3}, + [3930] = {.lex_state = 89, .external_lex_state = 3}, + [3931] = {.lex_state = 89, .external_lex_state = 3}, + [3932] = {.lex_state = 89, .external_lex_state = 3}, + [3933] = {.lex_state = 89, .external_lex_state = 3}, + [3934] = {.lex_state = 89, .external_lex_state = 3}, + [3935] = {.lex_state = 89, .external_lex_state = 3}, + [3936] = {.lex_state = 4, .external_lex_state = 3}, + [3937] = {.lex_state = 89, .external_lex_state = 3}, + [3938] = {.lex_state = 89, .external_lex_state = 3}, + [3939] = {.lex_state = 89, .external_lex_state = 3}, + [3940] = {.lex_state = 89, .external_lex_state = 3}, + [3941] = {.lex_state = 89, .external_lex_state = 3}, + [3942] = {.lex_state = 4, .external_lex_state = 3}, + [3943] = {.lex_state = 89, .external_lex_state = 3}, + [3944] = {.lex_state = 89, .external_lex_state = 3}, + [3945] = {.lex_state = 89, .external_lex_state = 3}, + [3946] = {.lex_state = 89, .external_lex_state = 3}, + [3947] = {.lex_state = 89, .external_lex_state = 3}, + [3948] = {.lex_state = 4, .external_lex_state = 3}, + [3949] = {.lex_state = 89, .external_lex_state = 3}, + [3950] = {.lex_state = 89, .external_lex_state = 3}, + [3951] = {.lex_state = 89, .external_lex_state = 5}, + [3952] = {.lex_state = 89, .external_lex_state = 3}, + [3953] = {.lex_state = 89, .external_lex_state = 3}, + [3954] = {.lex_state = 89, .external_lex_state = 3}, + [3955] = {.lex_state = 89, .external_lex_state = 3}, + [3956] = {.lex_state = 4, .external_lex_state = 3}, + [3957] = {.lex_state = 89, .external_lex_state = 3}, + [3958] = {.lex_state = 89, .external_lex_state = 3}, + [3959] = {.lex_state = 89, .external_lex_state = 3}, + [3960] = {.lex_state = 4, .external_lex_state = 3}, + [3961] = {.lex_state = 89, .external_lex_state = 3}, + [3962] = {.lex_state = 89, .external_lex_state = 3}, + [3963] = {.lex_state = 89, .external_lex_state = 3}, + [3964] = {.lex_state = 89, .external_lex_state = 3}, + [3965] = {.lex_state = 89, .external_lex_state = 3}, + [3966] = {.lex_state = 4, .external_lex_state = 3}, + [3967] = {.lex_state = 89, .external_lex_state = 3}, + [3968] = {.lex_state = 89, .external_lex_state = 3}, + [3969] = {.lex_state = 89, .external_lex_state = 3}, + [3970] = {.lex_state = 89, .external_lex_state = 3}, + [3971] = {.lex_state = 89, .external_lex_state = 3}, + [3972] = {.lex_state = 89, .external_lex_state = 4}, + [3973] = {.lex_state = 89, .external_lex_state = 3}, + [3974] = {.lex_state = 89, .external_lex_state = 3}, + [3975] = {.lex_state = 89, .external_lex_state = 3}, + [3976] = {.lex_state = 89, .external_lex_state = 3}, + [3977] = {.lex_state = 89, .external_lex_state = 3}, + [3978] = {.lex_state = 89, .external_lex_state = 3}, + [3979] = {.lex_state = 89, .external_lex_state = 3}, + [3980] = {.lex_state = 89, .external_lex_state = 3}, + [3981] = {.lex_state = 89, .external_lex_state = 3}, + [3982] = {.lex_state = 89, .external_lex_state = 3}, + [3983] = {.lex_state = 89, .external_lex_state = 3}, + [3984] = {.lex_state = 89, .external_lex_state = 3}, + [3985] = {.lex_state = 89, .external_lex_state = 3}, + [3986] = {.lex_state = 89, .external_lex_state = 3}, + [3987] = {.lex_state = 89, .external_lex_state = 3}, + [3988] = {.lex_state = 89, .external_lex_state = 3}, + [3989] = {.lex_state = 89, .external_lex_state = 3}, + [3990] = {.lex_state = 89, .external_lex_state = 3}, + [3991] = {.lex_state = 89, .external_lex_state = 3}, + [3992] = {.lex_state = 89, .external_lex_state = 3}, + [3993] = {.lex_state = 89, .external_lex_state = 3}, + [3994] = {.lex_state = 89, .external_lex_state = 3}, + [3995] = {.lex_state = 89, .external_lex_state = 3}, + [3996] = {.lex_state = 89, .external_lex_state = 3}, + [3997] = {.lex_state = 89, .external_lex_state = 3}, + [3998] = {.lex_state = 89, .external_lex_state = 3}, + [3999] = {.lex_state = 4, .external_lex_state = 3}, + [4000] = {.lex_state = 89, .external_lex_state = 5}, + [4001] = {.lex_state = 4, .external_lex_state = 3}, + [4002] = {.lex_state = 89, .external_lex_state = 3}, + [4003] = {.lex_state = 89, .external_lex_state = 3}, + [4004] = {.lex_state = 89, .external_lex_state = 3}, + [4005] = {.lex_state = 89, .external_lex_state = 3}, + [4006] = {.lex_state = 89, .external_lex_state = 5}, + [4007] = {.lex_state = 89, .external_lex_state = 5}, + [4008] = {.lex_state = 89, .external_lex_state = 3}, + [4009] = {.lex_state = 89, .external_lex_state = 3}, + [4010] = {.lex_state = 89, .external_lex_state = 3}, + [4011] = {.lex_state = 89, .external_lex_state = 3}, + [4012] = {.lex_state = 89, .external_lex_state = 3}, + [4013] = {.lex_state = 89, .external_lex_state = 3}, + [4014] = {.lex_state = 89, .external_lex_state = 3}, + [4015] = {.lex_state = 89, .external_lex_state = 3}, + [4016] = {.lex_state = 89, .external_lex_state = 3}, + [4017] = {.lex_state = 89, .external_lex_state = 3}, + [4018] = {.lex_state = 89, .external_lex_state = 3}, + [4019] = {.lex_state = 89, .external_lex_state = 5}, + [4020] = {.lex_state = 89, .external_lex_state = 5}, + [4021] = {.lex_state = 89, .external_lex_state = 3}, + [4022] = {.lex_state = 89, .external_lex_state = 3}, + [4023] = {.lex_state = 89, .external_lex_state = 3}, + [4024] = {.lex_state = 89, .external_lex_state = 3}, + [4025] = {.lex_state = 89, .external_lex_state = 3}, + [4026] = {.lex_state = 89, .external_lex_state = 3}, + [4027] = {.lex_state = 89, .external_lex_state = 3}, + [4028] = {.lex_state = 89, .external_lex_state = 3}, + [4029] = {.lex_state = 89, .external_lex_state = 3}, + [4030] = {.lex_state = 89, .external_lex_state = 3}, + [4031] = {.lex_state = 89, .external_lex_state = 3}, + [4032] = {.lex_state = 89, .external_lex_state = 3}, + [4033] = {.lex_state = 4, .external_lex_state = 3}, + [4034] = {.lex_state = 89, .external_lex_state = 3}, + [4035] = {.lex_state = 89, .external_lex_state = 3}, + [4036] = {.lex_state = 29, .external_lex_state = 3}, + [4037] = {.lex_state = 89, .external_lex_state = 3}, + [4038] = {.lex_state = 89, .external_lex_state = 3}, + [4039] = {.lex_state = 89, .external_lex_state = 3}, + [4040] = {.lex_state = 89, .external_lex_state = 3}, + [4041] = {.lex_state = 89, .external_lex_state = 3}, + [4042] = {.lex_state = 89, .external_lex_state = 3}, + [4043] = {.lex_state = 89, .external_lex_state = 3}, + [4044] = {.lex_state = 4, .external_lex_state = 3}, + [4045] = {.lex_state = 89, .external_lex_state = 3}, + [4046] = {.lex_state = 89, .external_lex_state = 3}, + [4047] = {.lex_state = 89, .external_lex_state = 3}, + [4048] = {.lex_state = 89, .external_lex_state = 3}, + [4049] = {.lex_state = 89, .external_lex_state = 3}, + [4050] = {.lex_state = 89, .external_lex_state = 3}, + [4051] = {.lex_state = 89, .external_lex_state = 3}, + [4052] = {.lex_state = 89, .external_lex_state = 3}, + [4053] = {.lex_state = 89, .external_lex_state = 3}, + [4054] = {.lex_state = 89, .external_lex_state = 3}, + [4055] = {.lex_state = 89, .external_lex_state = 5}, + [4056] = {.lex_state = 89, .external_lex_state = 3}, + [4057] = {.lex_state = 89, .external_lex_state = 5}, + [4058] = {.lex_state = 89, .external_lex_state = 3}, + [4059] = {.lex_state = 4, .external_lex_state = 3}, + [4060] = {.lex_state = 89, .external_lex_state = 3}, + [4061] = {.lex_state = 89, .external_lex_state = 3}, + [4062] = {.lex_state = 89, .external_lex_state = 3}, + [4063] = {.lex_state = 89, .external_lex_state = 3}, + [4064] = {.lex_state = 89, .external_lex_state = 3}, + [4065] = {.lex_state = 89, .external_lex_state = 3}, + [4066] = {.lex_state = 89, .external_lex_state = 3}, + [4067] = {.lex_state = 89, .external_lex_state = 3}, + [4068] = {.lex_state = 89, .external_lex_state = 3}, + [4069] = {.lex_state = 89, .external_lex_state = 3}, + [4070] = {.lex_state = 4, .external_lex_state = 3}, + [4071] = {.lex_state = 89, .external_lex_state = 3}, + [4072] = {.lex_state = 4, .external_lex_state = 8}, + [4073] = {.lex_state = 89, .external_lex_state = 3}, + [4074] = {.lex_state = 89, .external_lex_state = 3}, + [4075] = {.lex_state = 89, .external_lex_state = 3}, + [4076] = {.lex_state = 1, .external_lex_state = 3}, + [4077] = {.lex_state = 89, .external_lex_state = 3}, + [4078] = {.lex_state = 89, .external_lex_state = 3}, + [4079] = {.lex_state = 89, .external_lex_state = 3}, + [4080] = {.lex_state = 10, .external_lex_state = 3}, + [4081] = {.lex_state = 89, .external_lex_state = 3}, + [4082] = {.lex_state = 89, .external_lex_state = 3}, + [4083] = {.lex_state = 89, .external_lex_state = 3}, + [4084] = {.lex_state = 89, .external_lex_state = 3}, + [4085] = {.lex_state = 89, .external_lex_state = 3}, + [4086] = {.lex_state = 89, .external_lex_state = 3}, + [4087] = {.lex_state = 89, .external_lex_state = 3}, + [4088] = {.lex_state = 89, .external_lex_state = 3}, + [4089] = {.lex_state = 38, .external_lex_state = 3}, + [4090] = {.lex_state = 89, .external_lex_state = 3}, + [4091] = {.lex_state = 89, .external_lex_state = 3}, + [4092] = {.lex_state = 89, .external_lex_state = 3}, + [4093] = {.lex_state = 1, .external_lex_state = 3}, + [4094] = {.lex_state = 89, .external_lex_state = 3}, + [4095] = {.lex_state = 89, .external_lex_state = 3}, + [4096] = {.lex_state = 89, .external_lex_state = 3}, + [4097] = {.lex_state = 4, .external_lex_state = 8}, + [4098] = {.lex_state = 10, .external_lex_state = 3}, + [4099] = {.lex_state = 89, .external_lex_state = 3}, + [4100] = {.lex_state = 4, .external_lex_state = 3}, + [4101] = {.lex_state = 89, .external_lex_state = 3}, + [4102] = {.lex_state = 89, .external_lex_state = 3}, + [4103] = {.lex_state = 1, .external_lex_state = 3}, + [4104] = {.lex_state = 89, .external_lex_state = 3}, + [4105] = {.lex_state = 38, .external_lex_state = 3}, + [4106] = {.lex_state = 89, .external_lex_state = 3}, + [4107] = {.lex_state = 10, .external_lex_state = 3}, + [4108] = {.lex_state = 89, .external_lex_state = 3}, + [4109] = {.lex_state = 10, .external_lex_state = 3}, + [4110] = {.lex_state = 89, .external_lex_state = 3}, + [4111] = {.lex_state = 89, .external_lex_state = 3}, + [4112] = {.lex_state = 89, .external_lex_state = 3}, + [4113] = {.lex_state = 89, .external_lex_state = 3}, + [4114] = {.lex_state = 89, .external_lex_state = 3}, + [4115] = {.lex_state = 89, .external_lex_state = 3}, + [4116] = {.lex_state = 89, .external_lex_state = 3}, + [4117] = {.lex_state = 89, .external_lex_state = 3}, + [4118] = {.lex_state = 89, .external_lex_state = 3}, + [4119] = {.lex_state = 89, .external_lex_state = 3}, + [4120] = {.lex_state = 89, .external_lex_state = 3}, + [4121] = {.lex_state = 1, .external_lex_state = 3}, + [4122] = {.lex_state = 10, .external_lex_state = 3}, + [4123] = {.lex_state = 89, .external_lex_state = 3}, + [4124] = {.lex_state = 89, .external_lex_state = 3}, + [4125] = {.lex_state = 89, .external_lex_state = 3}, + [4126] = {.lex_state = 89, .external_lex_state = 3}, + [4127] = {.lex_state = 89, .external_lex_state = 3}, + [4128] = {.lex_state = 1, .external_lex_state = 3}, + [4129] = {.lex_state = 89, .external_lex_state = 3}, + [4130] = {.lex_state = 89, .external_lex_state = 3}, + [4131] = {.lex_state = 89, .external_lex_state = 3}, + [4132] = {.lex_state = 89, .external_lex_state = 3}, + [4133] = {.lex_state = 89, .external_lex_state = 3}, + [4134] = {.lex_state = 89, .external_lex_state = 3}, + [4135] = {.lex_state = 89, .external_lex_state = 3}, + [4136] = {.lex_state = 89, .external_lex_state = 3}, + [4137] = {.lex_state = 38, .external_lex_state = 3}, + [4138] = {.lex_state = 89, .external_lex_state = 3}, + [4139] = {.lex_state = 89, .external_lex_state = 3}, + [4140] = {.lex_state = 89, .external_lex_state = 3}, + [4141] = {.lex_state = 89, .external_lex_state = 3}, + [4142] = {.lex_state = 4, .external_lex_state = 8}, + [4143] = {.lex_state = 89, .external_lex_state = 3}, + [4144] = {.lex_state = 89, .external_lex_state = 3}, + [4145] = {.lex_state = 89, .external_lex_state = 3}, + [4146] = {.lex_state = 89, .external_lex_state = 3}, + [4147] = {.lex_state = 89, .external_lex_state = 3}, + [4148] = {.lex_state = 89, .external_lex_state = 3}, + [4149] = {.lex_state = 89, .external_lex_state = 3}, + [4150] = {.lex_state = 38, .external_lex_state = 3}, + [4151] = {.lex_state = 89, .external_lex_state = 3}, + [4152] = {.lex_state = 89, .external_lex_state = 3}, + [4153] = {.lex_state = 89, .external_lex_state = 3}, + [4154] = {.lex_state = 89, .external_lex_state = 3}, + [4155] = {.lex_state = 89, .external_lex_state = 3}, + [4156] = {.lex_state = 89, .external_lex_state = 3}, + [4157] = {.lex_state = 89, .external_lex_state = 3}, + [4158] = {.lex_state = 89, .external_lex_state = 3}, + [4159] = {.lex_state = 89, .external_lex_state = 3}, + [4160] = {.lex_state = 89, .external_lex_state = 3}, + [4161] = {.lex_state = 89, .external_lex_state = 3}, + [4162] = {.lex_state = 4, .external_lex_state = 8}, + [4163] = {.lex_state = 89, .external_lex_state = 3}, + [4164] = {.lex_state = 89, .external_lex_state = 3}, + [4165] = {.lex_state = 89, .external_lex_state = 3}, + [4166] = {.lex_state = 89, .external_lex_state = 3}, + [4167] = {.lex_state = 89, .external_lex_state = 3}, + [4168] = {.lex_state = 89, .external_lex_state = 3}, + [4169] = {.lex_state = 89, .external_lex_state = 3}, + [4170] = {.lex_state = 10, .external_lex_state = 3}, + [4171] = {.lex_state = 4, .external_lex_state = 3}, + [4172] = {.lex_state = 89, .external_lex_state = 3}, + [4173] = {.lex_state = 89, .external_lex_state = 3}, + [4174] = {.lex_state = 89, .external_lex_state = 3}, + [4175] = {.lex_state = 89, .external_lex_state = 3}, + [4176] = {.lex_state = 1, .external_lex_state = 3}, + [4177] = {.lex_state = 89, .external_lex_state = 3}, + [4178] = {.lex_state = 89, .external_lex_state = 3}, + [4179] = {.lex_state = 89, .external_lex_state = 3}, + [4180] = {.lex_state = 38, .external_lex_state = 3}, + [4181] = {.lex_state = 89, .external_lex_state = 3}, + [4182] = {.lex_state = 89, .external_lex_state = 3}, + [4183] = {.lex_state = 38, .external_lex_state = 3}, + [4184] = {.lex_state = 89, .external_lex_state = 3}, + [4185] = {.lex_state = 10, .external_lex_state = 3}, + [4186] = {.lex_state = 89, .external_lex_state = 3}, + [4187] = {.lex_state = 89, .external_lex_state = 3}, + [4188] = {.lex_state = 4, .external_lex_state = 8}, + [4189] = {.lex_state = 10, .external_lex_state = 3}, + [4190] = {.lex_state = 89, .external_lex_state = 3}, + [4191] = {.lex_state = 89, .external_lex_state = 3}, + [4192] = {.lex_state = 89, .external_lex_state = 3}, + [4193] = {.lex_state = 89, .external_lex_state = 3}, + [4194] = {.lex_state = 89, .external_lex_state = 3}, + [4195] = {.lex_state = 89, .external_lex_state = 3}, + [4196] = {.lex_state = 4, .external_lex_state = 3}, + [4197] = {.lex_state = 38, .external_lex_state = 3}, + [4198] = {.lex_state = 89, .external_lex_state = 3}, + [4199] = {.lex_state = 38, .external_lex_state = 3}, + [4200] = {.lex_state = 89, .external_lex_state = 3}, + [4201] = {.lex_state = 4, .external_lex_state = 3}, + [4202] = {.lex_state = 4, .external_lex_state = 3}, + [4203] = {.lex_state = 4, .external_lex_state = 8}, + [4204] = {.lex_state = 89, .external_lex_state = 3}, + [4205] = {.lex_state = 89, .external_lex_state = 3}, + [4206] = {.lex_state = 89, .external_lex_state = 3}, + [4207] = {.lex_state = 89, .external_lex_state = 3}, + [4208] = {.lex_state = 10, .external_lex_state = 3}, + [4209] = {.lex_state = 89, .external_lex_state = 3}, + [4210] = {.lex_state = 89, .external_lex_state = 3}, + [4211] = {.lex_state = 89, .external_lex_state = 3}, + [4212] = {.lex_state = 89, .external_lex_state = 3}, + [4213] = {.lex_state = 89, .external_lex_state = 3}, + [4214] = {.lex_state = 89, .external_lex_state = 3}, + [4215] = {.lex_state = 89, .external_lex_state = 3}, + [4216] = {.lex_state = 89, .external_lex_state = 3}, + [4217] = {.lex_state = 89, .external_lex_state = 3}, + [4218] = {.lex_state = 89, .external_lex_state = 3}, + [4219] = {.lex_state = 10, .external_lex_state = 3}, + [4220] = {.lex_state = 89, .external_lex_state = 3}, + [4221] = {.lex_state = 89, .external_lex_state = 3}, + [4222] = {.lex_state = 89, .external_lex_state = 3}, + [4223] = {.lex_state = 89, .external_lex_state = 3}, + [4224] = {.lex_state = 89, .external_lex_state = 3}, + [4225] = {.lex_state = 89, .external_lex_state = 3}, + [4226] = {.lex_state = 89, .external_lex_state = 3}, + [4227] = {.lex_state = 89, .external_lex_state = 3}, + [4228] = {.lex_state = 10, .external_lex_state = 3}, + [4229] = {.lex_state = 89, .external_lex_state = 3}, + [4230] = {.lex_state = 89, .external_lex_state = 3}, + [4231] = {.lex_state = 10, .external_lex_state = 3}, + [4232] = {.lex_state = 10, .external_lex_state = 3}, + [4233] = {.lex_state = 89, .external_lex_state = 3}, + [4234] = {.lex_state = 38, .external_lex_state = 3}, + [4235] = {.lex_state = 10, .external_lex_state = 3}, + [4236] = {.lex_state = 89, .external_lex_state = 3}, + [4237] = {.lex_state = 10, .external_lex_state = 3}, + [4238] = {.lex_state = 10, .external_lex_state = 3}, + [4239] = {.lex_state = 89, .external_lex_state = 3}, + [4240] = {.lex_state = 4, .external_lex_state = 3}, + [4241] = {.lex_state = 89, .external_lex_state = 3}, + [4242] = {.lex_state = 89, .external_lex_state = 3}, + [4243] = {.lex_state = 10, .external_lex_state = 3}, + [4244] = {.lex_state = 10, .external_lex_state = 3}, + [4245] = {.lex_state = 89, .external_lex_state = 3}, + [4246] = {.lex_state = 89, .external_lex_state = 3}, + [4247] = {.lex_state = 89, .external_lex_state = 3}, + [4248] = {.lex_state = 89, .external_lex_state = 3}, + [4249] = {.lex_state = 10, .external_lex_state = 3}, + [4250] = {.lex_state = 89, .external_lex_state = 3}, + [4251] = {.lex_state = 89, .external_lex_state = 3}, + [4252] = {.lex_state = 89, .external_lex_state = 3}, + [4253] = {.lex_state = 10, .external_lex_state = 3}, + [4254] = {.lex_state = 89, .external_lex_state = 3}, + [4255] = {.lex_state = 89, .external_lex_state = 3}, + [4256] = {.lex_state = 89, .external_lex_state = 3}, + [4257] = {.lex_state = 89, .external_lex_state = 3}, + [4258] = {.lex_state = 89, .external_lex_state = 3}, + [4259] = {.lex_state = 89, .external_lex_state = 3}, + [4260] = {.lex_state = 10, .external_lex_state = 3}, + [4261] = {.lex_state = 89, .external_lex_state = 3}, + [4262] = {.lex_state = 10, .external_lex_state = 3}, + [4263] = {.lex_state = 1, .external_lex_state = 3}, + [4264] = {.lex_state = 89, .external_lex_state = 3}, + [4265] = {.lex_state = 89, .external_lex_state = 3}, + [4266] = {.lex_state = 4, .external_lex_state = 3}, + [4267] = {.lex_state = 10, .external_lex_state = 3}, + [4268] = {.lex_state = 89, .external_lex_state = 3}, + [4269] = {.lex_state = 89, .external_lex_state = 3}, + [4270] = {.lex_state = 89, .external_lex_state = 3}, + [4271] = {.lex_state = 10, .external_lex_state = 3}, + [4272] = {.lex_state = 10, .external_lex_state = 3}, + [4273] = {.lex_state = 89, .external_lex_state = 3}, + [4274] = {.lex_state = 10, .external_lex_state = 3}, + [4275] = {.lex_state = 89, .external_lex_state = 3}, + [4276] = {.lex_state = 89, .external_lex_state = 3}, + [4277] = {.lex_state = 89, .external_lex_state = 3}, + [4278] = {.lex_state = 4, .external_lex_state = 3}, + [4279] = {.lex_state = 10, .external_lex_state = 3}, + [4280] = {.lex_state = 10, .external_lex_state = 3}, + [4281] = {.lex_state = 10, .external_lex_state = 3}, + [4282] = {.lex_state = 89, .external_lex_state = 3}, + [4283] = {.lex_state = 10, .external_lex_state = 3}, + [4284] = {.lex_state = 10, .external_lex_state = 3}, + [4285] = {.lex_state = 10, .external_lex_state = 3}, + [4286] = {.lex_state = 89, .external_lex_state = 3}, + [4287] = {.lex_state = 89, .external_lex_state = 3}, + [4288] = {.lex_state = 89, .external_lex_state = 3}, + [4289] = {.lex_state = 10, .external_lex_state = 3}, + [4290] = {.lex_state = 10, .external_lex_state = 3}, + [4291] = {.lex_state = 89, .external_lex_state = 3}, + [4292] = {.lex_state = 89, .external_lex_state = 3}, + [4293] = {.lex_state = 1, .external_lex_state = 3}, + [4294] = {.lex_state = 1, .external_lex_state = 3}, + [4295] = {.lex_state = 89, .external_lex_state = 3}, + [4296] = {.lex_state = 89, .external_lex_state = 3}, + [4297] = {.lex_state = 89, .external_lex_state = 3}, + [4298] = {.lex_state = 89, .external_lex_state = 3}, + [4299] = {.lex_state = 10, .external_lex_state = 3}, + [4300] = {.lex_state = 89, .external_lex_state = 3}, + [4301] = {.lex_state = 1, .external_lex_state = 3}, + [4302] = {.lex_state = 4, .external_lex_state = 3}, + [4303] = {.lex_state = 89, .external_lex_state = 3}, + [4304] = {.lex_state = 89, .external_lex_state = 3}, + [4305] = {.lex_state = 89, .external_lex_state = 3}, + [4306] = {.lex_state = 89, .external_lex_state = 3}, + [4307] = {.lex_state = 89, .external_lex_state = 3}, + [4308] = {.lex_state = 89, .external_lex_state = 3}, + [4309] = {.lex_state = 38, .external_lex_state = 3}, + [4310] = {.lex_state = 89, .external_lex_state = 3}, + [4311] = {.lex_state = 89, .external_lex_state = 3}, + [4312] = {.lex_state = 89, .external_lex_state = 3}, + [4313] = {.lex_state = 89, .external_lex_state = 3}, + [4314] = {.lex_state = 10, .external_lex_state = 3}, + [4315] = {.lex_state = 89, .external_lex_state = 3}, + [4316] = {.lex_state = 89, .external_lex_state = 3}, + [4317] = {.lex_state = 89, .external_lex_state = 3}, + [4318] = {.lex_state = 89, .external_lex_state = 3}, + [4319] = {.lex_state = 89, .external_lex_state = 3}, + [4320] = {.lex_state = 89, .external_lex_state = 3}, + [4321] = {.lex_state = 89, .external_lex_state = 3}, + [4322] = {.lex_state = 89, .external_lex_state = 3}, + [4323] = {.lex_state = 89, .external_lex_state = 3}, + [4324] = {.lex_state = 89, .external_lex_state = 3}, + [4325] = {.lex_state = 38, .external_lex_state = 3}, + [4326] = {.lex_state = 89, .external_lex_state = 3}, + [4327] = {.lex_state = 10, .external_lex_state = 3}, + [4328] = {.lex_state = 89, .external_lex_state = 3}, + [4329] = {.lex_state = 89, .external_lex_state = 3}, + [4330] = {.lex_state = 4, .external_lex_state = 3}, + [4331] = {.lex_state = 89, .external_lex_state = 3}, + [4332] = {.lex_state = 89, .external_lex_state = 3}, + [4333] = {.lex_state = 89, .external_lex_state = 3}, + [4334] = {.lex_state = 4, .external_lex_state = 8}, + [4335] = {.lex_state = 89, .external_lex_state = 3}, + [4336] = {.lex_state = 89, .external_lex_state = 3}, + [4337] = {.lex_state = 89, .external_lex_state = 3}, + [4338] = {.lex_state = 89, .external_lex_state = 3}, + [4339] = {.lex_state = 89, .external_lex_state = 3}, + [4340] = {.lex_state = 89, .external_lex_state = 3}, + [4341] = {.lex_state = 89, .external_lex_state = 3}, + [4342] = {.lex_state = 89, .external_lex_state = 3}, + [4343] = {.lex_state = 10, .external_lex_state = 3}, + [4344] = {.lex_state = 89, .external_lex_state = 3}, + [4345] = {.lex_state = 4, .external_lex_state = 3}, + [4346] = {.lex_state = 89, .external_lex_state = 3}, + [4347] = {.lex_state = 1, .external_lex_state = 3}, + [4348] = {.lex_state = 4, .external_lex_state = 3}, + [4349] = {.lex_state = 89, .external_lex_state = 3}, + [4350] = {.lex_state = 89, .external_lex_state = 3}, + [4351] = {.lex_state = 89, .external_lex_state = 3}, + [4352] = {.lex_state = 89, .external_lex_state = 3}, + [4353] = {.lex_state = 10, .external_lex_state = 3}, + [4354] = {.lex_state = 89, .external_lex_state = 3}, + [4355] = {.lex_state = 89, .external_lex_state = 3}, + [4356] = {.lex_state = 89, .external_lex_state = 3}, + [4357] = {.lex_state = 89, .external_lex_state = 3}, + [4358] = {.lex_state = 89, .external_lex_state = 3}, + [4359] = {.lex_state = 89, .external_lex_state = 3}, + [4360] = {.lex_state = 89, .external_lex_state = 3}, + [4361] = {.lex_state = 89, .external_lex_state = 3}, + [4362] = {.lex_state = 89, .external_lex_state = 3}, + [4363] = {.lex_state = 89, .external_lex_state = 3}, + [4364] = {.lex_state = 89, .external_lex_state = 3}, + [4365] = {.lex_state = 89, .external_lex_state = 3}, + [4366] = {.lex_state = 89, .external_lex_state = 3}, + [4367] = {.lex_state = 89, .external_lex_state = 3}, + [4368] = {.lex_state = 89, .external_lex_state = 3}, + [4369] = {.lex_state = 89, .external_lex_state = 3}, + [4370] = {.lex_state = 89, .external_lex_state = 3}, + [4371] = {.lex_state = 89, .external_lex_state = 3}, + [4372] = {.lex_state = 89, .external_lex_state = 3}, + [4373] = {.lex_state = 89, .external_lex_state = 3}, + [4374] = {.lex_state = 89, .external_lex_state = 3}, + [4375] = {.lex_state = 89, .external_lex_state = 3}, + [4376] = {.lex_state = 89, .external_lex_state = 3}, + [4377] = {.lex_state = 89, .external_lex_state = 3}, + [4378] = {.lex_state = 89, .external_lex_state = 3}, + [4379] = {.lex_state = 89, .external_lex_state = 3}, + [4380] = {.lex_state = 89, .external_lex_state = 3}, + [4381] = {.lex_state = 89, .external_lex_state = 3}, + [4382] = {.lex_state = 89, .external_lex_state = 3}, + [4383] = {.lex_state = 89, .external_lex_state = 3}, + [4384] = {.lex_state = 10, .external_lex_state = 3}, + [4385] = {.lex_state = 89, .external_lex_state = 3}, + [4386] = {.lex_state = 89, .external_lex_state = 3}, + [4387] = {.lex_state = 89, .external_lex_state = 3}, + [4388] = {.lex_state = 89, .external_lex_state = 3}, + [4389] = {.lex_state = 89, .external_lex_state = 3}, + [4390] = {.lex_state = 89, .external_lex_state = 3}, + [4391] = {.lex_state = 89, .external_lex_state = 3}, + [4392] = {.lex_state = 89, .external_lex_state = 3}, + [4393] = {.lex_state = 89, .external_lex_state = 3}, + [4394] = {.lex_state = 89, .external_lex_state = 3}, + [4395] = {.lex_state = 89, .external_lex_state = 3}, + [4396] = {.lex_state = 89, .external_lex_state = 3}, + [4397] = {.lex_state = 89, .external_lex_state = 3}, + [4398] = {.lex_state = 89, .external_lex_state = 3}, + [4399] = {.lex_state = 10, .external_lex_state = 3}, + [4400] = {(TSStateId)(-1),}, + [4401] = {(TSStateId)(-1),}, + [4402] = {(TSStateId)(-1),}, + [4403] = {(TSStateId)(-1),}, + [4404] = {(TSStateId)(-1),}, + [4405] = {(TSStateId)(-1),}, +}; + +static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { + [1] = { + anon_sym_open, + anon_sym_include, + anon_sym_module, + anon_sym_rec, + anon_sym_type, + anon_sym_and, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_as, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + sym_true, + sym_false, + }, + [2] = { + anon_sym_rec, + anon_sym_and, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_else, + anon_sym_when, + anon_sym_as, + anon_sym_in, + anon_sym_of, + }, + [3] = { + anon_sym_open, + anon_sym_include, + anon_sym_rec, + anon_sym_and, + anon_sym_external, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_else, + anon_sym_when, + anon_sym_as, + anon_sym_in, + anon_sym_of, + }, + [4] = { + anon_sym_open, + anon_sym_include, + anon_sym_rec, + anon_sym_type, + anon_sym_and, + anon_sym_external, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_else, + anon_sym_when, + anon_sym_as, + anon_sym_in, + anon_sym_of, + }, + [5] = { + anon_sym_open, + anon_sym_include, + anon_sym_rec, + anon_sym_type, + anon_sym_and, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_else, + anon_sym_when, + anon_sym_as, + anon_sym_in, + anon_sym_of, + }, + [6] = { + anon_sym_open, + anon_sym_include, + anon_sym_rec, + anon_sym_type, + anon_sym_and, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_else, + anon_sym_when, + anon_sym_as, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + }, + [7] = { + anon_sym_open, + anon_sym_include, + anon_sym_rec, + anon_sym_type, + anon_sym_and, + anon_sym_external, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_as, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + }, + [8] = { + anon_sym_open, + anon_sym_include, + anon_sym_rec, + anon_sym_type, + anon_sym_and, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_else, + anon_sym_when, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + }, + [9] = { + anon_sym_open, + anon_sym_include, + anon_sym_and, + anon_sym_external, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_as, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + }, + [10] = { + anon_sym_open, + anon_sym_include, + anon_sym_type, + anon_sym_and, + anon_sym_external, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_as, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + }, + [11] = { + anon_sym_open, + anon_sym_include, + anon_sym_rec, + anon_sym_type, + anon_sym_and, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_when, + anon_sym_as, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + }, + [12] = { + anon_sym_open, + anon_sym_include, + anon_sym_rec, + anon_sym_and, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_as, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + sym_true, + sym_false, + }, + [13] = { + anon_sym_open, + anon_sym_include, + anon_sym_module, + anon_sym_rec, + anon_sym_type, + anon_sym_and, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + sym_true, + sym_false, + }, + [14] = { + anon_sym_open, + anon_sym_include, + anon_sym_module, + anon_sym_rec, + anon_sym_type, + anon_sym_and, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_if, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_as, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + sym_true, + sym_false, + }, + [15] = { + anon_sym_open, + anon_sym_include, + anon_sym_module, + anon_sym_rec, + anon_sym_type, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_as, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + sym_true, + sym_false, + }, + [16] = { + anon_sym_open, + anon_sym_include, + anon_sym_module, + anon_sym_rec, + anon_sym_type, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + sym_true, + sym_false, + }, + [17] = { + anon_sym_open, + anon_sym_include, + anon_sym_module, + anon_sym_rec, + anon_sym_type, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_else, + anon_sym_switch, + anon_sym_try, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + sym_true, + sym_false, + }, + [18] = { + anon_sym_open, + anon_sym_include, + anon_sym_module, + anon_sym_rec, + anon_sym_type, + anon_sym_external, + anon_sym_exception, + anon_sym_mutable, + anon_sym_let, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + sym_true, + sym_false, + }, + [19] = { + anon_sym_open, + anon_sym_include, + anon_sym_module, + anon_sym_rec, + anon_sym_type, + anon_sym_and, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_let, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_as, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + sym_true, + sym_false, + }, + [20] = { + anon_sym_open, + anon_sym_include, + anon_sym_module, + anon_sym_type, + anon_sym_and, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_as, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + sym_true, + sym_false, + }, + [21] = { + anon_sym_open, + anon_sym_include, + anon_sym_module, + anon_sym_and, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_as, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + sym_true, + sym_false, + }, + [22] = { + anon_sym_open, + anon_sym_include, + anon_sym_module, + anon_sym_rec, + anon_sym_and, + anon_sym_external, + anon_sym_exception, + anon_sym_constraint, + anon_sym_mutable, + anon_sym_let, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_when, + anon_sym_try, + anon_sym_as, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_of, + sym_true, + sym_false, + }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(0)] = { [sym_decorator] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), + [sym__identifier] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [sym_line_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_open] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), + [anon_sym_include] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), @@ -20057,6 +14642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(1), [anon_sym_catch] = ACTIONS(1), [anon_sym_as] = ACTIONS(1), + [anon_sym_assert] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), [anon_sym_PIPE_GT] = ACTIONS(1), [anon_sym_TILDE] = ACTIONS(1), @@ -20096,6 +14682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_with] = ACTIONS(1), [aux_sym_variant_identifier_token1] = ACTIONS(1), [anon_sym_BSLASH] = ACTIONS(1), + [aux_sym_type_identifier_token1] = ACTIONS(1), [anon_sym_SLASH2] = ACTIONS(1), [sym_number] = ACTIONS(1), [sym_unit_type] = ACTIONS(1), @@ -20119,114 +14706,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(1)] = { - [sym_source_file] = STATE(4710), - [sym__statement] = STATE(1547), - [sym_statement] = STATE(4606), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_source_file] = STATE(4147), + [sym__statement] = STATE(1435), + [sym_statement] = STATE(3972), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(1), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(48), - [aux_sym_extension_expression_repeat1] = STATE(4521), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(43), + [aux_sym_extension_expression_repeat1] = STATE(3691), [ts_builtin_sym_end] = ACTIONS(11), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -20241,127 +14828,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(2)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4807), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1956), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym__record_element] = STATE(4754), - [sym_record_field] = STATE(4599), - [sym__record_pun_field] = STATE(4613), - [sym__record_single_field] = STATE(4901), - [sym__record_single_pun_field] = STATE(4901), - [sym__record_field_name] = STATE(4377), - [sym_object] = STATE(1800), - [sym__object_field] = STATE(4472), - [sym_object_field] = STATE(4625), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4321), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1809), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym__record_element] = STATE(4149), + [sym_record_field] = STATE(3953), + [sym__record_pun_field] = STATE(3959), + [sym__record_single_field] = STATE(4084), + [sym__record_single_pun_field] = STATE(4084), + [sym__record_field_name] = STATE(3793), + [sym_object] = STATE(1734), + [sym__object_field] = STATE(3799), + [sym_object_field] = STATE(3971), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(2), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_spread_element] = STATE(4613), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1581), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(2181), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_spread_element] = STATE(3959), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1514), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1918), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(85), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), [anon_sym_DOT] = ACTIONS(87), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_QMARK] = ACTIONS(91), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -20376,127 +14963,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(3)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4855), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1856), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym__record_element] = STATE(4811), - [sym_record_field] = STATE(4599), - [sym__record_pun_field] = STATE(4613), - [sym__record_single_field] = STATE(4864), - [sym__record_single_pun_field] = STATE(4864), - [sym__record_field_name] = STATE(4377), - [sym_object] = STATE(1800), - [sym__object_field] = STATE(4297), - [sym_object_field] = STATE(4625), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4111), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1684), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym__record_element] = STATE(4323), + [sym_record_field] = STATE(3953), + [sym__record_pun_field] = STATE(3959), + [sym__record_single_field] = STATE(4112), + [sym__record_single_pun_field] = STATE(4112), + [sym__record_field_name] = STATE(3793), + [sym_object] = STATE(1734), + [sym__object_field] = STATE(3843), + [sym_object_field] = STATE(3971), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(3), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_spread_element] = STATE(4613), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1527), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(2181), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_spread_element] = STATE(3959), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1440), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1918), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), [anon_sym_DOT_DOT] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), [anon_sym_DOT] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_QMARK] = ACTIONS(97), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -20511,127 +15098,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(4)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4977), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1956), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym__record_element] = STATE(4672), - [sym_record_field] = STATE(4599), - [sym__record_pun_field] = STATE(4613), - [sym__record_single_field] = STATE(5007), - [sym__record_single_pun_field] = STATE(5007), - [sym__record_field_name] = STATE(4377), - [sym_object] = STATE(1800), - [sym__object_field] = STATE(4325), - [sym_object_field] = STATE(4625), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4144), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1809), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym__record_element] = STATE(4250), + [sym_record_field] = STATE(3953), + [sym__record_pun_field] = STATE(3959), + [sym__record_single_field] = STATE(4139), + [sym__record_single_pun_field] = STATE(4139), + [sym__record_field_name] = STATE(3793), + [sym_object] = STATE(1734), + [sym__object_field] = STATE(3855), + [sym_object_field] = STATE(3971), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(4), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_spread_element] = STATE(4613), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1581), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(2181), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_spread_element] = STATE(3959), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1514), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1918), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(99), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), [anon_sym_DOT_DOT] = ACTIONS(101), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), [anon_sym_DOT] = ACTIONS(101), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_QMARK] = ACTIONS(91), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -20646,127 +15233,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(5)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4855), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1956), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym__record_element] = STATE(4811), - [sym_record_field] = STATE(4599), - [sym__record_pun_field] = STATE(4613), - [sym__record_single_field] = STATE(4864), - [sym__record_single_pun_field] = STATE(4864), - [sym__record_field_name] = STATE(4377), - [sym_object] = STATE(1800), - [sym__object_field] = STATE(4297), - [sym_object_field] = STATE(4625), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4247), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1809), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym__record_element] = STATE(4250), + [sym_record_field] = STATE(3953), + [sym__record_pun_field] = STATE(3959), + [sym__record_single_field] = STATE(4139), + [sym__record_single_pun_field] = STATE(4139), + [sym__record_field_name] = STATE(3793), + [sym_object] = STATE(1734), + [sym__object_field] = STATE(3855), + [sym_object_field] = STATE(3971), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(5), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_spread_element] = STATE(4613), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1581), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(2181), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_DOT_DOT] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(95), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_spread_element] = STATE(4045), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1514), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1918), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_DOT_DOT] = ACTIONS(101), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_DOT] = ACTIONS(101), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_QMARK] = ACTIONS(91), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -20781,127 +15368,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(6)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4699), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1956), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym__record_element] = STATE(4804), - [sym_record_field] = STATE(4599), - [sym__record_pun_field] = STATE(4613), - [sym__record_single_field] = STATE(4684), - [sym__record_single_pun_field] = STATE(4684), - [sym__record_field_name] = STATE(4377), - [sym_object] = STATE(1800), - [sym__object_field] = STATE(4343), - [sym_object_field] = STATE(4625), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4355), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1809), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym__record_element] = STATE(4323), + [sym_record_field] = STATE(3953), + [sym__record_pun_field] = STATE(3959), + [sym__record_single_field] = STATE(4112), + [sym__record_single_pun_field] = STATE(4112), + [sym__record_field_name] = STATE(3793), + [sym_object] = STATE(1734), + [sym__object_field] = STATE(3843), + [sym_object_field] = STATE(3971), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(6), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_spread_element] = STATE(4581), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1581), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(2181), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(105), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_spread_element] = STATE(3959), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1514), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1918), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(105), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_DOT_DOT] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_DOT] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_QMARK] = ACTIONS(91), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -20916,127 +15503,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(7)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(5001), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1956), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym__record_element] = STATE(4811), - [sym_record_field] = STATE(4599), - [sym__record_pun_field] = STATE(4613), - [sym__record_single_field] = STATE(4864), - [sym__record_single_pun_field] = STATE(4864), - [sym__record_field_name] = STATE(4377), - [sym_object] = STATE(1800), - [sym__object_field] = STATE(4297), - [sym_object_field] = STATE(4625), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4111), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1809), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym__record_element] = STATE(4323), + [sym_record_field] = STATE(3953), + [sym__record_pun_field] = STATE(3959), + [sym__record_single_field] = STATE(4112), + [sym__record_single_pun_field] = STATE(4112), + [sym__record_field_name] = STATE(3793), + [sym_object] = STATE(1734), + [sym__object_field] = STATE(3843), + [sym_object_field] = STATE(3971), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(7), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_spread_element] = STATE(4613), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1581), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(2181), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_spread_element] = STATE(3959), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1514), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1918), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(93), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), [anon_sym_DOT_DOT] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), [anon_sym_DOT] = ACTIONS(95), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_QMARK] = ACTIONS(91), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -21051,127 +15638,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(8)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4679), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1956), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym__record_element] = STATE(4741), - [sym_record_field] = STATE(4599), - [sym__record_pun_field] = STATE(4613), - [sym__record_single_field] = STATE(4982), - [sym__record_single_pun_field] = STATE(4982), - [sym__record_field_name] = STATE(4377), - [sym_object] = STATE(1800), - [sym__object_field] = STATE(4239), - [sym_object_field] = STATE(4625), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4212), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1809), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym__record_element] = STATE(4085), + [sym_record_field] = STATE(3953), + [sym__record_pun_field] = STATE(3959), + [sym__record_single_field] = STATE(4397), + [sym__record_single_pun_field] = STATE(4397), + [sym__record_field_name] = STATE(3793), + [sym_object] = STATE(1734), + [sym__object_field] = STATE(3707), + [sym_object_field] = STATE(3971), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(8), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_spread_element] = STATE(4613), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1581), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(2181), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_DOT_DOT] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(111), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_spread_element] = STATE(3959), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1514), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1918), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_DOT_DOT] = ACTIONS(109), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_DOT] = ACTIONS(109), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_QMARK] = ACTIONS(91), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -21186,127 +15773,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(9)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4968), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1956), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym__record_element] = STATE(4837), - [sym_record_field] = STATE(4599), - [sym__record_pun_field] = STATE(4613), - [sym__record_single_field] = STATE(4775), - [sym__record_single_pun_field] = STATE(4775), - [sym__record_field_name] = STATE(4377), - [sym_object] = STATE(1800), - [sym__object_field] = STATE(4429), - [sym_object_field] = STATE(4625), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4136), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1809), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym__record_element] = STATE(4205), + [sym_record_field] = STATE(3953), + [sym__record_pun_field] = STATE(3959), + [sym__record_single_field] = STATE(4213), + [sym__record_single_pun_field] = STATE(4213), + [sym__record_field_name] = STATE(3793), + [sym_object] = STATE(1734), + [sym__object_field] = STATE(3680), + [sym_object_field] = STATE(3971), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(9), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_spread_element] = STATE(4613), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1581), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(2181), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_DOT_DOT] = ACTIONS(115), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(115), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_spread_element] = STATE(3959), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1514), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1918), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_DOT] = ACTIONS(113), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_QMARK] = ACTIONS(91), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -21321,2843 +15908,2831 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(10)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(5050), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1956), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym__record_element] = STATE(4804), - [sym_record_field] = STATE(4599), - [sym__record_pun_field] = STATE(4613), - [sym__record_single_field] = STATE(4684), - [sym__record_single_pun_field] = STATE(4684), - [sym__record_field_name] = STATE(4377), - [sym_object] = STATE(1800), - [sym__object_field] = STATE(4343), - [sym_object_field] = STATE(4625), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2264), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3407), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_item_pattern] = STATE(4350), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(10), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_spread_element] = STATE(4613), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1581), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(2181), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(91), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(123), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(11)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2599), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3797), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_item_pattern] = STATE(4751), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2264), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3407), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_item_pattern] = STATE(4350), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(11), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(12)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2599), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3797), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_item_pattern] = STATE(4751), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2264), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3407), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_item_pattern] = STATE(4350), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(12), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3908), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3431), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(13)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2599), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3797), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_item_pattern] = STATE(4751), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2282), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(13), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(187), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(185), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(14)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2599), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2276), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(14), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(15)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2658), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2289), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(15), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(187), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(185), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(16)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2632), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2264), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(16), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(123), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(17)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2634), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2276), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(17), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(193), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(18)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2599), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2276), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(18), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(123), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(19)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2606), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2264), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(19), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(195), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(183), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(20)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2631), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2253), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(20), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(21)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2654), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2283), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(21), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(191), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(22)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2656), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2250), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(22), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(191), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(23)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2599), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2277), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(23), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(187), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(193), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(24)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2246), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(24), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(193), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(25)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2662), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2264), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(25), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(195), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(26)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2657), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2276), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(26), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(193), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(195), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(27)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2658), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2264), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(27), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3253), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1703), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(28)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2658), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3864), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(3171), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1748), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__pattern] = STATE(3254), + [sym_parenthesized_pattern] = STATE(3171), + [sym_range_pattern] = STATE(3171), + [sym_or_pattern] = STATE(3171), + [sym_exception_pattern] = STATE(3171), + [sym__destructuring_pattern] = STATE(3171), + [sym__literal_pattern] = STATE(3054), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym__collection_element_pattern] = STATE(3868), + [sym_spread_pattern] = STATE(3423), + [sym_lazy_pattern] = STATE(3171), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(28), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3652), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1899), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(159), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1436), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1748), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(201), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(207), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(213), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(219), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(29)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4321), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3654), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1825), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__pattern] = STATE(3639), - [sym_parenthesized_pattern] = STATE(3654), - [sym_range_pattern] = STATE(3654), - [sym_or_pattern] = STATE(3654), - [sym_exception_pattern] = STATE(3654), - [sym__destructuring_pattern] = STATE(3654), - [sym__literal_pattern] = STATE(3603), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym__collection_element_pattern] = STATE(4406), - [sym_spread_pattern] = STATE(3826), - [sym_lazy_pattern] = STATE(3654), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4335), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(29), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1561), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1825), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_async] = ACTIONS(219), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(223), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_spread_element] = STATE(4335), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_DOT_DOT_DOT] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(30)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2676), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3654), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1825), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__pattern] = STATE(3639), - [sym_parenthesized_pattern] = STATE(3654), - [sym_range_pattern] = STATE(3654), - [sym_or_pattern] = STATE(3654), - [sym_exception_pattern] = STATE(3654), - [sym__destructuring_pattern] = STATE(3654), - [sym__literal_pattern] = STATE(3603), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym__collection_element_pattern] = STATE(4425), - [sym_spread_pattern] = STATE(3826), - [sym_lazy_pattern] = STATE(3654), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2312), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(3171), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1748), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__pattern] = STATE(3254), + [sym_parenthesized_pattern] = STATE(3171), + [sym_range_pattern] = STATE(3171), + [sym_or_pattern] = STATE(3171), + [sym_exception_pattern] = STATE(3171), + [sym__destructuring_pattern] = STATE(3171), + [sym__literal_pattern] = STATE(3054), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym__collection_element_pattern] = STATE(3836), + [sym_spread_pattern] = STATE(3423), + [sym_lazy_pattern] = STATE(3171), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(30), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4307), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1561), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1825), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(225), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_async] = ACTIONS(219), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(223), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3847), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1436), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1748), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(201), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(207), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_QMARK] = ACTIONS(213), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(219), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(31)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4721), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4322), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_type_annotation] = STATE(4322), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(31), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_spread_element] = STATE(4721), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(227), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -24172,115 +18747,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(32)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(5067), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_type_annotation] = STATE(5067), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4241), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_type_annotation] = STATE(4241), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(32), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -24295,115 +18870,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(33)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4750), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_type_annotation] = STATE(4750), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4398), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_type_annotation] = STATE(4398), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(33), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -24418,115 +18993,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(34)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4803), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_type_annotation] = STATE(4803), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4370), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_type_annotation] = STATE(4370), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(34), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -24541,115 +19116,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(35)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4779), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_type_annotation] = STATE(4779), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4304), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_type_annotation] = STATE(4304), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(35), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -24664,115 +19239,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(36)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4669), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_type_annotation] = STATE(4669), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4321), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(36), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -24787,115 +19361,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(37)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4879), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_type_annotation] = STATE(4879), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4144), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(37), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(99), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -24910,114 +19483,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(38)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4774), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4111), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(38), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(231), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(93), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -25032,114 +19605,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(39)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4679), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4136), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(39), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -25154,114 +19727,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(40)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(5019), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__one_or_more_statements] = STATE(4212), + [sym_statement] = STATE(3487), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(40), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(233), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -25276,236 +19849,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(41)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4723), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym_statement] = STATE(3972), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(41), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(235), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(41), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [ts_builtin_sym_end] = ACTIONS(227), + [sym__identifier] = ACTIONS(229), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(232), + [anon_sym_open] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(238), + [anon_sym_include] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(244), + [anon_sym_await] = ACTIONS(247), + [anon_sym_module] = ACTIONS(250), + [anon_sym_type] = ACTIONS(253), + [anon_sym_unpack] = ACTIONS(256), + [anon_sym_external] = ACTIONS(259), + [anon_sym_exception] = ACTIONS(262), + [anon_sym_export] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(268), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(274), + [anon_sym_let] = ACTIONS(277), + [anon_sym_async] = ACTIONS(280), + [anon_sym_if] = ACTIONS(283), + [anon_sym_switch] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_try] = ACTIONS(292), + [anon_sym_assert] = ACTIONS(295), + [anon_sym_lazy] = ACTIONS(298), + [anon_sym_SLASH] = ACTIONS(301), + [anon_sym_for] = ACTIONS(304), + [anon_sym_while] = ACTIONS(307), + [anon_sym_PLUS_DOT] = ACTIONS(271), + [anon_sym_DASH_DOT] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(310), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(238), + [aux_sym_variant_identifier_token1] = ACTIONS(313), + [sym__escape_identifier] = ACTIONS(229), + [sym_number] = ACTIONS(316), + [sym_true] = ACTIONS(319), + [sym_false] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(322), + [aux_sym_template_string_token1] = ACTIONS(325), + [anon_sym_SQUOTE] = ACTIONS(328), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(331), + [sym__dict_constructor] = ACTIONS(334), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(42)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4855), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__switch_body] = STATE(3646), + [sym_statement] = STATE(3514), + [sym_block] = STATE(2066), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2265), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(42), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(47), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_open] = ACTIONS(337), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_include] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(345), + [anon_sym_type] = ACTIONS(347), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -25520,114 +20091,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(43)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4807), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym_statement] = STATE(3972), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(43), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(85), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(41), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [ts_builtin_sym_end] = ACTIONS(361), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -25642,114 +20212,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(44)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4968), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym__switch_body] = STATE(3507), + [sym_statement] = STATE(3514), + [sym_block] = STATE(2066), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2265), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(44), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(47), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_open] = ACTIONS(337), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_include] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(345), + [anon_sym_type] = ACTIONS(347), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -25764,236 +20333,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(45)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(4977), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2238), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1770), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__pattern] = STATE(3387), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym__variant_pattern_parameter] = STATE(3669), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(45), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(99), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1438), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1770), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(365), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(46)] = { - [sym__statement] = STATE(1547), - [sym__one_or_more_statements] = STATE(5050), - [sym_statement] = STATE(4079), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym_statement] = STATE(3516), + [sym_block] = STATE(2001), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(46), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(41), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_open] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_include] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -26008,113 +20574,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(47)] = { - [sym__statement] = STATE(1547), - [sym__switch_body] = STATE(4120), - [sym_statement] = STATE(4121), - [sym_block] = STATE(2268), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2614), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym__statement] = STATE(1435), + [sym_statement] = STATE(3645), + [sym_block] = STATE(2066), + [sym_open_statement] = STATE(3434), + [sym_include_statement] = STATE(3434), + [sym_declaration] = STATE(3434), + [sym_module_declaration] = STATE(3366), + [sym_module_unpack] = STATE(2896), + [sym_external_declaration] = STATE(3366), + [sym_exception_declaration] = STATE(3366), + [sym_type_declaration] = STATE(3366), + [sym_let_declaration] = STATE(3366), + [sym_expression_statement] = STATE(3434), + [sym_expression] = STATE(2265), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(47), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(52), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_open] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_include] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(245), - [anon_sym_type] = ACTIONS(247), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(253), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_source_file_repeat1] = STATE(41), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_open] = ACTIONS(337), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_include] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(345), + [anon_sym_type] = ACTIONS(347), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_external] = ACTIONS(33), + [anon_sym_exception] = ACTIONS(35), + [anon_sym_export] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_let] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -26129,23666 +20694,23489 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(48)] = { - [sym__statement] = STATE(1547), - [sym_statement] = STATE(4606), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1152), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(3171), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1748), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__pattern] = STATE(2803), + [sym_parenthesized_pattern] = STATE(3171), + [sym_range_pattern] = STATE(3171), + [sym_or_pattern] = STATE(3171), + [sym_exception_pattern] = STATE(3171), + [sym__destructuring_pattern] = STATE(3171), + [sym__literal_pattern] = STATE(3054), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(3171), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(48), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(49), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [ts_builtin_sym_end] = ACTIONS(261), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1436), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1748), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(201), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(207), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(213), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(219), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(49)] = { - [sym__statement] = STATE(1547), - [sym_statement] = STATE(4606), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1152), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(2951), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1707), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__pattern] = STATE(2803), + [sym_parenthesized_pattern] = STATE(2951), + [sym_range_pattern] = STATE(2951), + [sym_or_pattern] = STATE(2951), + [sym_exception_pattern] = STATE(2951), + [sym__destructuring_pattern] = STATE(2951), + [sym__literal_pattern] = STATE(2903), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2951), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(49), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(49), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [ts_builtin_sym_end] = ACTIONS(263), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_open] = ACTIONS(268), - [anon_sym_BANG] = ACTIONS(271), - [anon_sym_include] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_await] = ACTIONS(280), - [anon_sym_module] = ACTIONS(283), - [anon_sym_type] = ACTIONS(286), - [anon_sym_unpack] = ACTIONS(289), - [anon_sym_external] = ACTIONS(292), - [anon_sym_exception] = ACTIONS(295), - [anon_sym_export] = ACTIONS(298), - [anon_sym_LT] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_DASH] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(307), - [anon_sym_let] = ACTIONS(310), - [anon_sym_async] = ACTIONS(313), - [anon_sym_if] = ACTIONS(316), - [anon_sym_switch] = ACTIONS(319), - [anon_sym_POUND] = ACTIONS(322), - [anon_sym_try] = ACTIONS(325), - [anon_sym_assert] = ACTIONS(328), - [anon_sym_lazy] = ACTIONS(331), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_for] = ACTIONS(337), - [anon_sym_while] = ACTIONS(340), - [anon_sym_PLUS_DOT] = ACTIONS(304), - [anon_sym_DASH_DOT] = ACTIONS(304), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), - [aux_sym_variant_identifier_token1] = ACTIONS(346), - [aux_sym_value_identifier_token1] = ACTIONS(349), - [sym__escape_identifier] = ACTIONS(349), - [sym_number] = ACTIONS(352), - [sym_true] = ACTIONS(355), - [sym_false] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(358), - [aux_sym_template_string_token1] = ACTIONS(361), - [anon_sym_SQUOTE] = ACTIONS(364), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(367), - [sym__dict_constructor] = ACTIONS(370), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1467), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1707), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(159), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(50)] = { - [sym__statement] = STATE(1547), - [sym__switch_body] = STATE(4131), - [sym_statement] = STATE(4121), - [sym_block] = STATE(2268), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2614), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2332), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_polyvar_type_pattern] = STATE(3348), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1822), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__pattern] = STATE(3932), + [sym_parenthesized_pattern] = STATE(3348), + [sym_range_pattern] = STATE(3348), + [sym_or_pattern] = STATE(3348), + [sym_exception_pattern] = STATE(3348), + [sym__destructuring_pattern] = STATE(3348), + [sym__literal_pattern] = STATE(3242), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(3348), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(50), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(52), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_open] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_include] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(245), - [anon_sym_type] = ACTIONS(247), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(253), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1453), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1453), + [sym_polyvar_identifier] = STATE(1434), + [sym_value_identifier] = STATE(1545), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1557), + [sym_unit] = STATE(1822), + [sym_string] = STATE(1557), + [sym_template_string] = STATE(1557), + [sym_character] = STATE(1557), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(201), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_exception] = ACTIONS(207), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(151), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(219), + [anon_sym_SLASH] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(169), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(181), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(51)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2591), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1855), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__pattern] = STATE(3825), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym__variant_pattern_parameter] = STATE(4216), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3388), + [sym_partial_application_spread] = STATE(4371), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(51), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1562), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1855), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(375), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym_uncurry] = STATE(60), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(52)] = { - [sym__statement] = STATE(1547), - [sym_statement] = STATE(4113), - [sym_block] = STATE(2268), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2614), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3377), + [sym_partial_application_spread] = STATE(4129), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(52), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(49), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_open] = ACTIONS(237), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_include] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(245), - [anon_sym_type] = ACTIONS(247), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(253), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym_uncurry] = STATE(74), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(451), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(53)] = { - [sym__statement] = STATE(1547), - [sym_statement] = STATE(4187), - [sym_block] = STATE(2196), - [sym_open_statement] = STATE(3823), - [sym_include_statement] = STATE(3823), - [sym_declaration] = STATE(3823), - [sym_module_declaration] = STATE(3766), - [sym_module_unpack] = STATE(3301), - [sym_external_declaration] = STATE(3766), - [sym_exception_declaration] = STATE(3766), - [sym_type_declaration] = STATE(3766), - [sym_let_declaration] = STATE(3766), - [sym_expression_statement] = STATE(3823), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3337), + [sym_partial_application_spread] = STATE(4078), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(53), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_source_file_repeat1] = STATE(49), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_open] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_include] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_exception] = ACTIONS(33), - [anon_sym_export] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_let] = ACTIONS(43), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym_uncurry] = STATE(65), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(453), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(54)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2712), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3851), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1972), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__pattern] = STATE(4532), - [sym_parenthesized_pattern] = STATE(3851), - [sym_range_pattern] = STATE(3851), - [sym_or_pattern] = STATE(3851), - [sym_exception_pattern] = STATE(3851), - [sym__destructuring_pattern] = STATE(3851), - [sym__literal_pattern] = STATE(3644), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3851), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3451), + [sym_partial_application_spread] = STATE(4286), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(54), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1622), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1972), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(379), - [anon_sym_async] = ACTIONS(219), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(223), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym_uncurry] = STATE(70), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(455), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(55)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1488), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3654), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1825), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__pattern] = STATE(3243), - [sym_parenthesized_pattern] = STATE(3654), - [sym_range_pattern] = STATE(3654), - [sym_or_pattern] = STATE(3654), - [sym_exception_pattern] = STATE(3654), - [sym__destructuring_pattern] = STATE(3654), - [sym__literal_pattern] = STATE(3603), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3654), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3443), + [sym_partial_application_spread] = STATE(4236), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(55), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1561), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1825), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(205), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_async] = ACTIONS(219), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(223), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym_uncurry] = STATE(57), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(457), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(56)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1488), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_polyvar_type_pattern] = STATE(3378), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1875), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__pattern] = STATE(3243), - [sym_parenthesized_pattern] = STATE(3378), - [sym_range_pattern] = STATE(3378), - [sym_or_pattern] = STATE(3378), - [sym_exception_pattern] = STATE(3378), - [sym__destructuring_pattern] = STATE(3378), - [sym__literal_pattern] = STATE(3260), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3378), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4140), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(56), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1532), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1532), - [sym_polyvar_identifier] = STATE(1558), - [sym_value_identifier] = STATE(1529), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1616), - [sym_unit] = STATE(1875), - [sym_string] = STATE(1616), - [sym_template_string] = STATE(1616), - [sym_character] = STATE(1616), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(395), - [anon_sym_async] = ACTIONS(147), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(153), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(161), - [anon_sym_SLASH] = ACTIONS(163), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(185), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(459), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(57)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(3872), - [sym_partial_application_spread] = STATE(4671), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3462), + [sym_partial_application_spread] = STATE(4311), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(57), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym_uncurry] = STATE(69), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(405), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(58)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4052), - [sym_partial_application_spread] = STATE(4961), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4303), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(58), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym_uncurry] = STATE(80), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(463), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(59)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(3769), - [sym_partial_application_spread] = STATE(4895), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4220), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(59), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym_uncurry] = STATE(64), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(465), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(60)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(3931), - [sym_partial_application_spread] = STATE(4848), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3446), + [sym_partial_application_spread] = STATE(4288), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(60), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym_uncurry] = STATE(63), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(467), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(61)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(3986), - [sym_partial_application_spread] = STATE(4827), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4245), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(61), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym_uncurry] = STATE(72), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(469), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(62)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(3929), - [sym_partial_application_spread] = STATE(4835), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4119), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(62), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym_uncurry] = STATE(84), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(471), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(63)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(3939), - [sym_partial_application_spread] = STATE(4978), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4143), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(63), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(473), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(64)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4035), - [sym_partial_application_spread] = STATE(5003), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4096), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(64), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(475), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(65)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4726), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3351), + [sym_partial_application_spread] = STATE(4215), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(65), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(66)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4731), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4338), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(66), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(479), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(67)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4928), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4090), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(67), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(68)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(5000), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4118), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(68), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(483), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(69)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(3883), - [sym_partial_application_spread] = STATE(4749), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4073), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(69), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(485), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(70)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4863), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3476), + [sym_partial_application_spread] = STATE(4375), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(70), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(487), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(71)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4899), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4310), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(71), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(489), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(72)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4002), - [sym_partial_application_spread] = STATE(4868), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4226), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(72), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(491), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(73)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4908), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4346), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(73), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(493), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(74)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4912), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3472), + [sym_partial_application_spread] = STATE(4160), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(74), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(495), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(75)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4930), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_partial_application_spread] = STATE(4166), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(75), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), [anon_sym_RPAREN] = ACTIONS(497), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(409), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(76)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4935), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3991), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(76), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(499), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(501), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(77)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(5011), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3991), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(77), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(501), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(78)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4788), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3991), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(78), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(503), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(79)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4918), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3902), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(79), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(505), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(80)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(3779), - [sym_partial_application_spread] = STATE(4758), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3877), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(80), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(507), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(81)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4746), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3811), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(81), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(82)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4945), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3991), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(82), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(511), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(83)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4703), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3991), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(83), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(513), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(84)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(3961), - [sym_partial_application_spread] = STATE(4736), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3692), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(84), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(515), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(85)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4880), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3991), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(85), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(517), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(86)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_partial_application_spread] = STATE(4934), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3991), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(86), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(519), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(87)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4632), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3991), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(87), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(88)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4632), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3991), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(88), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(89)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4632), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3991), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(89), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(90)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4249), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3864), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(90), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(91)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4321), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(91), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3965), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(555), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(92)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4632), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2312), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(92), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(559), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3847), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(93)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4632), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym__list_element] = STATE(3991), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(93), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3984), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(94)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4632), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2315), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(94), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3683), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(559), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(95)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4398), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(95), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3965), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(96)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4350), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(96), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3965), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(563), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(97)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4632), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_type_annotation] = STATE(4252), + [sym_expression] = STATE(2299), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(97), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(98)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4632), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(98), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3965), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(579), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(99)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4632), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2304), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(99), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3806), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(581), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(100)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4632), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(100), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(575), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3965), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(583), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(101)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4437), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__call_argument] = STATE(3720), + [sym_labeled_argument] = STATE(3779), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(101), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_TILDE] = ACTIONS(425), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(102)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4632), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(102), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3965), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(585), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(103)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4337), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2305), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(103), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3858), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(587), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(104)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4632), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(104), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(583), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3965), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(589), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(105)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2678), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(105), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4517), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3965), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(585), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(591), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(106)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(106), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4557), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3965), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(587), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(593), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(107)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(107), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4557), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3965), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(589), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(108)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_type_annotation] = STATE(4836), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2308), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(108), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3749), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(597), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(109)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2307), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym_array_pattern] = STATE(3567), + [sym_list_pattern] = STATE(3567), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(109), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4557), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(605), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1635), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(179), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(110)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2683), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2326), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(110), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4348), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_spread_element] = STATE(3965), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(607), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(111)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2677), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(111), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4244), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(609), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(112)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(112), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4557), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(611), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(113)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(113), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4557), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(613), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(607), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(114)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2218), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(114), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4557), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(615), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(115)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2676), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(115), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4307), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(116)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2686), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2216), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(116), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4431), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(619), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(117)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(117), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4557), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(621), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(118)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym__list_element] = STATE(4632), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(118), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4589), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(119)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2223), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(119), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4557), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(623), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(120)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(120), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4557), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(121)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2684), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2207), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(121), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4327), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(627), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(623), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(122)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__call_argument] = STATE(4363), - [sym_labeled_argument] = STATE(4335), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2208), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(122), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(123)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(123), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4557), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(629), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(627), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(124)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(124), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4557), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(629), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(125)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(125), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4557), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_RBRACK] = ACTIONS(633), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(631), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(126)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2681), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym_array_pattern] = STATE(4143), - [sym_list_pattern] = STATE(4143), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(126), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1712), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_async] = ACTIONS(219), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(183), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(127)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(127), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_spread_element] = STATE(4557), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(128)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(128), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), [anon_sym_RPAREN] = ACTIONS(637), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(129)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(129), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(643), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(639), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(130)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(130), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(645), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(131)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(131), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(647), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(643), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(132)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(132), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(645), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(133)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(133), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(647), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(134)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2591), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(134), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(653), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(135)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(135), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(655), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(651), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(136)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(136), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(657), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(653), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(137)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2357), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(137), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(659), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(138)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(138), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(657), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(139)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(139), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(659), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(140)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2561), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(140), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(665), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(661), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(141)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(141), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(663), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(142)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2319), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(142), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(669), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(665), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(143)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(143), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(671), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(667), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(144)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(144), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(673), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(145)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2302), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(145), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(665), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(146)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2731), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2238), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(146), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(671), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(147)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(958), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(147), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(148)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2340), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(148), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(681), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(149)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2274), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(149), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(150)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2560), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2275), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(150), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(151)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2331), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(151), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(687), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(152)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2595), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2395), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(152), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(153)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(153), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(691), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(154)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(154), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(693), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(155)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2389), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(155), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(695), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(156)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2213), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(156), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(157)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2257), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(157), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(158)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2565), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2270), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(158), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(701), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(159)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2271), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(159), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(703), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(160)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2553), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(160), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(161)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2273), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(161), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(707), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(162)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2280), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(162), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(163)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(163), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_QMARK] = ACTIONS(711), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(164)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2666), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1152), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(164), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_QMARK] = ACTIONS(711), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(165)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2281), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(165), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(166)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2310), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(166), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(167)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2314), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(167), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(168)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(168), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(719), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(169)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2296), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(169), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(721), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(170)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2770), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2316), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(170), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(171)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2625), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2313), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(171), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(172)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2303), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(172), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(173)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1791), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(173), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(174)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2754), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2311), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(174), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(175)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2755), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2295), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(175), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(176)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2102), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(176), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(177)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2757), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2298), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(177), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(178)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2758), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2107), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(178), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(179)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2759), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2112), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(179), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(180)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2760), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2114), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(180), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(181)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2761), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2297), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(181), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(182)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2762), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(182), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(183)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2763), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2013), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(183), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(184)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(184), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(185)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2784), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2261), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(185), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(186)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2531), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2290), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(186), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(187)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2520), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(187), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(188)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2512), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2260), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(188), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(189)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2803), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2292), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(189), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(190)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2603), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2249), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(190), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(191)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2597), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2258), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(191), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(192)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2115), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2288), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(192), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(193)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2598), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2255), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(193), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(194)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2287), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(194), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(195)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2601), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1886), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(195), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(196)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2602), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2285), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(196), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(197)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2663), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(197), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(198)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2604), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1913), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(198), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(199)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2605), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(199), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(200)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2194), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2266), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(200), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(201)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2626), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(201), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(202)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2250), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(202), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(203)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2278), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(203), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(204)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2160), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2279), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(204), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(205)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2630), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2053), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(205), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(206)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1057), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2263), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(206), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(207)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1085), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2243), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(207), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(208)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(945), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2244), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(208), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(209)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1061), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2247), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(209), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(210)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1062), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2248), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(210), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(211)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1063), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2251), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(211), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(212)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1064), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2252), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(212), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(213)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1067), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2071), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(213), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(214)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1069), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2267), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(214), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(215)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1054), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2075), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(215), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(216)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(906), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1860), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(216), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(217)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1076), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(217), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(218)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(907), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2256), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(218), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(219)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(908), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1039), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(219), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(220)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(909), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(220), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(221)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1052), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(936), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(221), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(222)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2580), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1041), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(222), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(223)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2573), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1043), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(223), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(224)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1044), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(224), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(225)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2551), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1045), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(225), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(226)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2576), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(998), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(226), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(227)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2581), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(999), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(227), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(228)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2556), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(228), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(229)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(942), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(229), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(230)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2583), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1033), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(230), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(231)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2559), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(945), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(231), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(232)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1971), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(952), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(232), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(233)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2544), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(954), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(233), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(234)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1996), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(234), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(235)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2007), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1813), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(235), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(236)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2014), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1816), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(236), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(237)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2587), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(237), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(238)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2746), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1859), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(238), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(239)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2719), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1821), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(239), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(240)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1827), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(240), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(241)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2720), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1830), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(241), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(242)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1831), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(242), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(243)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2722), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1833), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(243), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(244)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2723), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1834), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(244), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(245)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2725), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1793), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(245), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(246)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2726), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1785), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(246), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(247)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2727), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1823), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(247), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(248)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2442), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1846), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(248), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(249)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2737), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1855), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(249), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(250)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(250), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(251)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2454), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(251), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(252)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2456), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(252), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(253)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2738), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1903), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(253), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(254)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(254), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(255)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2068), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2356), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(255), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(256)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2043), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2353), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(256), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(257)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2069), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(257), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(258)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2070), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2354), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(258), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(259)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2073), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1036), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(259), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(260)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2077), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2241), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(260), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(261)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2087), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1935), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(261), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(262)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2088), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1936), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(262), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(263)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2090), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(263), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(264)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2098), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1937), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(264), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(265)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1963), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1938), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(265), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(266)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2099), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1939), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(266), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(267)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1912), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1940), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(267), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(268)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1915), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1941), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(268), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(269)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1966), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1942), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(269), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(270)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2681), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1943), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(270), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(271)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1469), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2008), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(271), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(272)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2732), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(272), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(273)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2358), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(273), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(274)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2790), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1718), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(274), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(275)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2691), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2307), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(275), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(276)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(276), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -49803,10193 +44191,10193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(277)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2694), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2300), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(277), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(278)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2793), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2320), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(278), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(279)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1046), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2321), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(279), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(280)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(280), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(281)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2116), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2205), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(281), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(282)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2117), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2101), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(282), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(283)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2082), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(283), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(284)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2118), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(284), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(285)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2120), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2083), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(285), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(286)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2121), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2084), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(286), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(287)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2122), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2085), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(287), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(288)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2123), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2086), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(288), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(289)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2124), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2087), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(289), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(290)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2125), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2088), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(290), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(291)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2688), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2089), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(291), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(292)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2214), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2090), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(292), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(293)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1791), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2091), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(293), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(294)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2716), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(886), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(294), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(295)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2589), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(295), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(296)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2276), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2016), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(296), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(297)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2729), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2017), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(297), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(298)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2730), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(298), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(299)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2103), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2018), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(299), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(300)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2104), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2019), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(300), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(301)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2742), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2020), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(301), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(302)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1486), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2021), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(302), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(303)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1488), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2022), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(303), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(304)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2404), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2023), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(304), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(305)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2407), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2024), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(305), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(306)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2193), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(306), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(307)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2025), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(307), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(308)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2409), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2185), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(308), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(309)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2410), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2180), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(309), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(310)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2028), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(310), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(311)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2412), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1152), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(311), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(312)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2413), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2038), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(312), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(313)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2414), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2039), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(313), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(314)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2053), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(314), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(315)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2423), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2040), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(315), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(316)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(942), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2041), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(316), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(317)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1026), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2042), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(317), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(318)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2043), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(318), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(319)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2127), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2044), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(319), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(320)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2045), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(320), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(321)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2128), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2046), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(321), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(322)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2062), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(322), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(323)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2130), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(323), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(324)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2131), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(939), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(324), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(325)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2133), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(941), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(325), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(326)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2136), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(936), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(326), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(327)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2137), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(950), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(327), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(328)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2521), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(953), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(328), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(329)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2143), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(956), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(329), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(330)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2523), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(960), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(330), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(331)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(961), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(331), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(332)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2152), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(966), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(332), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(333)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(967), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(333), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(334)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2503), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(968), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(334), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(335)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2507), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(335), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(336)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2203), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(336), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(337)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(337), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(338)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2327), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(338), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(339)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2504), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2328), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(339), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(340)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2518), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2355), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(340), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(341)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2047), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(341), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(342)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2496), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(342), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(343)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2529), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1998), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(343), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(755), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(759), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(757), + [anon_sym_DASH_DOT] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(344)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2399), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(344), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(345)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2528), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2329), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(345), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(346)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2283), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2048), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(346), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(347)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2198), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2336), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(347), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(348)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2115), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2337), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(348), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(349)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2199), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2400), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(349), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(350)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2200), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(350), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(351)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2201), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1152), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(351), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(352)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2202), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2154), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(352), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(353)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2203), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2162), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(353), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(354)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2204), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(354), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(355)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2205), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2143), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(355), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(356)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2235), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2124), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(356), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(357)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2236), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2125), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(357), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(358)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(925), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(358), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(359)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(926), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2127), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(359), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(360)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(945), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2148), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(360), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(361)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(927), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2152), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(361), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(362)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(928), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2153), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(362), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(363)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(929), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2161), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(363), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(364)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(930), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(364), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(365)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(931), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2429), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(365), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(366)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(932), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2430), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(366), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(367)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(933), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(367), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(368)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(934), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(368), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(369)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(935), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2407), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(369), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(370)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2018), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2372), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(370), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(371)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1967), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2373), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(371), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(372)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2374), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(372), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(373)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1976), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2376), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(373), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(374)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2003), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2377), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(374), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(375)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2033), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2378), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(375), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(376)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2011), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2379), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(376), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(377)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1921), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(377), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -60004,93 +54392,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(378)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1925), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(378), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), [anon_sym_PLUS] = ACTIONS(757), [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), [anon_sym_PLUS_DOT] = ACTIONS(757), [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), + [anon_sym_PERCENT] = ACTIONS(67), [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -60105,93 +54493,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(379)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1932), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1718), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3958), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(379), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), [anon_sym_PLUS] = ACTIONS(757), [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), [anon_sym_PLUS_DOT] = ACTIONS(757), [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), + [anon_sym_PERCENT] = ACTIONS(67), [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -60206,6456 +54594,6456 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(380)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1933), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2332), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(380), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(381)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1941), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2322), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(381), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(382)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2461), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2323), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(382), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(383)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2466), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2333), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(383), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(384)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2324), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(384), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(385)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2488), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2325), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(385), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(386)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2490), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(386), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(387)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2446), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2001), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2259), + [sym_primary_expression] = STATE(1812), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3988), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(387), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1603), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(25), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(19), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(388)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(388), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(389)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2489), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1152), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(389), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(390)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(886), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(390), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(391)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2453), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2175), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(391), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(392)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2176), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(392), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(393)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2449), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(393), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(394)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1469), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2178), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(394), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(395)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2187), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(395), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(396)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2712), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2198), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(396), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(397)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2743), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2201), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(397), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(398)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2745), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2191), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(398), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(399)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2713), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2194), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(399), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(400)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2206), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2196), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(400), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(401)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2579), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2169), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(401), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(402)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2210), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2192), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(402), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(403)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2655), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(403), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(404)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2801), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(404), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(405)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2700), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2334), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(405), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(406)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2701), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2335), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(406), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(407)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2633), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(407), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(408)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2635), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1152), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(408), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(409)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2749), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(409), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(410)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1486), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4014), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(410), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(379), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(385), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(381), + [anon_sym_DASH_DOT] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(377), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(411)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2558), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(411), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(412)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2491), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2002), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(412), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(413)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2441), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4008), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(413), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(371), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(375), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(373), + [anon_sym_DASH_DOT] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(414)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(414), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(415)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(415), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(416)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2460), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2003), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1901), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4011), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(416), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(399), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(423), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(407), + [anon_sym_DASH_DOT] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(417)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(417), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(418)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2492), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(878), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(962), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4062), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(418), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(791), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(795), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(793), + [anon_sym_DASH_DOT] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(789), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(419)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2002), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(419), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(420)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(420), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(421)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2443), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(421), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(422)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2444), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2003), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(422), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(423)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(423), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(424)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2267), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(869), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(878), + [sym_primary_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_assert_expression] = STATE(870), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(989), + [sym_jsx_element] = STATE(931), + [sym_jsx_fragment] = STATE(870), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), + [sym_mutation_expression] = STATE(870), + [sym__mutation_lvalue] = STATE(4028), + [sym_await_expression] = STATE(870), [sym_decorator] = STATE(424), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(809), + [sym_member_expression] = STATE(809), + [sym_ternary_expression] = STATE(870), + [sym_for_expression] = STATE(870), + [sym_while_expression] = STATE(870), + [sym_lazy_expression] = STATE(987), + [sym_binary_expression] = STATE(870), + [sym_coercion_expression] = STATE(870), + [sym_unary_expression] = STATE(870), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(796), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_await] = ACTIONS(681), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_assert] = ACTIONS(703), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_for] = ACTIONS(709), + [anon_sym_while] = ACTIONS(711), + [anon_sym_PLUS_DOT] = ACTIONS(689), + [anon_sym_DASH_DOT] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(677), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(425)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1918), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(425), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(426)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1794), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(1708), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4038), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(426), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1480), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_await] = ACTIONS(767), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(779), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(773), + [anon_sym_DASH_DOT] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(763), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(427)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2769), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(427), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(428)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4047), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(428), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(735), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(737), + [anon_sym_DASH_DOT] = ACTIONS(737), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(731), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(429)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2189), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(2130), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4050), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(429), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2116), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(799), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(801), + [anon_sym_DASH_DOT] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(797), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(430)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2773), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2211), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(430), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(431)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2774), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2214), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(431), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(432)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2775), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2433), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(432), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(433)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2776), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(433), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(434)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2777), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(434), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(435)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2778), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2222), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(435), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(436)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2779), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2224), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(436), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(437)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2780), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2204), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(437), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(438)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2781), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2202), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(438), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(439)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1469), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2210), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(439), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(440)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2215), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(440), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(441)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2706), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2436), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(441), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(442)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2711), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(442), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(443)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2636), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2206), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(443), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -66670,93 +61058,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(444)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(444), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -66771,295 +61159,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(445)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2309), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(445), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(446)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2740), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2209), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(446), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(447)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1784), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(447), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -67074,93 +61462,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(448)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1787), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(448), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -67175,93 +61563,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(449)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2640), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2226), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(449), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -67276,194 +61664,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(450)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2225), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(450), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(451)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2652), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), - [sym_decorator] = STATE(451), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -67477,2114 +61764,2215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, + [STATE(451)] = { + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), + [sym_decorator] = STATE(451), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), + [sym__decorator] = ACTIONS(7), + [sym__decorator_inline] = ACTIONS(9), + }, [STATE(452)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2703), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2341), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(452), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(453)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2342), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(453), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(454)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1486), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(454), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(455)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1488), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2343), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(455), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(456)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(942), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2344), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(456), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(457)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2095), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(457), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(458)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2766), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2345), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(458), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(459)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2535), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2346), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(459), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(460)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2536), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2347), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(460), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(461)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2348), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(461), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(462)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2537), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2155), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(462), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(463)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2538), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(463), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(464)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2508), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2156), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(464), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(465)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2502), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2157), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(465), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(466)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2160), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3949), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(466), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(857), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(861), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(859), + [anon_sym_DASH_DOT] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(467)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2526), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2350), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(467), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(468)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2513), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(468), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(469)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2533), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(469), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(470)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2532), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1836), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(470), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(471)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2566), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1837), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(471), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(472)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(472), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -69599,194 +63987,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(473)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2794), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1838), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(473), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(474)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(474), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -69801,93 +64189,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(475)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2112), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(475), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -69902,295 +64290,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(476)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2735), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1780), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(476), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(477)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2736), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1842), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(477), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(478)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(478), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -70205,194 +64593,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(479)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1844), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(479), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(480)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2659), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4594), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(480), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(23), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(39), - [anon_sym_DASH_DOT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(17), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -70407,7264 +64795,7264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(481)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1486), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(481), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(482)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1488), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(482), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(483)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2667), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1849), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(483), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(484)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2698), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(484), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(485)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2699), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1718), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(485), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(486)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2665), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2380), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(486), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(487)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2381), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(487), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(488)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2689), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1826), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(488), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(489)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2254), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(489), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(490)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2669), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1789), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(490), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(491)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1486), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2317), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(491), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(492)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1488), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1805), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(492), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(493)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2039), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(493), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(494)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2670), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2291), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(494), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(495)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2671), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2382), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(495), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(496)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1469), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2396), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(496), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(497)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2217), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(497), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(498)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2306), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(498), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(499)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2673), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2221), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(499), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(500)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2724), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2388), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(500), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(501)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2317), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(501), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(502)] = { - [sym_block] = STATE(2196), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2161), - [sym_primary_expression] = STATE(1973), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4590), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2133), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2318), + [sym_primary_expression] = STATE(2104), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4004), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(502), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1776), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(935), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(939), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(937), - [anon_sym_DASH_DOT] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(933), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1781), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(569), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(575), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(571), + [anon_sym_DASH_DOT] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(565), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(503)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2674), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2393), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(503), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(504)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2329), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2412), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(504), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(505)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(505), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(506)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2372), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2420), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(506), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(507)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2682), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2421), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(507), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(508)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2267), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2422), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(508), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(509)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2274), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2423), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(509), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(510)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2708), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2424), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(510), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(511)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2609), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(511), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(512)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2728), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2426), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(512), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(513)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2610), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(513), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(514)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1718), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(514), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(515)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2427), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(515), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(516)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2612), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3985), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(516), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(807), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(813), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(809), + [anon_sym_DASH_DOT] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(805), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(517)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2613), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1832), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4049), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(517), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1546), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(865), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(869), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(867), + [anon_sym_DASH_DOT] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(863), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(518)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1486), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2262), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(518), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(519)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1488), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2294), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(519), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(520)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2428), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(520), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(521)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2616), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(521), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(522)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1469), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2268), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(522), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(523)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2617), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2269), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(523), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(524)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4551), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(524), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(391), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(393), - [anon_sym_DASH_DOT] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(389), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(525)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2618), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2284), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(525), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(526)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1486), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2286), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(526), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(527)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1488), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2293), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(527), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(528)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2139), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2240), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(528), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(529)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1469), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1932), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(529), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(530)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(530), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(531)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1486), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1946), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(531), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(532)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2249), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1947), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(532), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(533)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4648), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2338), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(533), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(777), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(779), - [anon_sym_DASH_DOT] = ACTIONS(779), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(775), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(534)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1486), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2339), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(534), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(535)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(940), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1152), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(535), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(536)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2251), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2242), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4656), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2401), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(536), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(407), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(433), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(415), - [anon_sym_DASH_DOT] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(537)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1486), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2402), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(537), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(538)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1469), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(538), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(539)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(941), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(899), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4661), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2403), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(539), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(819), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(805), - [anon_sym_DASH_DOT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(793), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(540)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1486), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2404), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(540), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(541)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(541), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(542)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2371), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(542), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(543)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1469), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(543), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(544)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4629), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2408), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(544), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(739), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(747), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(743), - [anon_sym_DASH_DOT] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(737), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(545)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2249), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2409), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(545), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(546)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2181), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(546), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(547)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(940), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2410), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(547), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(548)] = { - [sym_block] = STATE(2240), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2251), - [sym_primary_expression] = STATE(1993), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_assert_expression] = STATE(2241), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2102), - [sym_jsx_element] = STATE(2261), - [sym_jsx_fragment] = STATE(2241), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), - [sym_mutation_expression] = STATE(2241), - [sym__mutation_lvalue] = STATE(4568), - [sym_await_expression] = STATE(2241), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2182), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(548), - [sym_subscript_expression] = STATE(1873), - [sym_member_expression] = STATE(1873), - [sym_ternary_expression] = STATE(2241), - [sym_for_expression] = STATE(2241), - [sym_while_expression] = STATE(2241), - [sym_lazy_expression] = STATE(2228), - [sym_binary_expression] = STATE(2241), - [sym_coercion_expression] = STATE(2241), - [sym_unary_expression] = STATE(2241), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(1737), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_await] = ACTIONS(785), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_for] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_PLUS_DOT] = ACTIONS(787), - [anon_sym_DASH_DOT] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(783), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(549)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2183), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(549), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(550)] = { - [sym_block] = STATE(937), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(941), - [sym_primary_expression] = STATE(874), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_assert_expression] = STATE(938), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(915), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(938), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_mutation_expression] = STATE(938), - [sym__mutation_lvalue] = STATE(4603), - [sym_await_expression] = STATE(938), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2184), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(550), - [sym_subscript_expression] = STATE(843), - [sym_member_expression] = STATE(843), - [sym_ternary_expression] = STATE(938), - [sym_for_expression] = STATE(938), - [sym_while_expression] = STATE(938), - [sym_lazy_expression] = STATE(953), - [sym_binary_expression] = STATE(938), - [sym_coercion_expression] = STATE(938), - [sym_unary_expression] = STATE(938), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(812), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_await] = ACTIONS(849), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_for] = ACTIONS(825), - [anon_sym_while] = ACTIONS(827), - [anon_sym_PLUS_DOT] = ACTIONS(851), - [anon_sym_DASH_DOT] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(847), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(551)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1469), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(551), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(552)] = { - [sym_block] = STATE(2084), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1905), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4601), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(552), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1672), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(755), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(757), - [anon_sym_DASH_DOT] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(753), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -77679,1002 +72067,1002 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(553)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2028), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(553), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(554)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4552), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1980), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(554), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(871), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(873), - [anon_sym_DASH_DOT] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(869), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(555)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1469), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(555), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(556)] = { - [sym_block] = STATE(2015), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2030), - [sym_primary_expression] = STATE(1879), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_assert_expression] = STATE(2020), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1934), - [sym_jsx_element] = STATE(2092), - [sym_jsx_fragment] = STATE(2020), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_mutation_expression] = STATE(2020), - [sym__mutation_lvalue] = STATE(4573), - [sym_await_expression] = STATE(2020), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1981), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(556), - [sym_subscript_expression] = STATE(1750), - [sym_member_expression] = STATE(1750), - [sym_ternary_expression] = STATE(2020), - [sym_for_expression] = STATE(2020), - [sym_while_expression] = STATE(2020), - [sym_lazy_expression] = STATE(2096), - [sym_binary_expression] = STATE(2020), - [sym_coercion_expression] = STATE(2020), - [sym_unary_expression] = STATE(2020), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1602), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(883), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_for] = ACTIONS(911), - [anon_sym_while] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(891), - [anon_sym_DASH_DOT] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(879), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(557)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1469), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1982), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(557), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(558)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4637), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1983), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(558), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(727), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(729), - [anon_sym_DASH_DOT] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(723), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(559)] = { - [sym_block] = STATE(2514), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1475), - [sym_primary_expression] = STATE(2475), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4657), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1984), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(559), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2398), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_await] = ACTIONS(943), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(945), - [anon_sym_DASH_DOT] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(941), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(560)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2785), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1985), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(560), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(561)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2791), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1986), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(561), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(562)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2607), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1987), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(562), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -78689,2315 +73077,2315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(563)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(563), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(564)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2622), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2195), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(564), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(565)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2144), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(565), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(566)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(566), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(567)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1486), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2172), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(567), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(568)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2717), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2173), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(568), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(569)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2718), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2174), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(569), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(570)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2177), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(570), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(571)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2692), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2179), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(571), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(572)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2696), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2186), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(572), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(573)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2697), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(573), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(574)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2704), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2190), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(574), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(575)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2714), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2171), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(575), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(576)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2733), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(576), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(577)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2705), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(577), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(578)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(578), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(579)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2734), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1718), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(579), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(580)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2484), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(580), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(581)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2486), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(581), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(582)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2487), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4580), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3977), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(582), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(959), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(963), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(961), - [anon_sym_DASH_DOT] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(957), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(893), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(897), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(895), + [anon_sym_DASH_DOT] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(891), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(583)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2710), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(583), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(584)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1469), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1796), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(584), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(585)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2083), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1797), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(585), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -81012,93 +75400,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(586)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2086), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(586), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -81113,93 +75501,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(587)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(587), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -81214,93 +75602,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(588)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(588), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -81315,5244 +75703,5244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(589)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2805), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1800), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(589), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(590)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2807), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1801), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(590), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(591)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2664), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1802), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(591), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(592)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2154), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(592), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(593)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2787), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1804), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(593), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(594)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2788), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(594), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(595)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2680), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1718), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(595), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(596)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2155), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1487), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4593), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(596), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(383), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(387), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(385), - [anon_sym_DASH_DOT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(381), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(597)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2783), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(597), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(598)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2810), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2383), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(598), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(599)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2685), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4063), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(599), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(821), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(825), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(823), + [anon_sym_DASH_DOT] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(819), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(600)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2809), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2384), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(600), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(601)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2814), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2351), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(601), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(602)] = { - [sym_block] = STATE(2476), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4575), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1152), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(602), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2079), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(595), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(597), - [anon_sym_DASH_DOT] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(591), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(603)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2813), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2359), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(603), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(604)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2782), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2360), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(604), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(605)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2797), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(605), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(606)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2815), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2361), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(606), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(607)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2768), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2362), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(607), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(608)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2816), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2363), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(608), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(609)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2786), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2364), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(609), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(610)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2789), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2365), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(610), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(611)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2800), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2366), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(611), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(612)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2748), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2367), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(612), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(613)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2751), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2164), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(613), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(614)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2764), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2368), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(614), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(615)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2767), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2165), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(615), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(616)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2771), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2166), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(616), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(617)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2750), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2167), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(617), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(618)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2806), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2369), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(618), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(619)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1791), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(619), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(620)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2134), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(620), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(621)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2642), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2135), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(621), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(622)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2812), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(622), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(623)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2136), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(623), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(624)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2122), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(624), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(625)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2137), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(625), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(626)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2645), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2138), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(626), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(627)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2646), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2139), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(627), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(628)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2647), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2140), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(628), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(629)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2648), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2141), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(629), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(630)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2649), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2142), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(630), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(631)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2247), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2144), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(631), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(632)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2248), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(632), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(633)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2563), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(633), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(634)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2256), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(634), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(635)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2257), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(635), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(636)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2715), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1088), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4025), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(636), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(901), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(905), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(903), + [anon_sym_DASH_DOT] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(899), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(637)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2431), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(637), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(638)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1791), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2432), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(638), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(639)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2585), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2386), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(639), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(640)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2586), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1692), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4046), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(640), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(885), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(889), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(887), + [anon_sym_DASH_DOT] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(883), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -86567,497 +80955,497 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(641)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2387), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(641), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(642)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2131), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2352), + [sym_primary_expression] = STATE(2121), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(4024), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(642), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1854), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(829), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(831), + [anon_sym_DASH_DOT] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(827), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(643)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2593), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1978), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2390), + [sym_primary_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3996), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(643), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1616), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(203), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(217), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(209), + [anon_sym_DASH_DOT] = ACTIONS(209), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(199), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(644)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2391), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(644), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(645)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2550), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(645), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -87072,93 +81460,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(646)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2554), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1718), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(646), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -87173,194 +81561,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(647)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2568), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(647), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(648)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2575), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2066), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1848), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(3993), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(648), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1582), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(343), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(351), + [anon_sym_DASH_DOT] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(339), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -87375,194 +81763,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(649)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2071), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2394), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(649), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(650)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2594), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2227), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(650), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -87577,93 +81965,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(651)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2072), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2228), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(651), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -87678,93 +82066,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(652)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2074), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(652), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -87779,93 +82167,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(653)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2076), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2229), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(653), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -87880,93 +82268,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(654)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2540), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2230), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(654), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -87981,93 +82369,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(655)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2231), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(655), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -88082,93 +82470,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(656)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2215), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2232), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(656), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -88183,93 +82571,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(657)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2216), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2233), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(657), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -88284,93 +82672,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(658)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2234), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(658), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -88385,93 +82773,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(659)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2217), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2235), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(659), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -88486,93 +82874,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(660)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2218), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(660), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -88587,93 +82975,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(661)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2219), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1718), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(661), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -88688,93 +83076,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(662)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2220), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1811), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1757), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_assert_expression] = STATE(1742), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1744), + [sym_jsx_element] = STATE(1745), + [sym_jsx_fragment] = STATE(1742), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_mutation_expression] = STATE(1742), + [sym__mutation_lvalue] = STATE(4032), + [sym_await_expression] = STATE(1742), [sym_decorator] = STATE(662), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(1556), + [sym_member_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1742), + [sym_for_expression] = STATE(1742), + [sym_while_expression] = STATE(1742), + [sym_lazy_expression] = STATE(1734), + [sym_binary_expression] = STATE(1742), + [sym_coercion_expression] = STATE(1742), + [sym_unary_expression] = STATE(1742), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1562), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_await] = ACTIONS(873), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_for] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_PLUS_DOT] = ACTIONS(875), + [anon_sym_DASH_DOT] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(871), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -88789,3325 +83177,2947 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator_inline] = ACTIONS(9), }, [STATE(663)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2221), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(663), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(664)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2222), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(664), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(665)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2223), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2434), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(665), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(666)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2108), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2435), + [sym_primary_expression] = STATE(1970), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3998), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(666), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1771), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_await] = ACTIONS(125), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(155), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(137), + [anon_sym_DASH_DOT] = ACTIONS(137), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(119), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(667)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1978), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2197), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2375), + [sym_primary_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_assert_expression] = STATE(1139), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1424), + [sym_jsx_element] = STATE(1140), + [sym_jsx_fragment] = STATE(1139), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), + [sym_mutation_expression] = STATE(1139), + [sym__mutation_lvalue] = STATE(3975), + [sym_await_expression] = STATE(1139), [sym_decorator] = STATE(667), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1058), + [sym_member_expression] = STATE(1058), + [sym_ternary_expression] = STATE(1139), + [sym_for_expression] = STATE(1139), + [sym_while_expression] = STATE(1139), + [sym_lazy_expression] = STATE(1138), + [sym_binary_expression] = STATE(1139), + [sym_coercion_expression] = STATE(1139), + [sym_unary_expression] = STATE(1139), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2068), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(503), + [anon_sym_await] = ACTIONS(843), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(849), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_PLUS_DOT] = ACTIONS(845), + [anon_sym_DASH_DOT] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(841), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(668)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1979), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(1990), + [sym_module_unpack] = STATE(2896), + [sym_expression] = STATE(2063), + [sym_primary_expression] = STATE(1810), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_assert_expression] = STATE(1991), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1975), + [sym_jsx_element] = STATE(1992), + [sym_jsx_fragment] = STATE(1991), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), + [sym_mutation_expression] = STATE(1991), + [sym__mutation_lvalue] = STATE(4069), + [sym_await_expression] = STATE(1991), [sym_decorator] = STATE(668), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1693), + [sym_member_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1991), + [sym_for_expression] = STATE(1991), + [sym_while_expression] = STATE(1991), + [sym_lazy_expression] = STATE(2060), + [sym_binary_expression] = STATE(1991), + [sym_coercion_expression] = STATE(1991), + [sym_unary_expression] = STATE(1991), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1642), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_await] = ACTIONS(747), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_assert] = ACTIONS(751), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_for] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_PLUS_DOT] = ACTIONS(749), + [anon_sym_DASH_DOT] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(67), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(745), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(669)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_closing_element] = STATE(1723), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(669), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(681), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(670)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1980), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_closing_element] = STATE(2455), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(670), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(681), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(671)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1981), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_closing_element] = STATE(1093), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(671), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(681), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(672)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1982), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_closing_element] = STATE(1696), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(672), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(669), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(673)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1983), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_closing_element] = STATE(2451), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(673), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(670), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(674)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1984), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_closing_element] = STATE(937), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(674), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(675), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(675)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1985), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_closing_element] = STATE(943), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(675), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(681), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(676)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1986), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4666), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_closing_element] = STATE(2072), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(676), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(967), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(969), - [anon_sym_DASH_DOT] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(965), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(681), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(677)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_closing_element] = STATE(2034), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(677), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(676), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(678)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1871), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4618), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_closing_element] = STATE(2692), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(678), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(951), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(955), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(953), - [anon_sym_DASH_DOT] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(949), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(680), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(679)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_closing_element] = STATE(1141), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(679), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(671), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(680)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_closing_element] = STATE(2698), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(680), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(681), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(681)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2799), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(681), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(681), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(941), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_module] = ACTIONS(950), + [anon_sym_unpack] = ACTIONS(953), + [anon_sym_LT] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_async] = ACTIONS(965), + [anon_sym_if] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(974), + [anon_sym_try] = ACTIONS(977), + [anon_sym_lazy] = ACTIONS(980), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(986), + [aux_sym_variant_identifier_token1] = ACTIONS(989), + [sym__escape_identifier] = ACTIONS(941), + [sym_number] = ACTIONS(992), + [sym_true] = ACTIONS(995), + [sym_false] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(998), + [aux_sym_template_string_token1] = ACTIONS(1001), + [anon_sym_SQUOTE] = ACTIONS(1004), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1007), + [sym__dict_constructor] = ACTIONS(1010), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(682)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2753), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(682), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(681), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(683)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2756), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(683), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(682), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(684)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2693), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(684), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(681), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(685)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2772), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(685), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(686), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(1019), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(686)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2709), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(686), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(681), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(687)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2795), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(687), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(681), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(688)] = { - [sym_block] = STATE(2477), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2690), - [sym_primary_expression] = STATE(2417), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4633), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(688), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2094), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(857), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(859), - [anon_sym_DASH_DOT] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(855), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(687), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(689)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(689), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(684), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(1027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(690)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(690), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(691), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(691)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(2457), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3224), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2450), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2450), + [sym_jsx_element] = STATE(2438), + [sym_jsx_fragment] = STATE(2460), + [sym__jsx_child] = STATE(2463), + [sym_jsx_opening_element] = STATE(673), + [sym_jsx_self_closing_element] = STATE(2438), [sym_decorator] = STATE(691), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2450), + [sym_spread_element] = STATE(2460), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3895), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2385), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(2450), + [sym_template_string] = STATE(2450), + [sym_character] = STATE(2450), + [sym__reserved_identifier] = STATE(2398), + [aux_sym_jsx_element_repeat1] = STATE(681), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(907), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(919), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(907), + [sym_number] = ACTIONS(923), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(925), + [aux_sym_template_string_token1] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(929), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(692)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2752), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(4023), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(2624), + [sym_parenthesized_expression] = STATE(2733), + [sym_value_identifier_path] = STATE(2733), + [sym_function] = STATE(2733), + [sym_record] = STATE(2733), + [sym_object] = STATE(2733), + [sym_tuple] = STATE(2733), + [sym_array] = STATE(2733), + [sym_list] = STATE(2733), + [sym_dict] = STATE(2733), + [sym_if_expression] = STATE(2733), + [sym_switch_expression] = STATE(2733), + [sym_try_expression] = STATE(2733), + [sym_call_expression] = STATE(2733), + [sym_pipe_expression] = STATE(2733), + [sym_module_pack] = STATE(2733), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2733), + [sym_jsx_element] = STATE(2691), + [sym_jsx_expression] = STATE(2963), + [sym_jsx_opening_element] = STATE(678), + [sym_jsx_self_closing_element] = STATE(2691), + [sym__jsx_attribute_value] = STATE(2993), [sym_decorator] = STATE(692), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(2733), + [sym_member_expression] = STATE(2733), + [sym_lazy_expression] = STATE(2733), + [sym_extension_expression] = STATE(2733), + [sym_variant] = STATE(2733), + [sym_nested_variant_identifier] = STATE(2619), + [sym_polyvar] = STATE(2733), + [sym_module_primary_expression] = STATE(3767), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2619), + [sym_polyvar_identifier] = STATE(2623), + [sym_value_identifier] = STATE(2620), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2733), + [sym_unit] = STATE(2733), + [sym_string] = STATE(2733), + [sym_template_string] = STATE(2733), + [sym_character] = STATE(2733), + [sym__reserved_identifier] = STATE(2572), + [aux_sym_extension_expression_repeat1] = STATE(3850), + [sym__identifier] = ACTIONS(1033), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_unpack] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_switch] = ACTIONS(1053), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_try] = ACTIONS(1057), + [anon_sym_lazy] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(1063), + [sym__escape_identifier] = ACTIONS(1033), + [sym_number] = ACTIONS(1065), + [sym_true] = ACTIONS(1067), + [sym_false] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1069), + [aux_sym_template_string_token1] = ACTIONS(1071), + [anon_sym_SQUOTE] = ACTIONS(1073), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(1075), + [sym__dict_constructor] = ACTIONS(1077), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(693)] = { - [sym_block] = STATE(2268), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(2075), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4605), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(4023), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(2624), + [sym_parenthesized_expression] = STATE(2733), + [sym_value_identifier_path] = STATE(2733), + [sym_function] = STATE(2733), + [sym_record] = STATE(2733), + [sym_object] = STATE(2733), + [sym_tuple] = STATE(2733), + [sym_array] = STATE(2733), + [sym_list] = STATE(2733), + [sym_dict] = STATE(2733), + [sym_if_expression] = STATE(2733), + [sym_switch_expression] = STATE(2733), + [sym_try_expression] = STATE(2733), + [sym_call_expression] = STATE(2733), + [sym_pipe_expression] = STATE(2733), + [sym_module_pack] = STATE(2733), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2733), + [sym_jsx_element] = STATE(2691), + [sym_jsx_expression] = STATE(2963), + [sym_jsx_opening_element] = STATE(678), + [sym_jsx_self_closing_element] = STATE(2691), + [sym__jsx_attribute_value] = STATE(2978), [sym_decorator] = STATE(693), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1765), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(243), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(257), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(251), - [anon_sym_DASH_DOT] = ACTIONS(251), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(239), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [sym_subscript_expression] = STATE(2733), + [sym_member_expression] = STATE(2733), + [sym_lazy_expression] = STATE(2733), + [sym_extension_expression] = STATE(2733), + [sym_variant] = STATE(2733), + [sym_nested_variant_identifier] = STATE(2619), + [sym_polyvar] = STATE(2733), + [sym_module_primary_expression] = STATE(3767), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2619), + [sym_polyvar_identifier] = STATE(2623), + [sym_value_identifier] = STATE(2620), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2733), + [sym_unit] = STATE(2733), + [sym_string] = STATE(2733), + [sym_template_string] = STATE(2733), + [sym_character] = STATE(2733), + [sym__reserved_identifier] = STATE(2572), + [aux_sym_extension_expression_repeat1] = STATE(3850), + [sym__identifier] = ACTIONS(1033), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_unpack] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1079), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_switch] = ACTIONS(1053), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_try] = ACTIONS(1057), + [anon_sym_lazy] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(1063), + [sym__escape_identifier] = ACTIONS(1033), + [sym_number] = ACTIONS(1065), + [sym_true] = ACTIONS(1067), + [sym_false] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1069), + [aux_sym_template_string_token1] = ACTIONS(1071), + [anon_sym_SQUOTE] = ACTIONS(1073), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym__list_constructor] = ACTIONS(1075), + [sym__dict_constructor] = ACTIONS(1077), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(694)] = { - [sym_block] = STATE(2419), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2765), - [sym_primary_expression] = STATE(2265), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4597), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(4023), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(2624), + [sym_parenthesized_expression] = STATE(2733), + [sym_value_identifier_path] = STATE(2733), + [sym_function] = STATE(2733), + [sym_record] = STATE(2733), + [sym_object] = STATE(2733), + [sym_tuple] = STATE(2733), + [sym_array] = STATE(2733), + [sym_list] = STATE(2733), + [sym_dict] = STATE(2733), + [sym_if_expression] = STATE(2733), + [sym_switch_expression] = STATE(2733), + [sym_try_expression] = STATE(2733), + [sym_call_expression] = STATE(2733), + [sym_pipe_expression] = STATE(2733), + [sym_module_pack] = STATE(2733), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2733), + [sym_jsx_element] = STATE(2691), + [sym_jsx_expression] = STATE(2963), + [sym_jsx_opening_element] = STATE(678), + [sym_jsx_self_closing_element] = STATE(2691), + [sym__jsx_attribute_value] = STATE(3003), [sym_decorator] = STATE(694), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1907), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_await] = ACTIONS(127), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(157), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(139), - [anon_sym_DASH_DOT] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(121), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(2733), + [sym_member_expression] = STATE(2733), + [sym_lazy_expression] = STATE(2733), + [sym_extension_expression] = STATE(2733), + [sym_variant] = STATE(2733), + [sym_nested_variant_identifier] = STATE(2619), + [sym_polyvar] = STATE(2733), + [sym_module_primary_expression] = STATE(3767), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2619), + [sym_polyvar_identifier] = STATE(2623), + [sym_value_identifier] = STATE(2620), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2733), + [sym_unit] = STATE(2733), + [sym_string] = STATE(2733), + [sym_template_string] = STATE(2733), + [sym_character] = STATE(2733), + [sym__reserved_identifier] = STATE(2572), + [aux_sym_extension_expression_repeat1] = STATE(3850), + [sym__identifier] = ACTIONS(1033), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_unpack] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_switch] = ACTIONS(1053), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_try] = ACTIONS(1057), + [anon_sym_lazy] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(1063), + [sym__escape_identifier] = ACTIONS(1033), + [sym_number] = ACTIONS(1065), + [sym_true] = ACTIONS(1067), + [sym_false] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1069), + [aux_sym_template_string_token1] = ACTIONS(1071), + [anon_sym_SQUOTE] = ACTIONS(1073), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(1075), + [sym__dict_constructor] = ACTIONS(1077), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(695)] = { - [sym_block] = STATE(1954), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1858), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_assert_expression] = STATE(1865), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1902), - [sym_jsx_element] = STATE(1786), - [sym_jsx_fragment] = STATE(1865), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_mutation_expression] = STATE(1865), - [sym__mutation_lvalue] = STATE(4564), - [sym_await_expression] = STATE(1865), + [sym_block] = STATE(4023), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(2624), + [sym_parenthesized_expression] = STATE(2733), + [sym_value_identifier_path] = STATE(2733), + [sym_function] = STATE(2733), + [sym_record] = STATE(2733), + [sym_object] = STATE(2733), + [sym_tuple] = STATE(2733), + [sym_array] = STATE(2733), + [sym_list] = STATE(2733), + [sym_dict] = STATE(2733), + [sym_if_expression] = STATE(2733), + [sym_switch_expression] = STATE(2733), + [sym_try_expression] = STATE(2733), + [sym_call_expression] = STATE(2733), + [sym_pipe_expression] = STATE(2733), + [sym_module_pack] = STATE(2733), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2733), + [sym_jsx_element] = STATE(2691), + [sym_jsx_expression] = STATE(2963), + [sym_jsx_opening_element] = STATE(678), + [sym_jsx_self_closing_element] = STATE(2691), + [sym__jsx_attribute_value] = STATE(2978), [sym_decorator] = STATE(695), - [sym_subscript_expression] = STATE(1585), - [sym_member_expression] = STATE(1585), - [sym_ternary_expression] = STATE(1865), - [sym_for_expression] = STATE(1865), - [sym_while_expression] = STATE(1865), - [sym_lazy_expression] = STATE(1800), - [sym_binary_expression] = STATE(1865), - [sym_coercion_expression] = STATE(1865), - [sym_unary_expression] = STATE(1865), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1626), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_await] = ACTIONS(979), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(983), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_for] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_PLUS_DOT] = ACTIONS(981), - [anon_sym_DASH_DOT] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(977), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), + [sym_subscript_expression] = STATE(2733), + [sym_member_expression] = STATE(2733), + [sym_lazy_expression] = STATE(2733), + [sym_extension_expression] = STATE(2733), + [sym_variant] = STATE(2733), + [sym_nested_variant_identifier] = STATE(2619), + [sym_polyvar] = STATE(2733), + [sym_module_primary_expression] = STATE(3767), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2619), + [sym_polyvar_identifier] = STATE(2623), + [sym_value_identifier] = STATE(2620), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2733), + [sym_unit] = STATE(2733), + [sym_string] = STATE(2733), + [sym_template_string] = STATE(2733), + [sym_character] = STATE(2733), + [sym__reserved_identifier] = STATE(2572), + [aux_sym_extension_expression_repeat1] = STATE(3850), + [sym__identifier] = ACTIONS(1033), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_unpack] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_switch] = ACTIONS(1053), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_try] = ACTIONS(1057), + [anon_sym_lazy] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(1063), + [sym__escape_identifier] = ACTIONS(1033), + [sym_number] = ACTIONS(1065), + [sym_true] = ACTIONS(1067), + [sym_false] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1069), + [aux_sym_template_string_token1] = ACTIONS(1071), + [anon_sym_SQUOTE] = ACTIONS(1073), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1075), + [sym__dict_constructor] = ACTIONS(1077), + [sym__decorator] = ACTIONS(7), + [sym__decorator_inline] = ACTIONS(9), + }, + [STATE(696)] = { + [sym_block] = STATE(1766), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(1653), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4151), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1734), + [sym_jsx_element] = STATE(1745), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), + [sym_decorator] = STATE(696), + [sym_subscript_expression] = STATE(1734), + [sym_member_expression] = STATE(1734), + [sym_lazy_expression] = STATE(1734), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1828), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1081), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_lazy] = ACTIONS(59), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), [sym_number] = ACTIONS(71), [sym_true] = ACTIONS(73), [sym_false] = ACTIONS(73), @@ -92121,55532 +86131,3832 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, - [STATE(696)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2804), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), - [sym_decorator] = STATE(696), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, [STATE(697)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2808), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1766), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(1653), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4305), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1734), + [sym_jsx_element] = STATE(1745), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), [sym_decorator] = STATE(697), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), + [sym_subscript_expression] = STATE(1734), + [sym_member_expression] = STATE(1734), + [sym_lazy_expression] = STATE(1734), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1695), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1081), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(811), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_lazy] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(698)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2747), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1146), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(1416), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1138), + [sym_jsx_element] = STATE(1140), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), [sym_decorator] = STATE(698), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(1138), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1795), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(509), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(699)] = { - [sym_block] = STATE(2530), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2811), - [sym_primary_expression] = STATE(2493), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4634), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1868), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(1858), + [sym_parenthesized_expression] = STATE(2060), + [sym_value_identifier_path] = STATE(2060), + [sym_function] = STATE(2060), + [sym_record] = STATE(2060), + [sym_object] = STATE(2060), + [sym_tuple] = STATE(2060), + [sym_array] = STATE(2060), + [sym_list] = STATE(2060), + [sym_dict] = STATE(2060), + [sym_if_expression] = STATE(2060), + [sym_switch_expression] = STATE(2060), + [sym_try_expression] = STATE(2060), + [sym_call_expression] = STATE(2060), + [sym_pipe_expression] = STATE(2060), + [sym_module_pack] = STATE(2060), + [sym__definition_signature] = STATE(4145), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2060), + [sym_jsx_element] = STATE(1992), + [sym_jsx_opening_element] = STATE(677), + [sym_jsx_self_closing_element] = STATE(1992), [sym_decorator] = STATE(699), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2230), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(763), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(765), - [anon_sym_DASH_DOT] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(761), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(2060), + [sym_member_expression] = STATE(2060), + [sym_lazy_expression] = STATE(2060), + [sym_extension_expression] = STATE(2060), + [sym_variant] = STATE(2060), + [sym_nested_variant_identifier] = STATE(1851), + [sym_polyvar] = STATE(2060), + [sym_module_primary_expression] = STATE(3849), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1851), + [sym_polyvar_identifier] = STATE(1852), + [sym_value_identifier] = STATE(1792), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2060), + [sym_unit] = STATE(2060), + [sym_string] = STATE(2060), + [sym_template_string] = STATE(2060), + [sym_character] = STATE(2060), + [sym__reserved_identifier] = STATE(1638), + [aux_sym_extension_expression_repeat1] = STATE(3901), + [sym__identifier] = ACTIONS(389), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_module] = ACTIONS(401), + [anon_sym_unpack] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_try] = ACTIONS(421), + [anon_sym_lazy] = ACTIONS(427), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(435), + [sym__escape_identifier] = ACTIONS(389), + [sym_number] = ACTIONS(437), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [aux_sym_template_string_token1] = ACTIONS(443), + [anon_sym_SQUOTE] = ACTIONS(445), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(447), + [sym__dict_constructor] = ACTIONS(449), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(700)] = { - [sym_block] = STATE(2226), - [sym_module_unpack] = STATE(3301), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(2089), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_assert_expression] = STATE(1454), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1455), - [sym_jsx_element] = STATE(1456), - [sym_jsx_fragment] = STATE(1454), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_mutation_expression] = STATE(1454), - [sym__mutation_lvalue] = STATE(4644), - [sym_await_expression] = STATE(1454), + [sym_block] = STATE(1146), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(1416), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4182), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1138), + [sym_jsx_element] = STATE(1140), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), [sym_decorator] = STATE(700), - [sym_subscript_expression] = STATE(1205), - [sym_member_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1454), - [sym_for_expression] = STATE(1454), - [sym_while_expression] = STATE(1454), - [sym_lazy_expression] = STATE(1450), - [sym_binary_expression] = STATE(1454), - [sym_coercion_expression] = STATE(1454), - [sym_unary_expression] = STATE(1454), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(1678), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(207), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_assert] = ACTIONS(221), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(167), - [anon_sym_PLUS_DOT] = ACTIONS(213), - [anon_sym_DASH_DOT] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(203), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(1138), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2132), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(847), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(701)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(2165), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_block] = STATE(1146), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(1416), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1138), + [sym_jsx_element] = STATE(1140), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), [sym_decorator] = STATE(701), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(1138), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1795), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(702)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(2110), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_block] = STATE(1766), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(1653), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4270), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1734), + [sym_jsx_element] = STATE(1745), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), [sym_decorator] = STATE(702), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(701), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), + [sym_subscript_expression] = STATE(1734), + [sym_member_expression] = STATE(1734), + [sym_lazy_expression] = STATE(1734), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1857), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1081), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(355), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_lazy] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(703)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(1859), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_block] = STATE(868), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(829), + [sym_parenthesized_expression] = STATE(987), + [sym_value_identifier_path] = STATE(987), + [sym_function] = STATE(987), + [sym_record] = STATE(987), + [sym_object] = STATE(987), + [sym_tuple] = STATE(987), + [sym_array] = STATE(987), + [sym_list] = STATE(987), + [sym_dict] = STATE(987), + [sym_if_expression] = STATE(987), + [sym_switch_expression] = STATE(987), + [sym_try_expression] = STATE(987), + [sym_call_expression] = STATE(987), + [sym_pipe_expression] = STATE(987), + [sym_module_pack] = STATE(987), + [sym__definition_signature] = STATE(4127), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(987), + [sym_jsx_element] = STATE(931), + [sym_jsx_opening_element] = STATE(674), + [sym_jsx_self_closing_element] = STATE(931), [sym_decorator] = STATE(703), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(707), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(987), + [sym_member_expression] = STATE(987), + [sym_lazy_expression] = STATE(987), + [sym_extension_expression] = STATE(987), + [sym_variant] = STATE(987), + [sym_nested_variant_identifier] = STATE(837), + [sym_polyvar] = STATE(987), + [sym_module_primary_expression] = STATE(3853), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(837), + [sym_polyvar_identifier] = STATE(830), + [sym_value_identifier] = STATE(834), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(987), + [sym_unit] = STATE(987), + [sym_string] = STATE(987), + [sym_template_string] = STATE(987), + [sym_character] = STATE(987), + [sym__reserved_identifier] = STATE(802), + [aux_sym_extension_expression_repeat1] = STATE(3676), + [sym__identifier] = ACTIONS(673), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_module] = ACTIONS(683), + [anon_sym_unpack] = ACTIONS(685), + [anon_sym_LT] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_async] = ACTIONS(693), + [anon_sym_if] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_try] = ACTIONS(701), + [anon_sym_lazy] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(713), + [sym__escape_identifier] = ACTIONS(673), + [sym_number] = ACTIONS(715), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [aux_sym_template_string_token1] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(723), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(725), + [sym__dict_constructor] = ACTIONS(727), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(704)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(1470), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_block] = STATE(1146), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(1416), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4349), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1138), + [sym_jsx_element] = STATE(1140), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), [sym_decorator] = STATE(704), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(1138), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2199), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(739), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(705)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(891), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_block] = STATE(1766), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(1653), + [sym_parenthesized_expression] = STATE(1734), + [sym_value_identifier_path] = STATE(1734), + [sym_function] = STATE(1734), + [sym_record] = STATE(1734), + [sym_object] = STATE(1734), + [sym_tuple] = STATE(1734), + [sym_array] = STATE(1734), + [sym_list] = STATE(1734), + [sym_dict] = STATE(1734), + [sym_if_expression] = STATE(1734), + [sym_switch_expression] = STATE(1734), + [sym_try_expression] = STATE(1734), + [sym_call_expression] = STATE(1734), + [sym_pipe_expression] = STATE(1734), + [sym_module_pack] = STATE(1734), + [sym__definition_signature] = STATE(4082), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1734), + [sym_jsx_element] = STATE(1745), + [sym_jsx_opening_element] = STATE(672), + [sym_jsx_self_closing_element] = STATE(1745), [sym_decorator] = STATE(705), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(706), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), + [sym_subscript_expression] = STATE(1734), + [sym_member_expression] = STATE(1734), + [sym_lazy_expression] = STATE(1734), + [sym_extension_expression] = STATE(1734), + [sym_variant] = STATE(1734), + [sym_nested_variant_identifier] = STATE(1641), + [sym_polyvar] = STATE(1734), + [sym_module_primary_expression] = STATE(3786), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1641), + [sym_polyvar_identifier] = STATE(1655), + [sym_value_identifier] = STATE(1680), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1734), + [sym_unit] = STATE(1734), + [sym_string] = STATE(1734), + [sym_template_string] = STATE(1734), + [sym_character] = STATE(1734), + [sym__reserved_identifier] = STATE(1408), + [aux_sym_extension_expression_repeat1] = STATE(3691), + [sym__identifier] = ACTIONS(13), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1081), + [anon_sym_module] = ACTIONS(729), + [anon_sym_unpack] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_async] = ACTIONS(877), + [anon_sym_if] = ACTIONS(49), + [anon_sym_switch] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_lazy] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(817), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(69), + [sym__escape_identifier] = ACTIONS(13), + [sym_number] = ACTIONS(71), + [sym_true] = ACTIONS(73), + [sym_false] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [aux_sym_template_string_token1] = ACTIONS(77), + [anon_sym_SQUOTE] = ACTIONS(79), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(81), + [sym__dict_constructor] = ACTIONS(83), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(706)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(893), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_block] = STATE(1146), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(1416), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4094), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1138), + [sym_jsx_element] = STATE(1140), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), [sym_decorator] = STATE(706), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(1138), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2007), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(707)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(1878), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_block] = STATE(4017), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3264), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2966), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(2966), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(2966), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1138), + [sym_jsx_element] = STATE(1140), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), [sym_decorator] = STATE(707), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2966), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(3267), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2934), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(708)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(2817), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_block] = STATE(1146), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(1416), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4184), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1138), + [sym_jsx_element] = STATE(1140), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), [sym_decorator] = STATE(708), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(709), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(1138), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2093), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(833), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(709)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(2827), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_block] = STATE(2634), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(2617), + [sym_parenthesized_expression] = STATE(2733), + [sym_value_identifier_path] = STATE(2733), + [sym_function] = STATE(2733), + [sym_record] = STATE(2733), + [sym_object] = STATE(2733), + [sym_tuple] = STATE(2733), + [sym_array] = STATE(2733), + [sym_list] = STATE(2733), + [sym_dict] = STATE(2733), + [sym_if_expression] = STATE(2733), + [sym_switch_expression] = STATE(2733), + [sym_try_expression] = STATE(2733), + [sym_call_expression] = STATE(2733), + [sym_pipe_expression] = STATE(2733), + [sym_module_pack] = STATE(2733), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(2733), + [sym_jsx_element] = STATE(2691), + [sym_jsx_opening_element] = STATE(678), + [sym_jsx_self_closing_element] = STATE(2691), [sym_decorator] = STATE(709), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), + [sym_subscript_expression] = STATE(2733), + [sym_member_expression] = STATE(2733), + [sym_lazy_expression] = STATE(2733), + [sym_extension_expression] = STATE(2733), + [sym_variant] = STATE(2733), + [sym_nested_variant_identifier] = STATE(2619), + [sym_polyvar] = STATE(2733), + [sym_module_primary_expression] = STATE(3767), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2619), + [sym_polyvar_identifier] = STATE(2623), + [sym_value_identifier] = STATE(2620), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2733), + [sym_unit] = STATE(2733), + [sym_string] = STATE(2733), + [sym_template_string] = STATE(2733), + [sym_character] = STATE(2733), + [sym__reserved_identifier] = STATE(2572), + [aux_sym_extension_expression_repeat1] = STATE(3850), + [sym__identifier] = ACTIONS(1033), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_unpack] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_switch] = ACTIONS(1053), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_try] = ACTIONS(1057), + [anon_sym_lazy] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(1063), + [sym__escape_identifier] = ACTIONS(1033), + [sym_number] = ACTIONS(1065), + [sym_true] = ACTIONS(1067), + [sym_false] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1069), + [aux_sym_template_string_token1] = ACTIONS(1071), + [anon_sym_SQUOTE] = ACTIONS(1073), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__list_constructor] = ACTIONS(1075), + [sym__dict_constructor] = ACTIONS(1077), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(710)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(3054), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_block] = STATE(1146), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(1416), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4117), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1138), + [sym_jsx_element] = STATE(1140), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), [sym_decorator] = STATE(710), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(711), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(1138), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3675), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2113), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(573), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(367), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(711)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(3071), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_block] = STATE(4017), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(3264), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(2973), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(2973), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(2973), + [sym__definition_signature] = STATE(4133), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1138), + [sym_jsx_element] = STATE(1140), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), [sym_decorator] = STATE(711), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(2973), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(3162), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3835), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(2944), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1053), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(131), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(215), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(167), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(517), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(712)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(1938), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_block] = STATE(1146), + [sym_module_unpack] = STATE(2896), + [sym_primary_expression] = STATE(1755), + [sym_parenthesized_expression] = STATE(1138), + [sym_value_identifier_path] = STATE(1138), + [sym_function] = STATE(1138), + [sym_record] = STATE(1138), + [sym_object] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_array] = STATE(1138), + [sym_list] = STATE(1138), + [sym_dict] = STATE(1138), + [sym_if_expression] = STATE(1138), + [sym_switch_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_pipe_expression] = STATE(1138), + [sym_module_pack] = STATE(1138), + [sym__definition_signature] = STATE(4115), + [sym_formal_parameters] = STATE(3888), + [sym__jsx_element] = STATE(1138), + [sym_jsx_element] = STATE(1140), + [sym_jsx_opening_element] = STATE(679), + [sym_jsx_self_closing_element] = STATE(1140), [sym_decorator] = STATE(712), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(713), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_subscript_expression] = STATE(1138), + [sym_member_expression] = STATE(1138), + [sym_lazy_expression] = STATE(1138), + [sym_extension_expression] = STATE(1138), + [sym_variant] = STATE(1138), + [sym_nested_variant_identifier] = STATE(1074), + [sym_polyvar] = STATE(1138), + [sym_module_primary_expression] = STATE(3831), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(1074), + [sym_polyvar_identifier] = STATE(1082), + [sym_value_identifier] = STATE(1735), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(1138), + [sym_unit] = STATE(1138), + [sym_string] = STATE(1138), + [sym_template_string] = STATE(1138), + [sym_character] = STATE(1138), + [sym__reserved_identifier] = STATE(1515), + [aux_sym_extension_expression_repeat1] = STATE(3837), + [sym__identifier] = ACTIONS(761), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_module] = ACTIONS(769), + [anon_sym_unpack] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_async] = ACTIONS(775), + [anon_sym_if] = ACTIONS(147), + [anon_sym_switch] = ACTIONS(149), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_try] = ACTIONS(153), + [anon_sym_lazy] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_PERCENT] = ACTIONS(67), + [aux_sym_variant_identifier_token1] = ACTIONS(785), + [sym__escape_identifier] = ACTIONS(761), + [sym_number] = ACTIONS(513), + [sym_true] = ACTIONS(515), + [sym_false] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(787), + [aux_sym_template_string_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(521), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(523), + [sym__dict_constructor] = ACTIONS(525), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(713)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(1975), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_module_unpack] = STATE(2896), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_module_pack] = STATE(2949), + [sym_parameter] = STATE(4068), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), [sym_decorator] = STATE(713), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_nested_variant_identifier] = STATE(2703), + [sym_module_primary_expression] = STATE(3728), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2703), + [sym_polyvar_identifier] = STATE(2705), + [sym_value_identifier] = STATE(2949), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2781), + [sym_unit] = STATE(3199), + [sym_string] = STATE(2781), + [sym_template_string] = STATE(2781), + [sym_character] = STATE(2781), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_module] = ACTIONS(205), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(1109), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_lazy] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(161), + [aux_sym_variant_identifier_token1] = ACTIONS(1121), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(1123), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1127), + [sym__dict_constructor] = ACTIONS(1129), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(714)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_closing_element] = STATE(1495), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_module_unpack] = STATE(2896), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_module_pack] = STATE(2949), + [sym_parameter] = STATE(3821), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), [sym_decorator] = STATE(714), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(704), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_nested_variant_identifier] = STATE(2703), + [sym_module_primary_expression] = STATE(3728), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2703), + [sym_polyvar_identifier] = STATE(2705), + [sym_value_identifier] = STATE(2949), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2781), + [sym_unit] = STATE(3199), + [sym_string] = STATE(2781), + [sym_template_string] = STATE(2781), + [sym_character] = STATE(2781), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_module] = ACTIONS(205), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(1109), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_lazy] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(161), + [aux_sym_variant_identifier_token1] = ACTIONS(1121), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(1123), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1127), + [sym__dict_constructor] = ACTIONS(1129), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(715)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_module_unpack] = STATE(2896), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_module_pack] = STATE(2949), + [sym_parameter] = STATE(4068), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), [sym_decorator] = STATE(715), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(716), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_nested_variant_identifier] = STATE(2703), + [sym_module_primary_expression] = STATE(3728), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2703), + [sym_polyvar_identifier] = STATE(2705), + [sym_value_identifier] = STATE(2949), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2781), + [sym_unit] = STATE(3199), + [sym_string] = STATE(2781), + [sym_template_string] = STATE(2781), + [sym_character] = STATE(2781), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1133), + [anon_sym_module] = ACTIONS(205), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(1109), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_lazy] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(161), + [aux_sym_variant_identifier_token1] = ACTIONS(1121), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(1123), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1127), + [sym__dict_constructor] = ACTIONS(1129), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(716)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_self_closing_element] = STATE(2828), + [sym__definition_signature] = STATE(4163), + [sym_formal_parameters] = STATE(3888), [sym_decorator] = STATE(716), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_value_identifier] = STATE(4164), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(1135), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1140), + [anon_sym_EQ] = ACTIONS(1143), + [anon_sym_module] = ACTIONS(1143), + [anon_sym_unpack] = ACTIONS(1145), + [anon_sym_EQ_GT] = ACTIONS(1138), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_QMARK] = ACTIONS(1138), + [anon_sym_async] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_POUND] = ACTIONS(1138), + [anon_sym_try] = ACTIONS(1143), + [anon_sym_DASH_GT] = ACTIONS(1138), + [anon_sym_PIPE_GT] = ACTIONS(1138), + [anon_sym_lazy] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_COLON_EQ] = ACTIONS(1138), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1138), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1138), + [anon_sym_PIPE_PIPE] = ACTIONS(1143), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1143), + [anon_sym_PLUS_DOT] = ACTIONS(1143), + [anon_sym_DASH_DOT] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_STAR_DOT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1138), + [anon_sym_STAR_STAR] = ACTIONS(1138), + [anon_sym_SLASH_DOT] = ACTIONS(1138), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT_GT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1138), + [anon_sym_EQ_EQ] = ACTIONS(1143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1138), + [anon_sym_BANG_EQ] = ACTIONS(1143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1138), + [anon_sym_GT_EQ] = ACTIONS(1138), + [anon_sym_COLON_GT] = ACTIONS(1138), + [aux_sym_variant_identifier_token1] = ACTIONS(1138), + [sym__escape_identifier] = ACTIONS(1135), + [sym_number] = ACTIONS(1138), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1138), + [aux_sym_template_string_token1] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1138), + [sym__dict_constructor] = ACTIONS(1138), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(717)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_module_unpack] = STATE(2896), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_module_pack] = STATE(2949), + [sym_parameter] = STATE(4068), + [sym_labeled_parameter] = STATE(4018), + [sym_abstract_type] = STATE(4018), + [sym__pattern] = STATE(3391), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), [sym_decorator] = STATE(717), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_module] = ACTIONS(1031), - [anon_sym_unpack] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(1055), - [anon_sym_try] = ACTIONS(1058), - [anon_sym_lazy] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1067), - [aux_sym_variant_identifier_token1] = ACTIONS(1070), - [aux_sym_value_identifier_token1] = ACTIONS(1073), - [sym__escape_identifier] = ACTIONS(1073), - [sym_number] = ACTIONS(1076), - [sym_true] = ACTIONS(1079), - [sym_false] = ACTIONS(1079), - [anon_sym_DQUOTE] = ACTIONS(1082), - [aux_sym_template_string_token1] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1088), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1091), - [sym__dict_constructor] = ACTIONS(1094), + [sym_nested_variant_identifier] = STATE(2703), + [sym_module_primary_expression] = STATE(3728), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2703), + [sym_polyvar_identifier] = STATE(2705), + [sym_value_identifier] = STATE(2949), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2781), + [sym_unit] = STATE(3199), + [sym_string] = STATE(2781), + [sym_template_string] = STATE(2781), + [sym_character] = STATE(2781), + [sym_uncurry] = STATE(725), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_module] = ACTIONS(205), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(1109), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_lazy] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(161), + [aux_sym_variant_identifier_token1] = ACTIONS(1121), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(1123), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1127), + [sym__dict_constructor] = ACTIONS(1129), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(718)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_type_annotation] = STATE(771), + [sym_variant_parameters] = STATE(719), [sym_decorator] = STATE(718), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(719), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1097), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__identifier] = ACTIONS(1148), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_COLON] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1148), + [anon_sym_unpack] = ACTIONS(1148), + [anon_sym_EQ_GT] = ACTIONS(1150), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_GT] = ACTIONS(1148), + [anon_sym_DOT] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_switch] = ACTIONS(1148), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_try] = ACTIONS(1148), + [anon_sym_as] = ACTIONS(1148), + [anon_sym_DASH_GT] = ACTIONS(1150), + [anon_sym_PIPE_GT] = ACTIONS(1150), + [anon_sym_lazy] = ACTIONS(1148), + [anon_sym_SLASH] = ACTIONS(1148), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1150), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_PLUS_DOT] = ACTIONS(1148), + [anon_sym_DASH_DOT] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_STAR_DOT] = ACTIONS(1150), + [anon_sym_PERCENT] = ACTIONS(1150), + [anon_sym_STAR_STAR] = ACTIONS(1150), + [anon_sym_SLASH_DOT] = ACTIONS(1150), + [anon_sym_LT_LT] = ACTIONS(1150), + [anon_sym_GT_GT_GT] = ACTIONS(1150), + [anon_sym_GT_GT] = ACTIONS(1148), + [anon_sym_LT_EQ] = ACTIONS(1150), + [anon_sym_EQ_EQ] = ACTIONS(1148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1150), + [anon_sym_BANG_EQ] = ACTIONS(1148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1150), + [anon_sym_GT_EQ] = ACTIONS(1150), + [anon_sym_COLON_GT] = ACTIONS(1150), + [aux_sym_variant_identifier_token1] = ACTIONS(1150), + [sym__escape_identifier] = ACTIONS(1148), + [sym_number] = ACTIONS(1150), + [sym_true] = ACTIONS(1148), + [sym_false] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1150), + [aux_sym_template_string_token1] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1150), + [sym__dict_constructor] = ACTIONS(1150), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(719)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_type_annotation] = STATE(780), [sym_decorator] = STATE(719), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__identifier] = ACTIONS(1156), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_COLON] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1156), + [anon_sym_unpack] = ACTIONS(1156), + [anon_sym_EQ_GT] = ACTIONS(1158), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_DOT] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_QMARK] = ACTIONS(1158), + [anon_sym_async] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(1156), + [anon_sym_switch] = ACTIONS(1156), + [anon_sym_POUND] = ACTIONS(1158), + [anon_sym_try] = ACTIONS(1156), + [anon_sym_as] = ACTIONS(1156), + [anon_sym_DASH_GT] = ACTIONS(1158), + [anon_sym_PIPE_GT] = ACTIONS(1158), + [anon_sym_lazy] = ACTIONS(1156), + [anon_sym_SLASH] = ACTIONS(1156), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1158), + [anon_sym_AMP_AMP] = ACTIONS(1156), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1158), + [anon_sym_PIPE_PIPE] = ACTIONS(1156), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1158), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_PLUS_DOT] = ACTIONS(1156), + [anon_sym_DASH_DOT] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_STAR_DOT] = ACTIONS(1158), + [anon_sym_PERCENT] = ACTIONS(1158), + [anon_sym_STAR_STAR] = ACTIONS(1158), + [anon_sym_SLASH_DOT] = ACTIONS(1158), + [anon_sym_LT_LT] = ACTIONS(1158), + [anon_sym_GT_GT_GT] = ACTIONS(1158), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_LT_EQ] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1158), + [anon_sym_BANG_EQ] = ACTIONS(1156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1158), + [anon_sym_GT_EQ] = ACTIONS(1158), + [anon_sym_COLON_GT] = ACTIONS(1158), + [aux_sym_variant_identifier_token1] = ACTIONS(1158), + [sym__escape_identifier] = ACTIONS(1156), + [sym_number] = ACTIONS(1158), + [sym_true] = ACTIONS(1156), + [sym_false] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1158), + [aux_sym_template_string_token1] = ACTIONS(1158), + [anon_sym_SQUOTE] = ACTIONS(1158), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1158), + [sym__dict_constructor] = ACTIONS(1158), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(720)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_type_annotation] = STATE(771), + [sym_variant_parameters] = STATE(727), [sym_decorator] = STATE(720), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(722), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__identifier] = ACTIONS(1148), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_COLON] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1148), + [anon_sym_unpack] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_GT] = ACTIONS(1148), + [anon_sym_DOT] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_QMARK] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_switch] = ACTIONS(1148), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_try] = ACTIONS(1148), + [anon_sym_as] = ACTIONS(1148), + [anon_sym_DASH_GT] = ACTIONS(1150), + [anon_sym_PIPE_GT] = ACTIONS(1150), + [anon_sym_lazy] = ACTIONS(1148), + [anon_sym_SLASH] = ACTIONS(1148), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1150), + [anon_sym_PLUS_PLUS] = ACTIONS(1148), + [anon_sym_PLUS_DOT] = ACTIONS(1148), + [anon_sym_DASH_DOT] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1148), + [anon_sym_STAR_DOT] = ACTIONS(1150), + [anon_sym_PERCENT] = ACTIONS(1150), + [anon_sym_STAR_STAR] = ACTIONS(1150), + [anon_sym_SLASH_DOT] = ACTIONS(1150), + [anon_sym_LT_LT] = ACTIONS(1150), + [anon_sym_GT_GT_GT] = ACTIONS(1150), + [anon_sym_GT_GT] = ACTIONS(1148), + [anon_sym_LT_EQ] = ACTIONS(1150), + [anon_sym_EQ_EQ] = ACTIONS(1148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1150), + [anon_sym_BANG_EQ] = ACTIONS(1148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1150), + [anon_sym_GT_EQ] = ACTIONS(1150), + [anon_sym_COLON_GT] = ACTIONS(1150), + [aux_sym_variant_identifier_token1] = ACTIONS(1150), + [sym__escape_identifier] = ACTIONS(1148), + [sym_number] = ACTIONS(1150), + [sym_true] = ACTIONS(1148), + [sym_false] = ACTIONS(1148), + [anon_sym_DQUOTE] = ACTIONS(1150), + [aux_sym_template_string_token1] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1150), + [sym__dict_constructor] = ACTIONS(1150), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(721)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_module_unpack] = STATE(2896), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_module_pack] = STATE(2949), + [sym__pattern] = STATE(3320), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_item_pattern] = STATE(4350), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), [sym_decorator] = STATE(721), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(725), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_nested_variant_identifier] = STATE(2703), + [sym_module_expression] = STATE(3431), + [sym_module_primary_expression] = STATE(3197), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2703), + [sym_polyvar_identifier] = STATE(2705), + [sym_value_identifier] = STATE(2949), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2781), + [sym_unit] = STATE(2949), + [sym_string] = STATE(2781), + [sym_template_string] = STATE(2781), + [sym_character] = STATE(2781), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1164), + [anon_sym_module] = ACTIONS(127), + [anon_sym_unpack] = ACTIONS(1109), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_lazy] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(161), + [aux_sym_variant_identifier_token1] = ACTIONS(1166), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(1123), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1127), + [sym__dict_constructor] = ACTIONS(1129), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(722)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_module_unpack] = STATE(2896), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_module_pack] = STATE(2949), + [sym__pattern] = STATE(3320), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_item_pattern] = STATE(4350), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), [sym_decorator] = STATE(722), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_nested_variant_identifier] = STATE(2703), + [sym_module_expression] = STATE(3416), + [sym_module_primary_expression] = STATE(3197), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_module_type_of] = STATE(3345), + [sym_module_type_constraint] = STATE(3345), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2703), + [sym_polyvar_identifier] = STATE(2705), + [sym_value_identifier] = STATE(2949), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2781), + [sym_unit] = STATE(2949), + [sym_string] = STATE(2781), + [sym_template_string] = STATE(2781), + [sym_character] = STATE(2781), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1164), + [anon_sym_module] = ACTIONS(127), + [anon_sym_unpack] = ACTIONS(1109), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_lazy] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(161), + [aux_sym_variant_identifier_token1] = ACTIONS(1166), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(1123), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1127), + [sym__dict_constructor] = ACTIONS(1129), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(723)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_else_if_clause] = STATE(825), + [sym_else_clause] = STATE(887), [sym_decorator] = STATE(723), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(724), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [aux_sym_if_expression_repeat1] = STATE(734), + [sym__identifier] = ACTIONS(1168), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_module] = ACTIONS(1168), + [anon_sym_unpack] = ACTIONS(1168), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_GT] = ACTIONS(1168), + [anon_sym_DOT] = ACTIONS(1168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1168), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_else] = ACTIONS(1172), + [anon_sym_switch] = ACTIONS(1168), + [anon_sym_POUND] = ACTIONS(1170), + [anon_sym_try] = ACTIONS(1168), + [anon_sym_DASH_GT] = ACTIONS(1170), + [anon_sym_PIPE_GT] = ACTIONS(1170), + [anon_sym_lazy] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1168), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1170), + [anon_sym_AMP_AMP] = ACTIONS(1168), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1170), + [anon_sym_PIPE_PIPE] = ACTIONS(1168), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1168), + [anon_sym_PLUS_DOT] = ACTIONS(1168), + [anon_sym_DASH_DOT] = ACTIONS(1168), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_STAR_DOT] = ACTIONS(1170), + [anon_sym_PERCENT] = ACTIONS(1170), + [anon_sym_STAR_STAR] = ACTIONS(1170), + [anon_sym_SLASH_DOT] = ACTIONS(1170), + [anon_sym_LT_LT] = ACTIONS(1170), + [anon_sym_GT_GT_GT] = ACTIONS(1170), + [anon_sym_GT_GT] = ACTIONS(1168), + [anon_sym_LT_EQ] = ACTIONS(1170), + [anon_sym_EQ_EQ] = ACTIONS(1168), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1170), + [anon_sym_BANG_EQ] = ACTIONS(1168), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1170), + [anon_sym_GT_EQ] = ACTIONS(1170), + [anon_sym_COLON_GT] = ACTIONS(1170), + [aux_sym_variant_identifier_token1] = ACTIONS(1170), + [sym__escape_identifier] = ACTIONS(1168), + [sym_number] = ACTIONS(1170), + [sym_true] = ACTIONS(1168), + [sym_false] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1170), + [aux_sym_template_string_token1] = ACTIONS(1170), + [anon_sym_SQUOTE] = ACTIONS(1170), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1170), + [sym__dict_constructor] = ACTIONS(1170), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(724)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_self_closing_element] = STATE(2828), [sym_decorator] = STATE(724), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), + [sym__identifier] = ACTIONS(1174), [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_unpack] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1174), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_QMARK] = ACTIONS(1177), + [anon_sym_async] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(1177), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_as] = ACTIONS(1179), + [anon_sym_DASH_GT] = ACTIONS(1177), + [anon_sym_PIPE_GT] = ACTIONS(1177), + [anon_sym_lazy] = ACTIONS(1179), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1177), + [anon_sym_AMP_AMP] = ACTIONS(1179), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1177), + [anon_sym_PIPE_PIPE] = ACTIONS(1179), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_PLUS_DOT] = ACTIONS(1179), + [anon_sym_DASH_DOT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_STAR_DOT] = ACTIONS(1177), + [anon_sym_PERCENT] = ACTIONS(1177), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_SLASH_DOT] = ACTIONS(1177), + [anon_sym_LT_LT] = ACTIONS(1177), + [anon_sym_GT_GT_GT] = ACTIONS(1177), + [anon_sym_GT_GT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_EQ_EQ] = ACTIONS(1179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1177), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_COLON_GT] = ACTIONS(1177), + [aux_sym_variant_identifier_token1] = ACTIONS(1177), + [aux_sym_type_identifier_token1] = ACTIONS(1181), + [sym__escape_identifier] = ACTIONS(1174), + [sym_number] = ACTIONS(1177), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1177), + [aux_sym_template_string_token1] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1179), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1177), + [sym__dict_constructor] = ACTIONS(1177), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(725)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_module_unpack] = STATE(2896), + [sym_polyvar_type_pattern] = STATE(2949), + [sym_module_pack] = STATE(2949), + [sym_labeled_parameter] = STATE(4041), + [sym_abstract_type] = STATE(4041), + [sym__pattern] = STATE(3408), + [sym_parenthesized_pattern] = STATE(2949), + [sym_range_pattern] = STATE(2949), + [sym_or_pattern] = STATE(2949), + [sym_exception_pattern] = STATE(2949), + [sym__destructuring_pattern] = STATE(2949), + [sym__literal_pattern] = STATE(2859), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym_lazy_pattern] = STATE(2949), [sym_decorator] = STATE(725), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_nested_variant_identifier] = STATE(2703), + [sym_module_primary_expression] = STATE(3728), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2703), + [sym_polyvar_identifier] = STATE(2705), + [sym_value_identifier] = STATE(2949), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2781), + [sym_unit] = STATE(3208), + [sym_string] = STATE(2781), + [sym_template_string] = STATE(2781), + [sym_character] = STATE(2781), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_module] = ACTIONS(205), + [anon_sym_type] = ACTIONS(129), + [anon_sym_unpack] = ACTIONS(1109), + [anon_sym_exception] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(143), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_lazy] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(161), + [aux_sym_variant_identifier_token1] = ACTIONS(1121), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(1123), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1127), + [sym__dict_constructor] = ACTIONS(1129), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(726)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_self_closing_element] = STATE(2828), [sym_decorator] = STATE(726), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(727), - [aux_sym_extension_expression_repeat1] = STATE(4287), + [sym__identifier] = ACTIONS(1183), [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_module] = ACTIONS(1183), + [anon_sym_unpack] = ACTIONS(1183), + [anon_sym_EQ_GT] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_async] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_POUND] = ACTIONS(1185), + [anon_sym_try] = ACTIONS(1183), + [anon_sym_as] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1185), + [anon_sym_PIPE_GT] = ACTIONS(1185), + [anon_sym_lazy] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1185), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_PLUS_DOT] = ACTIONS(1183), + [anon_sym_DASH_DOT] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_STAR_DOT] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_STAR_STAR] = ACTIONS(1185), + [anon_sym_SLASH_DOT] = ACTIONS(1185), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT_GT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_COLON_GT] = ACTIONS(1185), + [aux_sym_variant_identifier_token1] = ACTIONS(1185), + [sym__escape_identifier] = ACTIONS(1183), + [sym_number] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1185), + [aux_sym_template_string_token1] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1185), + [sym__dict_constructor] = ACTIONS(1185), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(727)] = { - [sym_block] = STATE(2835), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3692), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(2826), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2826), - [sym_jsx_element] = STATE(2828), - [sym_jsx_fragment] = STATE(2841), - [sym__jsx_child] = STATE(2840), - [sym_jsx_opening_element] = STATE(708), - [sym_jsx_self_closing_element] = STATE(2828), + [sym_type_annotation] = STATE(780), [sym_decorator] = STATE(727), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(2826), - [sym_spread_element] = STATE(2841), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4315), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2802), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(2826), - [sym_template_string] = STATE(2826), - [sym_character] = STATE(2826), - [sym__reserved_identifier] = STATE(2796), - [aux_sym_jsx_element_repeat1] = STATE(717), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(995), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(999), - [sym__escape_identifier] = ACTIONS(999), - [sym_number] = ACTIONS(1001), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_template_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1007), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym__identifier] = ACTIONS(1156), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_COLON] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1156), + [anon_sym_unpack] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_GT] = ACTIONS(1156), + [anon_sym_DOT] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_QMARK] = ACTIONS(1158), + [anon_sym_async] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(1156), + [anon_sym_switch] = ACTIONS(1156), + [anon_sym_POUND] = ACTIONS(1158), + [anon_sym_try] = ACTIONS(1156), + [anon_sym_as] = ACTIONS(1156), + [anon_sym_DASH_GT] = ACTIONS(1158), + [anon_sym_PIPE_GT] = ACTIONS(1158), + [anon_sym_lazy] = ACTIONS(1156), + [anon_sym_SLASH] = ACTIONS(1156), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1158), + [anon_sym_AMP_AMP] = ACTIONS(1156), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1158), + [anon_sym_PIPE_PIPE] = ACTIONS(1156), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1158), + [anon_sym_PLUS_PLUS] = ACTIONS(1156), + [anon_sym_PLUS_DOT] = ACTIONS(1156), + [anon_sym_DASH_DOT] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_STAR_DOT] = ACTIONS(1158), + [anon_sym_PERCENT] = ACTIONS(1158), + [anon_sym_STAR_STAR] = ACTIONS(1158), + [anon_sym_SLASH_DOT] = ACTIONS(1158), + [anon_sym_LT_LT] = ACTIONS(1158), + [anon_sym_GT_GT_GT] = ACTIONS(1158), + [anon_sym_GT_GT] = ACTIONS(1156), + [anon_sym_LT_EQ] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1156), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1158), + [anon_sym_BANG_EQ] = ACTIONS(1156), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1158), + [anon_sym_GT_EQ] = ACTIONS(1158), + [anon_sym_COLON_GT] = ACTIONS(1158), + [aux_sym_variant_identifier_token1] = ACTIONS(1158), + [sym__escape_identifier] = ACTIONS(1156), + [sym_number] = ACTIONS(1158), + [sym_true] = ACTIONS(1156), + [sym_false] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1158), + [aux_sym_template_string_token1] = ACTIONS(1158), + [anon_sym_SQUOTE] = ACTIONS(1158), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1158), + [sym__dict_constructor] = ACTIONS(1158), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(728)] = { - [sym_block] = STATE(4545), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(2991), - [sym_parenthesized_expression] = STATE(3090), - [sym_value_identifier_path] = STATE(3090), - [sym_function] = STATE(3090), - [sym_record] = STATE(3090), - [sym_object] = STATE(3090), - [sym_tuple] = STATE(3090), - [sym_array] = STATE(3090), - [sym_list] = STATE(3090), - [sym_dict] = STATE(3090), - [sym_if_expression] = STATE(3090), - [sym_switch_expression] = STATE(3090), - [sym_try_expression] = STATE(3090), - [sym_call_expression] = STATE(3090), - [sym_pipe_expression] = STATE(3090), - [sym_module_pack] = STATE(3090), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(3090), - [sym_jsx_element] = STATE(3032), - [sym_jsx_expression] = STATE(3429), - [sym_jsx_opening_element] = STATE(710), - [sym_jsx_self_closing_element] = STATE(3032), - [sym__jsx_attribute_value] = STATE(3466), + [sym_module_unpack] = STATE(2896), + [sym_polyvar_type_pattern] = STATE(3171), + [sym_module_pack] = STATE(3171), + [sym__pattern] = STATE(3254), + [sym_parenthesized_pattern] = STATE(3171), + [sym_range_pattern] = STATE(3171), + [sym_or_pattern] = STATE(3171), + [sym_exception_pattern] = STATE(3171), + [sym__destructuring_pattern] = STATE(3171), + [sym__literal_pattern] = STATE(3054), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym__collection_element_pattern] = STATE(3868), + [sym_spread_pattern] = STATE(3423), + [sym_lazy_pattern] = STATE(3171), [sym_decorator] = STATE(728), - [sym_subscript_expression] = STATE(3090), - [sym_member_expression] = STATE(3090), - [sym_lazy_expression] = STATE(3090), - [sym_extension_expression] = STATE(3090), - [sym_variant] = STATE(3090), - [sym_nested_variant_identifier] = STATE(2993), - [sym_polyvar] = STATE(3090), - [sym_module_primary_expression] = STATE(4513), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2993), - [sym_polyvar_identifier] = STATE(2994), - [sym_value_identifier] = STATE(2975), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3090), - [sym_unit] = STATE(3090), - [sym_string] = STATE(3090), - [sym_template_string] = STATE(3090), - [sym_character] = STATE(3090), - [sym__reserved_identifier] = STATE(2950), - [aux_sym_extension_expression_repeat1] = STATE(4339), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_unpack] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(1127), - [anon_sym_QMARK] = ACTIONS(1129), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1133), - [anon_sym_switch] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_try] = ACTIONS(1139), - [anon_sym_lazy] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1143), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(1145), - [aux_sym_value_identifier_token1] = ACTIONS(1147), - [sym__escape_identifier] = ACTIONS(1147), - [sym_number] = ACTIONS(1149), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1153), - [aux_sym_template_string_token1] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1157), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1159), - [sym__dict_constructor] = ACTIONS(1161), + [sym_nested_variant_identifier] = STATE(2703), + [sym_module_primary_expression] = STATE(3728), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2703), + [sym_polyvar_identifier] = STATE(2705), + [sym_value_identifier] = STATE(3171), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2781), + [sym_unit] = STATE(3171), + [sym_string] = STATE(2781), + [sym_template_string] = STATE(2781), + [sym_character] = STATE(2781), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_RBRACE] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(1109), + [anon_sym_exception] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(213), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_lazy] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(161), + [aux_sym_variant_identifier_token1] = ACTIONS(1121), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(1123), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1127), + [sym__dict_constructor] = ACTIONS(1129), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(729)] = { - [sym_block] = STATE(4545), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(2991), - [sym_parenthesized_expression] = STATE(3090), - [sym_value_identifier_path] = STATE(3090), - [sym_function] = STATE(3090), - [sym_record] = STATE(3090), - [sym_object] = STATE(3090), - [sym_tuple] = STATE(3090), - [sym_array] = STATE(3090), - [sym_list] = STATE(3090), - [sym_dict] = STATE(3090), - [sym_if_expression] = STATE(3090), - [sym_switch_expression] = STATE(3090), - [sym_try_expression] = STATE(3090), - [sym_call_expression] = STATE(3090), - [sym_pipe_expression] = STATE(3090), - [sym_module_pack] = STATE(3090), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(3090), - [sym_jsx_element] = STATE(3032), - [sym_jsx_expression] = STATE(3429), - [sym_jsx_opening_element] = STATE(710), - [sym_jsx_self_closing_element] = STATE(3032), - [sym__jsx_attribute_value] = STATE(3423), [sym_decorator] = STATE(729), - [sym_subscript_expression] = STATE(3090), - [sym_member_expression] = STATE(3090), - [sym_lazy_expression] = STATE(3090), - [sym_extension_expression] = STATE(3090), - [sym_variant] = STATE(3090), - [sym_nested_variant_identifier] = STATE(2993), - [sym_polyvar] = STATE(3090), - [sym_module_primary_expression] = STATE(4513), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2993), - [sym_polyvar_identifier] = STATE(2994), - [sym_value_identifier] = STATE(2975), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3090), - [sym_unit] = STATE(3090), - [sym_string] = STATE(3090), - [sym_template_string] = STATE(3090), - [sym_character] = STATE(3090), - [sym__reserved_identifier] = STATE(2950), - [aux_sym_extension_expression_repeat1] = STATE(4339), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_unpack] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(1127), - [anon_sym_QMARK] = ACTIONS(1163), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1133), - [anon_sym_switch] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_try] = ACTIONS(1139), - [anon_sym_lazy] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1143), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(1145), - [aux_sym_value_identifier_token1] = ACTIONS(1147), - [sym__escape_identifier] = ACTIONS(1147), - [sym_number] = ACTIONS(1149), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1153), - [aux_sym_template_string_token1] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1157), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1159), - [sym__dict_constructor] = ACTIONS(1161), + [aux_sym_variant_type_repeat1] = STATE(731), + [sym__identifier] = ACTIONS(1193), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1195), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_unpack] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(1197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_switch] = ACTIONS(1193), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_try] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_PIPE_GT] = ACTIONS(1195), + [anon_sym_lazy] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1195), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_PLUS_DOT] = ACTIONS(1193), + [anon_sym_DASH_DOT] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_STAR_DOT] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_SLASH_DOT] = ACTIONS(1195), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1195), + [anon_sym_COLON_GT] = ACTIONS(1195), + [aux_sym_variant_identifier_token1] = ACTIONS(1195), + [sym__escape_identifier] = ACTIONS(1193), + [sym_number] = ACTIONS(1195), + [sym_true] = ACTIONS(1193), + [sym_false] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1195), + [aux_sym_template_string_token1] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1195), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1195), + [sym__dict_constructor] = ACTIONS(1195), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(730)] = { - [sym_block] = STATE(4545), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(2991), - [sym_parenthesized_expression] = STATE(3090), - [sym_value_identifier_path] = STATE(3090), - [sym_function] = STATE(3090), - [sym_record] = STATE(3090), - [sym_object] = STATE(3090), - [sym_tuple] = STATE(3090), - [sym_array] = STATE(3090), - [sym_list] = STATE(3090), - [sym_dict] = STATE(3090), - [sym_if_expression] = STATE(3090), - [sym_switch_expression] = STATE(3090), - [sym_try_expression] = STATE(3090), - [sym_call_expression] = STATE(3090), - [sym_pipe_expression] = STATE(3090), - [sym_module_pack] = STATE(3090), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(3090), - [sym_jsx_element] = STATE(3032), - [sym_jsx_expression] = STATE(3429), - [sym_jsx_opening_element] = STATE(710), - [sym_jsx_self_closing_element] = STATE(3032), - [sym__jsx_attribute_value] = STATE(3457), [sym_decorator] = STATE(730), - [sym_subscript_expression] = STATE(3090), - [sym_member_expression] = STATE(3090), - [sym_lazy_expression] = STATE(3090), - [sym_extension_expression] = STATE(3090), - [sym_variant] = STATE(3090), - [sym_nested_variant_identifier] = STATE(2993), - [sym_polyvar] = STATE(3090), - [sym_module_primary_expression] = STATE(4513), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2993), - [sym_polyvar_identifier] = STATE(2994), - [sym_value_identifier] = STATE(2975), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3090), - [sym_unit] = STATE(3090), - [sym_string] = STATE(3090), - [sym_template_string] = STATE(3090), - [sym_character] = STATE(3090), - [sym__reserved_identifier] = STATE(2950), - [aux_sym_extension_expression_repeat1] = STATE(4339), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_unpack] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1133), - [anon_sym_switch] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_try] = ACTIONS(1139), - [anon_sym_lazy] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1143), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(1145), - [aux_sym_value_identifier_token1] = ACTIONS(1147), - [sym__escape_identifier] = ACTIONS(1147), - [sym_number] = ACTIONS(1149), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1153), - [aux_sym_template_string_token1] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1157), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1159), - [sym__dict_constructor] = ACTIONS(1161), + [aux_sym_variant_type_repeat1] = STATE(731), + [sym__identifier] = ACTIONS(1199), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_unpack] = ACTIONS(1199), + [anon_sym_EQ_GT] = ACTIONS(1201), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_GT] = ACTIONS(1199), + [anon_sym_DOT] = ACTIONS(1199), + [anon_sym_PIPE] = ACTIONS(1197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_POUND] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(1199), + [anon_sym_as] = ACTIONS(1199), + [anon_sym_DASH_GT] = ACTIONS(1201), + [anon_sym_PIPE_GT] = ACTIONS(1201), + [anon_sym_lazy] = ACTIONS(1199), + [anon_sym_SLASH] = ACTIONS(1199), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1199), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1199), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_PLUS_DOT] = ACTIONS(1199), + [anon_sym_DASH_DOT] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_STAR_DOT] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_STAR_STAR] = ACTIONS(1201), + [anon_sym_SLASH_DOT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT_GT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_COLON_GT] = ACTIONS(1201), + [aux_sym_variant_identifier_token1] = ACTIONS(1201), + [sym__escape_identifier] = ACTIONS(1199), + [sym_number] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1201), + [aux_sym_template_string_token1] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1201), + [sym__dict_constructor] = ACTIONS(1201), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(731)] = { - [sym_block] = STATE(4545), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(2991), - [sym_parenthesized_expression] = STATE(3090), - [sym_value_identifier_path] = STATE(3090), - [sym_function] = STATE(3090), - [sym_record] = STATE(3090), - [sym_object] = STATE(3090), - [sym_tuple] = STATE(3090), - [sym_array] = STATE(3090), - [sym_list] = STATE(3090), - [sym_dict] = STATE(3090), - [sym_if_expression] = STATE(3090), - [sym_switch_expression] = STATE(3090), - [sym_try_expression] = STATE(3090), - [sym_call_expression] = STATE(3090), - [sym_pipe_expression] = STATE(3090), - [sym_module_pack] = STATE(3090), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(3090), - [sym_jsx_element] = STATE(3032), - [sym_jsx_expression] = STATE(3429), - [sym_jsx_opening_element] = STATE(710), - [sym_jsx_self_closing_element] = STATE(3032), - [sym__jsx_attribute_value] = STATE(3423), [sym_decorator] = STATE(731), - [sym_subscript_expression] = STATE(3090), - [sym_member_expression] = STATE(3090), - [sym_lazy_expression] = STATE(3090), - [sym_extension_expression] = STATE(3090), - [sym_variant] = STATE(3090), - [sym_nested_variant_identifier] = STATE(2993), - [sym_polyvar] = STATE(3090), - [sym_module_primary_expression] = STATE(4513), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2993), - [sym_polyvar_identifier] = STATE(2994), - [sym_value_identifier] = STATE(2975), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3090), - [sym_unit] = STATE(3090), - [sym_string] = STATE(3090), - [sym_template_string] = STATE(3090), - [sym_character] = STATE(3090), - [sym__reserved_identifier] = STATE(2950), - [aux_sym_extension_expression_repeat1] = STATE(4339), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_unpack] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1133), - [anon_sym_switch] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_try] = ACTIONS(1139), - [anon_sym_lazy] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1143), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(1145), - [aux_sym_value_identifier_token1] = ACTIONS(1147), - [sym__escape_identifier] = ACTIONS(1147), - [sym_number] = ACTIONS(1149), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1153), - [aux_sym_template_string_token1] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1157), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1159), - [sym__dict_constructor] = ACTIONS(1161), + [aux_sym_variant_type_repeat1] = STATE(731), + [sym__identifier] = ACTIONS(1203), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_module] = ACTIONS(1203), + [anon_sym_unpack] = ACTIONS(1203), + [anon_sym_EQ_GT] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_async] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1205), + [anon_sym_try] = ACTIONS(1203), + [anon_sym_as] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1205), + [anon_sym_PIPE_GT] = ACTIONS(1205), + [anon_sym_lazy] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1203), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1203), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1203), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1203), + [anon_sym_PLUS_DOT] = ACTIONS(1203), + [anon_sym_DASH_DOT] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_STAR_DOT] = ACTIONS(1205), + [anon_sym_PERCENT] = ACTIONS(1205), + [anon_sym_STAR_STAR] = ACTIONS(1205), + [anon_sym_SLASH_DOT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_GT_GT_GT] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1203), + [anon_sym_LT_EQ] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1205), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_COLON_GT] = ACTIONS(1205), + [aux_sym_variant_identifier_token1] = ACTIONS(1205), + [sym__escape_identifier] = ACTIONS(1203), + [sym_number] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1205), + [aux_sym_template_string_token1] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1205), + [sym__dict_constructor] = ACTIONS(1205), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(732)] = { - [sym_block] = STATE(1838), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(1703), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4954), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1800), - [sym_jsx_element] = STATE(1786), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), [sym_decorator] = STATE(732), - [sym_subscript_expression] = STATE(1800), - [sym_member_expression] = STATE(1800), - [sym_lazy_expression] = STATE(1800), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1803), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(745), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [aux_sym_variant_type_repeat1] = STATE(731), + [sym__identifier] = ACTIONS(1193), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1195), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_unpack] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(1193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_switch] = ACTIONS(1193), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_try] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_PIPE_GT] = ACTIONS(1195), + [anon_sym_lazy] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1195), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_PLUS_DOT] = ACTIONS(1193), + [anon_sym_DASH_DOT] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_STAR_DOT] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_SLASH_DOT] = ACTIONS(1195), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1195), + [anon_sym_COLON_GT] = ACTIONS(1195), + [aux_sym_variant_identifier_token1] = ACTIONS(1195), + [sym__escape_identifier] = ACTIONS(1193), + [sym_number] = ACTIONS(1195), + [sym_true] = ACTIONS(1193), + [sym_false] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1195), + [aux_sym_template_string_token1] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1195), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1195), + [sym__dict_constructor] = ACTIONS(1195), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(733)] = { - [sym_block] = STATE(1483), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(1401), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4747), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1450), - [sym_jsx_element] = STATE(1456), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), [sym_decorator] = STATE(733), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(1450), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2162), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(1169), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(639), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [aux_sym_variant_type_repeat1] = STATE(731), + [sym__identifier] = ACTIONS(1199), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_unpack] = ACTIONS(1199), + [anon_sym_EQ_GT] = ACTIONS(1201), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_GT] = ACTIONS(1199), + [anon_sym_DOT] = ACTIONS(1199), + [anon_sym_PIPE] = ACTIONS(1199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_POUND] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(1199), + [anon_sym_as] = ACTIONS(1199), + [anon_sym_DASH_GT] = ACTIONS(1201), + [anon_sym_PIPE_GT] = ACTIONS(1201), + [anon_sym_lazy] = ACTIONS(1199), + [anon_sym_SLASH] = ACTIONS(1199), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1199), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1199), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_PLUS_DOT] = ACTIONS(1199), + [anon_sym_DASH_DOT] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_STAR_DOT] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_STAR_STAR] = ACTIONS(1201), + [anon_sym_SLASH_DOT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT_GT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_COLON_GT] = ACTIONS(1201), + [aux_sym_variant_identifier_token1] = ACTIONS(1201), + [sym__escape_identifier] = ACTIONS(1199), + [sym_number] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1201), + [aux_sym_template_string_token1] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1201), + [sym__dict_constructor] = ACTIONS(1201), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(734)] = { - [sym_block] = STATE(1483), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(1401), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1450), - [sym_jsx_element] = STATE(1456), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), + [sym_else_if_clause] = STATE(825), + [sym_else_clause] = STATE(904), [sym_decorator] = STATE(734), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(1450), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2009), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [aux_sym_if_expression_repeat1] = STATE(776), + [sym__identifier] = ACTIONS(1210), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1210), + [anon_sym_unpack] = ACTIONS(1210), + [anon_sym_LT] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_GT] = ACTIONS(1210), + [anon_sym_DOT] = ACTIONS(1210), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1172), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(1212), + [anon_sym_try] = ACTIONS(1210), + [anon_sym_DASH_GT] = ACTIONS(1212), + [anon_sym_PIPE_GT] = ACTIONS(1212), + [anon_sym_lazy] = ACTIONS(1210), + [anon_sym_SLASH] = ACTIONS(1210), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1212), + [anon_sym_AMP_AMP] = ACTIONS(1210), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1212), + [anon_sym_PIPE_PIPE] = ACTIONS(1210), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_PLUS_DOT] = ACTIONS(1210), + [anon_sym_DASH_DOT] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_STAR_DOT] = ACTIONS(1212), + [anon_sym_PERCENT] = ACTIONS(1212), + [anon_sym_STAR_STAR] = ACTIONS(1212), + [anon_sym_SLASH_DOT] = ACTIONS(1212), + [anon_sym_LT_LT] = ACTIONS(1212), + [anon_sym_GT_GT_GT] = ACTIONS(1212), + [anon_sym_GT_GT] = ACTIONS(1210), + [anon_sym_LT_EQ] = ACTIONS(1212), + [anon_sym_EQ_EQ] = ACTIONS(1210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1212), + [anon_sym_BANG_EQ] = ACTIONS(1210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1212), + [anon_sym_GT_EQ] = ACTIONS(1212), + [anon_sym_COLON_GT] = ACTIONS(1212), + [aux_sym_variant_identifier_token1] = ACTIONS(1212), + [sym__escape_identifier] = ACTIONS(1210), + [sym_number] = ACTIONS(1212), + [sym_true] = ACTIONS(1210), + [sym_false] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1212), + [aux_sym_template_string_token1] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1212), + [sym__dict_constructor] = ACTIONS(1212), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(735)] = { - [sym_block] = STATE(1838), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(1703), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(5012), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1800), - [sym_jsx_element] = STATE(1786), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), + [sym_module_unpack] = STATE(2896), + [sym_polyvar_type_pattern] = STATE(3171), + [sym_module_pack] = STATE(3171), + [sym__pattern] = STATE(3254), + [sym_parenthesized_pattern] = STATE(3171), + [sym_range_pattern] = STATE(3171), + [sym_or_pattern] = STATE(3171), + [sym_exception_pattern] = STATE(3171), + [sym__destructuring_pattern] = STATE(3171), + [sym__literal_pattern] = STATE(3054), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym__collection_element_pattern] = STATE(3836), + [sym_spread_pattern] = STATE(3423), + [sym_lazy_pattern] = STATE(3171), [sym_decorator] = STATE(735), - [sym_subscript_expression] = STATE(1800), - [sym_member_expression] = STATE(1800), - [sym_lazy_expression] = STATE(1800), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1924), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), + [sym_nested_variant_identifier] = STATE(2703), + [sym_module_primary_expression] = STATE(3728), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2703), + [sym_polyvar_identifier] = STATE(2705), + [sym_value_identifier] = STATE(3171), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2781), + [sym_unit] = STATE(3171), + [sym_string] = STATE(2781), + [sym_template_string] = STATE(2781), + [sym_character] = STATE(2781), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(1109), + [anon_sym_exception] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_RBRACK] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(213), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_lazy] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(161), + [aux_sym_variant_identifier_token1] = ACTIONS(1121), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(1123), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1127), + [sym__dict_constructor] = ACTIONS(1129), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(736)] = { - [sym_block] = STATE(2119), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(1949), - [sym_parenthesized_expression] = STATE(2228), - [sym_value_identifier_path] = STATE(2228), - [sym_function] = STATE(2228), - [sym_record] = STATE(2228), - [sym_object] = STATE(2228), - [sym_tuple] = STATE(2228), - [sym_array] = STATE(2228), - [sym_list] = STATE(2228), - [sym_dict] = STATE(2228), - [sym_if_expression] = STATE(2228), - [sym_switch_expression] = STATE(2228), - [sym_try_expression] = STATE(2228), - [sym_call_expression] = STATE(2228), - [sym_pipe_expression] = STATE(2228), - [sym_module_pack] = STATE(2228), - [sym__definition_signature] = STATE(4929), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2228), - [sym_jsx_element] = STATE(2261), - [sym_jsx_opening_element] = STATE(702), - [sym_jsx_self_closing_element] = STATE(2261), + [sym_module_unpack] = STATE(2896), + [sym_polyvar_type_pattern] = STATE(3171), + [sym_module_pack] = STATE(3171), + [sym__pattern] = STATE(3254), + [sym_parenthesized_pattern] = STATE(3171), + [sym_range_pattern] = STATE(3171), + [sym_or_pattern] = STATE(3171), + [sym_exception_pattern] = STATE(3171), + [sym__destructuring_pattern] = STATE(3171), + [sym__literal_pattern] = STATE(3054), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym__collection_element_pattern] = STATE(3677), + [sym_spread_pattern] = STATE(3423), + [sym_lazy_pattern] = STATE(3171), [sym_decorator] = STATE(736), - [sym_subscript_expression] = STATE(2228), - [sym_member_expression] = STATE(2228), - [sym_lazy_expression] = STATE(2228), - [sym_extension_expression] = STATE(2228), - [sym_variant] = STATE(2228), - [sym_nested_variant_identifier] = STATE(2004), - [sym_polyvar] = STATE(2228), - [sym_module_primary_expression] = STATE(4338), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2004), - [sym_polyvar_identifier] = STATE(2005), - [sym_value_identifier] = STATE(2065), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2228), - [sym_unit] = STATE(2228), - [sym_string] = STATE(2228), - [sym_template_string] = STATE(2228), - [sym_character] = STATE(2228), - [sym__reserved_identifier] = STATE(1759), - [aux_sym_extension_expression_repeat1] = STATE(4317), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(409), - [anon_sym_unpack] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_async] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), - [anon_sym_lazy] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(445), - [aux_sym_value_identifier_token1] = ACTIONS(447), - [sym__escape_identifier] = ACTIONS(447), - [sym_number] = ACTIONS(449), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [aux_sym_template_string_token1] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(459), - [sym__dict_constructor] = ACTIONS(461), + [sym_nested_variant_identifier] = STATE(2703), + [sym_module_primary_expression] = STATE(3728), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2703), + [sym_polyvar_identifier] = STATE(2705), + [sym_value_identifier] = STATE(3171), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2781), + [sym_unit] = STATE(3171), + [sym_string] = STATE(2781), + [sym_template_string] = STATE(2781), + [sym_character] = STATE(2781), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_RBRACE] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(1109), + [anon_sym_exception] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(213), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_lazy] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(161), + [aux_sym_variant_identifier_token1] = ACTIONS(1121), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(1123), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1127), + [sym__dict_constructor] = ACTIONS(1129), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(737)] = { - [sym_block] = STATE(970), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(862), - [sym_parenthesized_expression] = STATE(953), - [sym_value_identifier_path] = STATE(953), - [sym_function] = STATE(953), - [sym_record] = STATE(953), - [sym_object] = STATE(953), - [sym_tuple] = STATE(953), - [sym_array] = STATE(953), - [sym_list] = STATE(953), - [sym_dict] = STATE(953), - [sym_if_expression] = STATE(953), - [sym_switch_expression] = STATE(953), - [sym_try_expression] = STATE(953), - [sym_call_expression] = STATE(953), - [sym_pipe_expression] = STATE(953), - [sym_module_pack] = STATE(953), - [sym__definition_signature] = STATE(4763), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(953), - [sym_jsx_element] = STATE(1025), - [sym_jsx_opening_element] = STATE(705), - [sym_jsx_self_closing_element] = STATE(1025), [sym_decorator] = STATE(737), - [sym_subscript_expression] = STATE(953), - [sym_member_expression] = STATE(953), - [sym_lazy_expression] = STATE(953), - [sym_extension_expression] = STATE(953), - [sym_variant] = STATE(953), - [sym_nested_variant_identifier] = STATE(867), - [sym_polyvar] = STATE(953), - [sym_module_primary_expression] = STATE(4426), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(867), - [sym_polyvar_identifier] = STATE(869), - [sym_value_identifier] = STATE(888), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(953), - [sym_unit] = STATE(953), - [sym_string] = STATE(953), - [sym_template_string] = STATE(953), - [sym_character] = STATE(953), - [sym__reserved_identifier] = STATE(797), - [aux_sym_extension_expression_repeat1] = STATE(4237), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(799), - [anon_sym_unpack] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_async] = ACTIONS(809), - [anon_sym_if] = ACTIONS(811), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_try] = ACTIONS(817), - [anon_sym_lazy] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(829), - [aux_sym_value_identifier_token1] = ACTIONS(831), - [sym__escape_identifier] = ACTIONS(831), - [sym_number] = ACTIONS(833), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [aux_sym_template_string_token1] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(841), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(843), - [sym__dict_constructor] = ACTIONS(845), + [sym__identifier] = ACTIONS(1218), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_COLON] = ACTIONS(1218), + [anon_sym_module] = ACTIONS(1218), + [anon_sym_unpack] = ACTIONS(1218), + [anon_sym_EQ_GT] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_GT] = ACTIONS(1218), + [anon_sym_DOT] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_QMARK] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(1220), + [anon_sym_try] = ACTIONS(1218), + [anon_sym_as] = ACTIONS(1218), + [anon_sym_DASH_GT] = ACTIONS(1220), + [anon_sym_PIPE_GT] = ACTIONS(1220), + [anon_sym_lazy] = ACTIONS(1218), + [anon_sym_SLASH] = ACTIONS(1218), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1220), + [anon_sym_AMP_AMP] = ACTIONS(1218), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_PIPE_PIPE] = ACTIONS(1218), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_PLUS_DOT] = ACTIONS(1218), + [anon_sym_DASH_DOT] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_STAR_DOT] = ACTIONS(1220), + [anon_sym_PERCENT] = ACTIONS(1220), + [anon_sym_STAR_STAR] = ACTIONS(1220), + [anon_sym_SLASH_DOT] = ACTIONS(1220), + [anon_sym_LT_LT] = ACTIONS(1220), + [anon_sym_GT_GT_GT] = ACTIONS(1220), + [anon_sym_GT_GT] = ACTIONS(1218), + [anon_sym_LT_EQ] = ACTIONS(1220), + [anon_sym_EQ_EQ] = ACTIONS(1218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1220), + [anon_sym_BANG_EQ] = ACTIONS(1218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1220), + [anon_sym_GT_EQ] = ACTIONS(1220), + [anon_sym_COLON_GT] = ACTIONS(1220), + [aux_sym_variant_identifier_token1] = ACTIONS(1220), + [sym__escape_identifier] = ACTIONS(1218), + [sym_number] = ACTIONS(1220), + [sym_true] = ACTIONS(1218), + [sym_false] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1220), + [aux_sym_template_string_token1] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1220), + [sym__dict_constructor] = ACTIONS(1220), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(738)] = { - [sym_block] = STATE(1483), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(1401), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1450), - [sym_jsx_element] = STATE(1456), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), + [sym_module_unpack] = STATE(2896), + [sym_polyvar_type_pattern] = STATE(3171), + [sym_module_pack] = STATE(3171), + [sym__pattern] = STATE(3254), + [sym_parenthesized_pattern] = STATE(3171), + [sym_range_pattern] = STATE(3171), + [sym_or_pattern] = STATE(3171), + [sym_exception_pattern] = STATE(3171), + [sym__destructuring_pattern] = STATE(3171), + [sym__literal_pattern] = STATE(3054), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym__collection_element_pattern] = STATE(3677), + [sym_spread_pattern] = STATE(3423), + [sym_lazy_pattern] = STATE(3171), [sym_decorator] = STATE(738), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(1450), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2009), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), + [sym_nested_variant_identifier] = STATE(2703), + [sym_module_primary_expression] = STATE(3728), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2703), + [sym_polyvar_identifier] = STATE(2705), + [sym_value_identifier] = STATE(3171), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2781), + [sym_unit] = STATE(3171), + [sym_string] = STATE(2781), + [sym_template_string] = STATE(2781), + [sym_character] = STATE(2781), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(1109), + [anon_sym_exception] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_RBRACK] = ACTIONS(1222), + [anon_sym_QMARK] = ACTIONS(213), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_lazy] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(161), + [aux_sym_variant_identifier_token1] = ACTIONS(1121), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(1123), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1127), + [sym__dict_constructor] = ACTIONS(1129), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(739)] = { - [sym_block] = STATE(3036), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(2976), - [sym_parenthesized_expression] = STATE(3090), - [sym_value_identifier_path] = STATE(3090), - [sym_function] = STATE(3090), - [sym_record] = STATE(3090), - [sym_object] = STATE(3090), - [sym_tuple] = STATE(3090), - [sym_array] = STATE(3090), - [sym_list] = STATE(3090), - [sym_dict] = STATE(3090), - [sym_if_expression] = STATE(3090), - [sym_switch_expression] = STATE(3090), - [sym_try_expression] = STATE(3090), - [sym_call_expression] = STATE(3090), - [sym_pipe_expression] = STATE(3090), - [sym_module_pack] = STATE(3090), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(3090), - [sym_jsx_element] = STATE(3032), - [sym_jsx_opening_element] = STATE(710), - [sym_jsx_self_closing_element] = STATE(3032), + [sym_module_unpack] = STATE(2896), + [sym_polyvar_type_pattern] = STATE(3171), + [sym_module_pack] = STATE(3171), + [sym__pattern] = STATE(3254), + [sym_parenthesized_pattern] = STATE(3171), + [sym_range_pattern] = STATE(3171), + [sym_or_pattern] = STATE(3171), + [sym_exception_pattern] = STATE(3171), + [sym__destructuring_pattern] = STATE(3171), + [sym__literal_pattern] = STATE(3054), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym__collection_element_pattern] = STATE(3677), + [sym_spread_pattern] = STATE(3423), + [sym_lazy_pattern] = STATE(3171), [sym_decorator] = STATE(739), - [sym_subscript_expression] = STATE(3090), - [sym_member_expression] = STATE(3090), - [sym_lazy_expression] = STATE(3090), - [sym_extension_expression] = STATE(3090), - [sym_variant] = STATE(3090), - [sym_nested_variant_identifier] = STATE(2993), - [sym_polyvar] = STATE(3090), - [sym_module_primary_expression] = STATE(4513), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(2993), - [sym_polyvar_identifier] = STATE(2994), - [sym_value_identifier] = STATE(2975), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3090), - [sym_unit] = STATE(3090), - [sym_string] = STATE(3090), - [sym_template_string] = STATE(3090), - [sym_character] = STATE(3090), - [sym__reserved_identifier] = STATE(2950), - [aux_sym_extension_expression_repeat1] = STATE(4339), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_unpack] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1125), - [anon_sym_LBRACK] = ACTIONS(1127), - [anon_sym_async] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1133), - [anon_sym_switch] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1137), - [anon_sym_try] = ACTIONS(1139), - [anon_sym_lazy] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1143), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(1145), - [aux_sym_value_identifier_token1] = ACTIONS(1147), - [sym__escape_identifier] = ACTIONS(1147), - [sym_number] = ACTIONS(1149), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1153), - [aux_sym_template_string_token1] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1157), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1159), - [sym__dict_constructor] = ACTIONS(1161), + [sym_nested_variant_identifier] = STATE(2703), + [sym_module_primary_expression] = STATE(3728), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2703), + [sym_polyvar_identifier] = STATE(2705), + [sym_value_identifier] = STATE(3171), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2781), + [sym_unit] = STATE(3171), + [sym_string] = STATE(2781), + [sym_template_string] = STATE(2781), + [sym_character] = STATE(2781), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(1109), + [anon_sym_exception] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_RBRACK] = ACTIONS(1224), + [anon_sym_QMARK] = ACTIONS(213), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_lazy] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(161), + [aux_sym_variant_identifier_token1] = ACTIONS(1121), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(1123), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1127), + [sym__dict_constructor] = ACTIONS(1129), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, [STATE(740)] = { - [sym_block] = STATE(1483), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(1401), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4914), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1450), - [sym_jsx_element] = STATE(1456), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), [sym_decorator] = STATE(740), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(1450), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2494), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(767), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(773), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(741)] = { - [sym_block] = STATE(1483), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(1401), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4944), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1450), - [sym_jsx_element] = STATE(1456), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_decorator] = STATE(741), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(1450), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2525), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(731), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(742)] = { - [sym_block] = STATE(4587), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3716), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(3428), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(3428), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(3428), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1450), - [sym_jsx_element] = STATE(1456), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_decorator] = STATE(742), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(3428), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(3721), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(3329), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(743)] = { - [sym_block] = STATE(2025), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(1807), - [sym_parenthesized_expression] = STATE(2096), - [sym_value_identifier_path] = STATE(2096), - [sym_function] = STATE(2096), - [sym_record] = STATE(2096), - [sym_object] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_array] = STATE(2096), - [sym_list] = STATE(2096), - [sym_dict] = STATE(2096), - [sym_if_expression] = STATE(2096), - [sym_switch_expression] = STATE(2096), - [sym_try_expression] = STATE(2096), - [sym_call_expression] = STATE(2096), - [sym_pipe_expression] = STATE(2096), - [sym_module_pack] = STATE(2096), - [sym__definition_signature] = STATE(5048), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(2096), - [sym_jsx_element] = STATE(2092), - [sym_jsx_opening_element] = STATE(712), - [sym_jsx_self_closing_element] = STATE(2092), - [sym_decorator] = STATE(743), - [sym_subscript_expression] = STATE(2096), - [sym_member_expression] = STATE(2096), - [sym_lazy_expression] = STATE(2096), - [sym_extension_expression] = STATE(2096), - [sym_variant] = STATE(2096), - [sym_nested_variant_identifier] = STATE(1811), - [sym_polyvar] = STATE(2096), - [sym_module_primary_expression] = STATE(4526), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1811), - [sym_polyvar_identifier] = STATE(1814), - [sym_value_identifier] = STATE(1847), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(2096), - [sym_unit] = STATE(2096), - [sym_string] = STATE(2096), - [sym_template_string] = STATE(2096), - [sym_character] = STATE(2096), - [sym__reserved_identifier] = STATE(1595), - [aux_sym_extension_expression_repeat1] = STATE(4427), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(1185), - [anon_sym_module] = ACTIONS(885), - [anon_sym_unpack] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_async] = ACTIONS(895), - [anon_sym_if] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_lazy] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(915), - [aux_sym_value_identifier_token1] = ACTIONS(917), - [sym__escape_identifier] = ACTIONS(917), - [sym_number] = ACTIONS(919), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(923), - [aux_sym_template_string_token1] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(927), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(929), - [sym__dict_constructor] = ACTIONS(931), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(744)] = { - [sym_block] = STATE(1838), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(1703), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4936), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1800), - [sym_jsx_element] = STATE(1786), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_decorator] = STATE(744), - [sym_subscript_expression] = STATE(1800), - [sym_member_expression] = STATE(1800), - [sym_lazy_expression] = STATE(1800), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1853), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(971), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(745)] = { - [sym_block] = STATE(4587), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(3716), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(3458), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(3458), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(3458), - [sym__definition_signature] = STATE(4940), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1450), - [sym_jsx_element] = STATE(1456), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_decorator] = STATE(745), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(3458), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(3683), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(3382), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(529), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(746)] = { - [sym_block] = STATE(1838), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(1703), - [sym_parenthesized_expression] = STATE(1800), - [sym_value_identifier_path] = STATE(1800), - [sym_function] = STATE(1800), - [sym_record] = STATE(1800), - [sym_object] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_array] = STATE(1800), - [sym_list] = STATE(1800), - [sym_dict] = STATE(1800), - [sym_if_expression] = STATE(1800), - [sym_switch_expression] = STATE(1800), - [sym_try_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_pipe_expression] = STATE(1800), - [sym_module_pack] = STATE(1800), - [sym__definition_signature] = STATE(4951), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1800), - [sym_jsx_element] = STATE(1786), - [sym_jsx_opening_element] = STATE(703), - [sym_jsx_self_closing_element] = STATE(1786), - [sym_decorator] = STATE(746), - [sym_subscript_expression] = STATE(1800), - [sym_member_expression] = STATE(1800), - [sym_lazy_expression] = STATE(1800), - [sym_extension_expression] = STATE(1800), - [sym_variant] = STATE(1800), - [sym_nested_variant_identifier] = STATE(1751), - [sym_polyvar] = STATE(1800), - [sym_module_primary_expression] = STATE(4328), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1751), - [sym_polyvar_identifier] = STATE(1754), - [sym_value_identifier] = STATE(1913), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1800), - [sym_unit] = STATE(1800), - [sym_string] = STATE(1800), - [sym_template_string] = STATE(1800), - [sym_character] = STATE(1800), - [sym__reserved_identifier] = STATE(1366), - [aux_sym_extension_expression_repeat1] = STATE(4521), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_module] = ACTIONS(741), - [anon_sym_unpack] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_async] = ACTIONS(255), - [anon_sym_if] = ACTIONS(47), - [anon_sym_switch] = ACTIONS(49), - [anon_sym_POUND] = ACTIONS(51), - [anon_sym_try] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(67), - [aux_sym_value_identifier_token1] = ACTIONS(69), - [sym__escape_identifier] = ACTIONS(69), - [sym_number] = ACTIONS(71), - [sym_true] = ACTIONS(73), - [sym_false] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [aux_sym_template_string_token1] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(81), - [sym__dict_constructor] = ACTIONS(83), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(747)] = { - [sym_block] = STATE(1483), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(1401), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(4691), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1450), - [sym_jsx_element] = STATE(1456), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_decorator] = STATE(747), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(1450), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4236), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2284), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(599), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(377), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(748)] = { - [sym_block] = STATE(1483), - [sym_module_unpack] = STATE(3301), - [sym_primary_expression] = STATE(1401), - [sym_parenthesized_expression] = STATE(1450), - [sym_value_identifier_path] = STATE(1450), - [sym_function] = STATE(1450), - [sym_record] = STATE(1450), - [sym_object] = STATE(1450), - [sym_tuple] = STATE(1450), - [sym_array] = STATE(1450), - [sym_list] = STATE(1450), - [sym_dict] = STATE(1450), - [sym_if_expression] = STATE(1450), - [sym_switch_expression] = STATE(1450), - [sym_try_expression] = STATE(1450), - [sym_call_expression] = STATE(1450), - [sym_pipe_expression] = STATE(1450), - [sym_module_pack] = STATE(1450), - [sym__definition_signature] = STATE(5016), - [sym_formal_parameters] = STATE(4529), - [sym__jsx_element] = STATE(1450), - [sym_jsx_element] = STATE(1456), - [sym_jsx_opening_element] = STATE(714), - [sym_jsx_self_closing_element] = STATE(1456), - [sym_decorator] = STATE(748), - [sym_subscript_expression] = STATE(1450), - [sym_member_expression] = STATE(1450), - [sym_lazy_expression] = STATE(1450), - [sym_extension_expression] = STATE(1450), - [sym_variant] = STATE(1450), - [sym_nested_variant_identifier] = STATE(1380), - [sym_polyvar] = STATE(1450), - [sym_module_primary_expression] = STATE(4283), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(1380), - [sym_polyvar_identifier] = STATE(1382), - [sym_value_identifier] = STATE(2348), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(1450), - [sym_unit] = STATE(1450), - [sym_string] = STATE(1450), - [sym_template_string] = STATE(1450), - [sym_character] = STATE(1450), - [sym__reserved_identifier] = STATE(1091), - [aux_sym_extension_expression_repeat1] = STATE(4287), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_async] = ACTIONS(861), - [anon_sym_if] = ACTIONS(149), - [anon_sym_switch] = ACTIONS(151), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_try] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_variant_identifier_token1] = ACTIONS(169), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(537), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(541), - [aux_sym_template_string_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(547), - [sym__dict_constructor] = ACTIONS(549), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(749)] = { - [sym_module_unpack] = STATE(3301), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_module_pack] = STATE(3416), - [sym_parameter] = STATE(4579), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym_decorator] = STATE(749), - [sym_nested_variant_identifier] = STATE(3024), - [sym_module_primary_expression] = STATE(4340), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(3024), - [sym_polyvar_identifier] = STATE(3035), - [sym_value_identifier] = STATE(3416), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3130), - [sym_unit] = STATE(3729), - [sym_string] = STATE(3130), - [sym_template_string] = STATE(3130), - [sym_character] = STATE(3130), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(209), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(1195), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_lazy] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(163), - [aux_sym_variant_identifier_token1] = ACTIONS(1207), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(1209), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1213), - [sym__dict_constructor] = ACTIONS(1215), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(750)] = { - [sym_module_unpack] = STATE(3301), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_module_pack] = STATE(3416), - [sym_parameter] = STATE(4579), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym_decorator] = STATE(750), - [sym_nested_variant_identifier] = STATE(3024), - [sym_module_primary_expression] = STATE(4340), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(3024), - [sym_polyvar_identifier] = STATE(3035), - [sym_value_identifier] = STATE(3416), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3130), - [sym_unit] = STATE(3729), - [sym_string] = STATE(3130), - [sym_template_string] = STATE(3130), - [sym_character] = STATE(3130), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_RPAREN] = ACTIONS(1217), - [anon_sym_module] = ACTIONS(209), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(1195), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_lazy] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(163), - [aux_sym_variant_identifier_token1] = ACTIONS(1207), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(1209), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1213), - [sym__dict_constructor] = ACTIONS(1215), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(751)] = { - [sym_module_unpack] = STATE(3301), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_module_pack] = STATE(3416), - [sym_parameter] = STATE(4446), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym_decorator] = STATE(751), - [sym_nested_variant_identifier] = STATE(3024), - [sym_module_primary_expression] = STATE(4340), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(3024), - [sym_polyvar_identifier] = STATE(3035), - [sym_value_identifier] = STATE(3416), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3130), - [sym_unit] = STATE(3729), - [sym_string] = STATE(3130), - [sym_template_string] = STATE(3130), - [sym_character] = STATE(3130), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_RPAREN] = ACTIONS(1219), - [anon_sym_module] = ACTIONS(209), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(1195), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_lazy] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(163), - [aux_sym_variant_identifier_token1] = ACTIONS(1207), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(1209), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1213), - [sym__dict_constructor] = ACTIONS(1215), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(752)] = { - [sym__definition_signature] = STATE(4780), - [sym_formal_parameters] = STATE(4529), - [sym_decorator] = STATE(752), - [sym_value_identifier] = STATE(4781), - [sym__reserved_identifier] = STATE(1091), + [sym__identifier] = ACTIONS(1226), [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1226), [anon_sym_module] = ACTIONS(1226), - [anon_sym_unpack] = ACTIONS(1228), - [anon_sym_EQ_GT] = ACTIONS(1221), + [anon_sym_unpack] = ACTIONS(1226), + [anon_sym_EQ_GT] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(1226), [anon_sym_PLUS] = ACTIONS(1226), [anon_sym_DASH] = ACTIONS(1226), [anon_sym_GT] = ACTIONS(1226), [anon_sym_DOT] = ACTIONS(1226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_QMARK] = ACTIONS(1221), - [anon_sym_async] = ACTIONS(1228), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_QMARK] = ACTIONS(1228), + [anon_sym_async] = ACTIONS(1226), [anon_sym_if] = ACTIONS(1226), [anon_sym_switch] = ACTIONS(1226), - [anon_sym_POUND] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(1228), [anon_sym_try] = ACTIONS(1226), - [anon_sym_DASH_GT] = ACTIONS(1221), - [anon_sym_PIPE_GT] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1226), + [anon_sym_DASH_GT] = ACTIONS(1228), + [anon_sym_PIPE_GT] = ACTIONS(1228), [anon_sym_lazy] = ACTIONS(1226), [anon_sym_SLASH] = ACTIONS(1226), - [anon_sym_COLON_EQ] = ACTIONS(1221), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1221), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1228), [anon_sym_AMP_AMP] = ACTIONS(1226), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1221), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1228), [anon_sym_PIPE_PIPE] = ACTIONS(1226), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1221), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1228), [anon_sym_PLUS_PLUS] = ACTIONS(1226), [anon_sym_PLUS_DOT] = ACTIONS(1226), [anon_sym_DASH_DOT] = ACTIONS(1226), [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_STAR_DOT] = ACTIONS(1221), - [anon_sym_PERCENT] = ACTIONS(1221), - [anon_sym_STAR_STAR] = ACTIONS(1221), - [anon_sym_SLASH_DOT] = ACTIONS(1221), - [anon_sym_LT_LT] = ACTIONS(1221), - [anon_sym_GT_GT_GT] = ACTIONS(1221), + [anon_sym_STAR_DOT] = ACTIONS(1228), + [anon_sym_PERCENT] = ACTIONS(1228), + [anon_sym_STAR_STAR] = ACTIONS(1228), + [anon_sym_SLASH_DOT] = ACTIONS(1228), + [anon_sym_LT_LT] = ACTIONS(1228), + [anon_sym_GT_GT_GT] = ACTIONS(1228), [anon_sym_GT_GT] = ACTIONS(1226), - [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1228), [anon_sym_EQ_EQ] = ACTIONS(1226), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1228), [anon_sym_BANG_EQ] = ACTIONS(1226), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), - [anon_sym_GT_EQ] = ACTIONS(1221), - [anon_sym_COLON_GT] = ACTIONS(1221), - [aux_sym_variant_identifier_token1] = ACTIONS(1221), - [aux_sym_value_identifier_token1] = ACTIONS(1231), - [sym__escape_identifier] = ACTIONS(1231), - [sym_number] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1228), + [anon_sym_GT_EQ] = ACTIONS(1228), + [anon_sym_COLON_GT] = ACTIONS(1228), + [aux_sym_variant_identifier_token1] = ACTIONS(1228), + [sym__escape_identifier] = ACTIONS(1226), + [sym_number] = ACTIONS(1228), [sym_true] = ACTIONS(1226), [sym_false] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1221), - [aux_sym_template_string_token1] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1221), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1221), - [sym__dict_constructor] = ACTIONS(1221), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(753)] = { - [sym_module_unpack] = STATE(3301), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_module_pack] = STATE(3416), - [sym_parameter] = STATE(4579), - [sym_labeled_parameter] = STATE(4647), - [sym_abstract_type] = STATE(4647), - [sym__pattern] = STATE(3848), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym_decorator] = STATE(753), - [sym_nested_variant_identifier] = STATE(3024), - [sym_module_primary_expression] = STATE(4340), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(3024), - [sym_polyvar_identifier] = STATE(3035), - [sym_value_identifier] = STATE(3416), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3130), - [sym_unit] = STATE(3729), - [sym_string] = STATE(3130), - [sym_template_string] = STATE(3130), - [sym_character] = STATE(3130), - [sym_uncurry] = STATE(762), - [sym__reserved_identifier] = STATE(1091), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_module] = ACTIONS(209), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(1195), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_lazy] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(163), - [aux_sym_variant_identifier_token1] = ACTIONS(1207), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(1209), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(1228), + [aux_sym_template_string_token1] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1213), - [sym__dict_constructor] = ACTIONS(1215), + [sym__list_constructor] = ACTIONS(1228), + [sym__dict_constructor] = ACTIONS(1228), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, - [STATE(754)] = { - [sym_type_annotation] = STATE(839), - [sym_variant_parameters] = STATE(758), - [sym_decorator] = STATE(754), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_module] = ACTIONS(1240), - [anon_sym_unpack] = ACTIONS(1240), - [anon_sym_EQ_GT] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1240), - [anon_sym_DOT] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_QMARK] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_DASH_GT] = ACTIONS(1234), - [anon_sym_PIPE_GT] = ACTIONS(1234), - [anon_sym_lazy] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1234), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_PLUS_DOT] = ACTIONS(1240), - [anon_sym_DASH_DOT] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_STAR_DOT] = ACTIONS(1234), - [anon_sym_PERCENT] = ACTIONS(1234), - [anon_sym_STAR_STAR] = ACTIONS(1234), - [anon_sym_SLASH_DOT] = ACTIONS(1234), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_GT_GT_GT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1234), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1234), - [anon_sym_COLON_GT] = ACTIONS(1234), - [aux_sym_variant_identifier_token1] = ACTIONS(1234), - [aux_sym_value_identifier_token1] = ACTIONS(1240), - [sym__escape_identifier] = ACTIONS(1240), - [sym_number] = ACTIONS(1234), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1234), - [aux_sym_template_string_token1] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1234), - [sym__dict_constructor] = ACTIONS(1234), + [STATE(741)] = { + [sym_decorator] = STATE(741), + [sym__identifier] = ACTIONS(1230), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_COLON] = ACTIONS(1230), + [anon_sym_module] = ACTIONS(1230), + [anon_sym_unpack] = ACTIONS(1230), + [anon_sym_EQ_GT] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_GT] = ACTIONS(1230), + [anon_sym_DOT] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_QMARK] = ACTIONS(1232), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_switch] = ACTIONS(1230), + [anon_sym_POUND] = ACTIONS(1232), + [anon_sym_try] = ACTIONS(1230), + [anon_sym_as] = ACTIONS(1230), + [anon_sym_DASH_GT] = ACTIONS(1232), + [anon_sym_PIPE_GT] = ACTIONS(1232), + [anon_sym_lazy] = ACTIONS(1230), + [anon_sym_SLASH] = ACTIONS(1230), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1232), + [anon_sym_AMP_AMP] = ACTIONS(1230), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1232), + [anon_sym_PIPE_PIPE] = ACTIONS(1230), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_PLUS_DOT] = ACTIONS(1230), + [anon_sym_DASH_DOT] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_STAR_DOT] = ACTIONS(1232), + [anon_sym_PERCENT] = ACTIONS(1232), + [anon_sym_STAR_STAR] = ACTIONS(1232), + [anon_sym_SLASH_DOT] = ACTIONS(1232), + [anon_sym_LT_LT] = ACTIONS(1232), + [anon_sym_GT_GT_GT] = ACTIONS(1232), + [anon_sym_GT_GT] = ACTIONS(1230), + [anon_sym_LT_EQ] = ACTIONS(1232), + [anon_sym_EQ_EQ] = ACTIONS(1230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1232), + [anon_sym_BANG_EQ] = ACTIONS(1230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1232), + [anon_sym_GT_EQ] = ACTIONS(1232), + [anon_sym_COLON_GT] = ACTIONS(1232), + [aux_sym_variant_identifier_token1] = ACTIONS(1232), + [sym__escape_identifier] = ACTIONS(1230), + [sym_number] = ACTIONS(1232), + [sym_true] = ACTIONS(1230), + [sym_false] = ACTIONS(1230), + [anon_sym_DQUOTE] = ACTIONS(1232), + [aux_sym_template_string_token1] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1232), + [sym__dict_constructor] = ACTIONS(1232), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, - [STATE(755)] = { - [sym_type_annotation] = STATE(839), - [sym_variant_parameters] = STATE(767), - [sym_decorator] = STATE(755), + [STATE(742)] = { + [sym_decorator] = STATE(742), + [sym__identifier] = ACTIONS(1234), [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_COLON] = ACTIONS(1242), - [anon_sym_module] = ACTIONS(1240), - [anon_sym_unpack] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1240), - [anon_sym_DOT] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_QMARK] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_DASH_GT] = ACTIONS(1234), - [anon_sym_PIPE_GT] = ACTIONS(1234), - [anon_sym_lazy] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1234), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_PLUS_DOT] = ACTIONS(1240), - [anon_sym_DASH_DOT] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_STAR_DOT] = ACTIONS(1234), - [anon_sym_PERCENT] = ACTIONS(1234), - [anon_sym_STAR_STAR] = ACTIONS(1234), - [anon_sym_SLASH_DOT] = ACTIONS(1234), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_GT_GT_GT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1234), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1234), - [anon_sym_COLON_GT] = ACTIONS(1234), - [aux_sym_variant_identifier_token1] = ACTIONS(1234), - [aux_sym_value_identifier_token1] = ACTIONS(1240), - [sym__escape_identifier] = ACTIONS(1240), - [sym_number] = ACTIONS(1234), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1234), - [aux_sym_template_string_token1] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_unpack] = ACTIONS(1234), + [anon_sym_EQ_GT] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_GT] = ACTIONS(1234), + [anon_sym_DOT] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_QMARK] = ACTIONS(1236), + [anon_sym_async] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_POUND] = ACTIONS(1236), + [anon_sym_try] = ACTIONS(1234), + [anon_sym_as] = ACTIONS(1234), + [anon_sym_DASH_GT] = ACTIONS(1236), + [anon_sym_PIPE_GT] = ACTIONS(1236), + [anon_sym_lazy] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(1234), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1236), + [anon_sym_AMP_AMP] = ACTIONS(1234), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1236), + [anon_sym_PIPE_PIPE] = ACTIONS(1234), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_PLUS_DOT] = ACTIONS(1234), + [anon_sym_DASH_DOT] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_STAR_DOT] = ACTIONS(1236), + [anon_sym_PERCENT] = ACTIONS(1236), + [anon_sym_STAR_STAR] = ACTIONS(1236), + [anon_sym_SLASH_DOT] = ACTIONS(1236), + [anon_sym_LT_LT] = ACTIONS(1236), + [anon_sym_GT_GT_GT] = ACTIONS(1236), + [anon_sym_GT_GT] = ACTIONS(1234), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym_EQ_EQ] = ACTIONS(1234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1236), + [anon_sym_GT_EQ] = ACTIONS(1236), + [anon_sym_COLON_GT] = ACTIONS(1236), + [aux_sym_variant_identifier_token1] = ACTIONS(1236), + [aux_sym_type_identifier_token1] = ACTIONS(1234), + [sym__escape_identifier] = ACTIONS(1234), + [sym_number] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1236), + [aux_sym_template_string_token1] = ACTIONS(1236), [anon_sym_SQUOTE] = ACTIONS(1234), [sym__continuation] = ACTIONS(5), [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1234), - [sym__dict_constructor] = ACTIONS(1234), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(756)] = { - [sym_module_unpack] = STATE(3301), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_module_pack] = STATE(3416), - [sym__pattern] = STATE(3859), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_item_pattern] = STATE(4751), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym_decorator] = STATE(756), - [sym_nested_variant_identifier] = STATE(3024), - [sym_module_expression] = STATE(3893), - [sym_module_primary_expression] = STATE(3700), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(3024), - [sym_polyvar_identifier] = STATE(3035), - [sym_value_identifier] = STATE(3416), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3130), - [sym_unit] = STATE(3416), - [sym_string] = STATE(3130), - [sym_template_string] = STATE(3130), - [sym_character] = STATE(3130), - [sym__reserved_identifier] = STATE(1091), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_module] = ACTIONS(129), - [anon_sym_unpack] = ACTIONS(1195), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_lazy] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(163), - [aux_sym_variant_identifier_token1] = ACTIONS(1248), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(1209), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1213), - [sym__dict_constructor] = ACTIONS(1215), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(757)] = { - [sym_module_unpack] = STATE(3301), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_module_pack] = STATE(3416), - [sym__pattern] = STATE(3859), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_item_pattern] = STATE(4751), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym_decorator] = STATE(757), - [sym_nested_variant_identifier] = STATE(3024), - [sym_module_expression] = STATE(3908), - [sym_module_primary_expression] = STATE(3700), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_module_type_of] = STATE(4027), - [sym_module_type_constraint] = STATE(4027), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(3024), - [sym_polyvar_identifier] = STATE(3035), - [sym_value_identifier] = STATE(3416), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3130), - [sym_unit] = STATE(3416), - [sym_string] = STATE(3130), - [sym_template_string] = STATE(3130), - [sym_character] = STATE(3130), - [sym__reserved_identifier] = STATE(1091), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_module] = ACTIONS(129), - [anon_sym_unpack] = ACTIONS(1195), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_lazy] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(163), - [aux_sym_variant_identifier_token1] = ACTIONS(1248), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(1209), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1213), - [sym__dict_constructor] = ACTIONS(1215), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(758)] = { - [sym_type_annotation] = STATE(835), - [sym_decorator] = STATE(758), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_unpack] = ACTIONS(1252), - [anon_sym_EQ_GT] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(1250), - [anon_sym_async] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(1250), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_DASH_GT] = ACTIONS(1250), - [anon_sym_PIPE_GT] = ACTIONS(1250), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_PLUS_DOT] = ACTIONS(1252), - [anon_sym_DASH_DOT] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_STAR_DOT] = ACTIONS(1250), - [anon_sym_PERCENT] = ACTIONS(1250), - [anon_sym_STAR_STAR] = ACTIONS(1250), - [anon_sym_SLASH_DOT] = ACTIONS(1250), - [anon_sym_LT_LT] = ACTIONS(1250), - [anon_sym_GT_GT_GT] = ACTIONS(1250), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1250), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1250), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1250), - [anon_sym_COLON_GT] = ACTIONS(1250), - [aux_sym_variant_identifier_token1] = ACTIONS(1250), - [aux_sym_value_identifier_token1] = ACTIONS(1252), - [sym__escape_identifier] = ACTIONS(1252), - [sym_number] = ACTIONS(1250), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1250), - [aux_sym_template_string_token1] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1250), - [sym__dict_constructor] = ACTIONS(1250), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(759)] = { - [sym_decorator] = STATE(759), - [aux_sym_variant_type_repeat1] = STATE(784), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_module] = ACTIONS(1256), - [anon_sym_unpack] = ACTIONS(1256), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_DOT] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1254), - [anon_sym_async] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_POUND] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1256), - [anon_sym_as] = ACTIONS(1256), - [anon_sym_DASH_GT] = ACTIONS(1254), - [anon_sym_PIPE_GT] = ACTIONS(1254), - [anon_sym_lazy] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_PLUS_DOT] = ACTIONS(1256), - [anon_sym_DASH_DOT] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_STAR_DOT] = ACTIONS(1254), - [anon_sym_PERCENT] = ACTIONS(1254), - [anon_sym_STAR_STAR] = ACTIONS(1254), - [anon_sym_SLASH_DOT] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1254), - [anon_sym_GT_GT_GT] = ACTIONS(1254), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_COLON_GT] = ACTIONS(1254), - [aux_sym_variant_identifier_token1] = ACTIONS(1254), - [aux_sym_value_identifier_token1] = ACTIONS(1256), - [sym__escape_identifier] = ACTIONS(1256), - [sym_number] = ACTIONS(1254), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1254), - [aux_sym_template_string_token1] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1254), - [sym__dict_constructor] = ACTIONS(1254), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(760)] = { - [sym_decorator] = STATE(760), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_LPAREN] = ACTIONS(1258), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_unpack] = ACTIONS(1260), - [anon_sym_EQ_GT] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_DOT] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_async] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_POUND] = ACTIONS(1258), - [anon_sym_try] = ACTIONS(1260), - [anon_sym_as] = ACTIONS(1260), - [anon_sym_DASH_GT] = ACTIONS(1258), - [anon_sym_PIPE_GT] = ACTIONS(1258), - [anon_sym_lazy] = ACTIONS(1260), - [anon_sym_SLASH] = ACTIONS(1260), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_PLUS_DOT] = ACTIONS(1260), - [anon_sym_DASH_DOT] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_STAR_DOT] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_SLASH_DOT] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT_GT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_COLON_GT] = ACTIONS(1258), - [aux_sym_variant_identifier_token1] = ACTIONS(1258), - [aux_sym_type_identifier_token1] = ACTIONS(1265), - [aux_sym_value_identifier_token1] = ACTIONS(1260), - [sym__escape_identifier] = ACTIONS(1262), - [sym_number] = ACTIONS(1258), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1258), - [aux_sym_template_string_token1] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1260), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1258), - [sym__dict_constructor] = ACTIONS(1258), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(761)] = { - [sym_else_if_clause] = STATE(870), - [sym_else_clause] = STATE(984), - [sym_decorator] = STATE(761), - [aux_sym_if_expression_repeat1] = STATE(774), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_LPAREN] = ACTIONS(1267), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_unpack] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_GT] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(1269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1267), - [anon_sym_LBRACK] = ACTIONS(1267), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_async] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1271), - [anon_sym_switch] = ACTIONS(1269), - [anon_sym_POUND] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(1269), - [anon_sym_DASH_GT] = ACTIONS(1267), - [anon_sym_PIPE_GT] = ACTIONS(1267), - [anon_sym_lazy] = ACTIONS(1269), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1267), - [anon_sym_PIPE_PIPE] = ACTIONS(1269), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1267), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_PLUS_DOT] = ACTIONS(1269), - [anon_sym_DASH_DOT] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_DOT] = ACTIONS(1267), - [anon_sym_PERCENT] = ACTIONS(1267), - [anon_sym_STAR_STAR] = ACTIONS(1267), - [anon_sym_SLASH_DOT] = ACTIONS(1267), - [anon_sym_LT_LT] = ACTIONS(1267), - [anon_sym_GT_GT_GT] = ACTIONS(1267), - [anon_sym_GT_GT] = ACTIONS(1269), - [anon_sym_LT_EQ] = ACTIONS(1267), - [anon_sym_EQ_EQ] = ACTIONS(1269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1267), - [anon_sym_BANG_EQ] = ACTIONS(1269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1267), - [anon_sym_GT_EQ] = ACTIONS(1267), - [anon_sym_COLON_GT] = ACTIONS(1267), - [aux_sym_variant_identifier_token1] = ACTIONS(1267), - [aux_sym_value_identifier_token1] = ACTIONS(1269), - [sym__escape_identifier] = ACTIONS(1269), - [sym_number] = ACTIONS(1267), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1267), - [aux_sym_template_string_token1] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1267), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1267), - [sym__dict_constructor] = ACTIONS(1267), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(762)] = { - [sym_module_unpack] = STATE(3301), - [sym_polyvar_type_pattern] = STATE(3416), - [sym_module_pack] = STATE(3416), - [sym_labeled_parameter] = STATE(4567), - [sym_abstract_type] = STATE(4567), - [sym__pattern] = STATE(3924), - [sym_parenthesized_pattern] = STATE(3416), - [sym_range_pattern] = STATE(3416), - [sym_or_pattern] = STATE(3416), - [sym_exception_pattern] = STATE(3416), - [sym__destructuring_pattern] = STATE(3416), - [sym__literal_pattern] = STATE(3263), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym_lazy_pattern] = STATE(3416), - [sym_decorator] = STATE(762), - [sym_nested_variant_identifier] = STATE(3024), - [sym_module_primary_expression] = STATE(4340), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(3024), - [sym_polyvar_identifier] = STATE(3035), - [sym_value_identifier] = STATE(3416), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3130), - [sym_unit] = STATE(3655), - [sym_string] = STATE(3130), - [sym_template_string] = STATE(3130), - [sym_character] = STATE(3130), - [sym__reserved_identifier] = STATE(1091), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_module] = ACTIONS(209), - [anon_sym_type] = ACTIONS(131), - [anon_sym_unpack] = ACTIONS(1195), - [anon_sym_exception] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_QMARK] = ACTIONS(145), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_lazy] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(163), - [aux_sym_variant_identifier_token1] = ACTIONS(1207), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(1209), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1213), - [sym__dict_constructor] = ACTIONS(1215), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(763)] = { - [sym_decorator] = STATE(763), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_COLON] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_unpack] = ACTIONS(1275), - [anon_sym_EQ_GT] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_QMARK] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_switch] = ACTIONS(1275), - [anon_sym_POUND] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1275), - [anon_sym_as] = ACTIONS(1275), - [anon_sym_DASH_GT] = ACTIONS(1273), - [anon_sym_PIPE_GT] = ACTIONS(1273), - [anon_sym_lazy] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1275), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(1275), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1275), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_PLUS_DOT] = ACTIONS(1275), - [anon_sym_DASH_DOT] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_STAR_DOT] = ACTIONS(1273), - [anon_sym_PERCENT] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_SLASH_DOT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_GT_GT_GT] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1275), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1273), - [aux_sym_variant_identifier_token1] = ACTIONS(1273), - [aux_sym_value_identifier_token1] = ACTIONS(1275), - [sym__escape_identifier] = ACTIONS(1275), - [sym_number] = ACTIONS(1273), - [sym_true] = ACTIONS(1275), - [sym_false] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1273), - [aux_sym_template_string_token1] = ACTIONS(1273), - [anon_sym_SQUOTE] = ACTIONS(1273), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1273), - [sym__dict_constructor] = ACTIONS(1273), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(764)] = { - [sym_module_unpack] = STATE(3301), - [sym_polyvar_type_pattern] = STATE(3654), - [sym_module_pack] = STATE(3654), - [sym__pattern] = STATE(3639), - [sym_parenthesized_pattern] = STATE(3654), - [sym_range_pattern] = STATE(3654), - [sym_or_pattern] = STATE(3654), - [sym_exception_pattern] = STATE(3654), - [sym__destructuring_pattern] = STATE(3654), - [sym__literal_pattern] = STATE(3603), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym__collection_element_pattern] = STATE(4311), - [sym_spread_pattern] = STATE(3826), - [sym_lazy_pattern] = STATE(3654), - [sym_decorator] = STATE(764), - [sym_nested_variant_identifier] = STATE(3024), - [sym_module_primary_expression] = STATE(4340), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(3024), - [sym_polyvar_identifier] = STATE(3035), - [sym_value_identifier] = STATE(3654), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3130), - [sym_unit] = STATE(3654), - [sym_string] = STATE(3130), - [sym_template_string] = STATE(3130), - [sym_character] = STATE(3130), - [sym__reserved_identifier] = STATE(1091), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(1195), - [anon_sym_exception] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_lazy] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(163), - [aux_sym_variant_identifier_token1] = ACTIONS(1207), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(1209), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1213), - [sym__dict_constructor] = ACTIONS(1215), + [sym__list_constructor] = ACTIONS(1236), + [sym__dict_constructor] = ACTIONS(1236), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, - [STATE(765)] = { - [sym_module_unpack] = STATE(3301), - [sym_polyvar_type_pattern] = STATE(3654), - [sym_module_pack] = STATE(3654), - [sym__pattern] = STATE(3639), - [sym_parenthesized_pattern] = STATE(3654), - [sym_range_pattern] = STATE(3654), - [sym_or_pattern] = STATE(3654), - [sym_exception_pattern] = STATE(3654), - [sym__destructuring_pattern] = STATE(3654), - [sym__literal_pattern] = STATE(3603), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym__collection_element_pattern] = STATE(4425), - [sym_spread_pattern] = STATE(3826), - [sym_lazy_pattern] = STATE(3654), - [sym_decorator] = STATE(765), - [sym_nested_variant_identifier] = STATE(3024), - [sym_module_primary_expression] = STATE(4340), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(3024), - [sym_polyvar_identifier] = STATE(3035), - [sym_value_identifier] = STATE(3654), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3130), - [sym_unit] = STATE(3654), - [sym_string] = STATE(3130), - [sym_template_string] = STATE(3130), - [sym_character] = STATE(3130), - [sym__reserved_identifier] = STATE(1091), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(1195), - [anon_sym_exception] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_RBRACK] = ACTIONS(1283), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_lazy] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(163), - [aux_sym_variant_identifier_token1] = ACTIONS(1207), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(1209), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1213), - [sym__dict_constructor] = ACTIONS(1215), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(766)] = { - [sym_decorator] = STATE(766), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1287), - [anon_sym_module] = ACTIONS(1287), - [anon_sym_unpack] = ACTIONS(1287), - [anon_sym_EQ_GT] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1287), - [anon_sym_PLUS] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_GT] = ACTIONS(1287), - [anon_sym_DOT] = ACTIONS(1287), - [anon_sym_PIPE] = ACTIONS(1287), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_if] = ACTIONS(1287), - [anon_sym_switch] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_try] = ACTIONS(1287), - [anon_sym_as] = ACTIONS(1287), - [anon_sym_DASH_GT] = ACTIONS(1285), - [anon_sym_PIPE_GT] = ACTIONS(1285), - [anon_sym_lazy] = ACTIONS(1287), - [anon_sym_SLASH] = ACTIONS(1287), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1285), - [anon_sym_AMP_AMP] = ACTIONS(1287), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1285), - [anon_sym_PIPE_PIPE] = ACTIONS(1287), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_PLUS_DOT] = ACTIONS(1287), - [anon_sym_DASH_DOT] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_STAR_DOT] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_STAR_STAR] = ACTIONS(1285), - [anon_sym_SLASH_DOT] = ACTIONS(1285), - [anon_sym_LT_LT] = ACTIONS(1285), - [anon_sym_GT_GT_GT] = ACTIONS(1285), - [anon_sym_GT_GT] = ACTIONS(1287), - [anon_sym_LT_EQ] = ACTIONS(1285), - [anon_sym_EQ_EQ] = ACTIONS(1287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1285), - [anon_sym_BANG_EQ] = ACTIONS(1287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1285), - [anon_sym_GT_EQ] = ACTIONS(1285), - [anon_sym_COLON_GT] = ACTIONS(1285), - [aux_sym_variant_identifier_token1] = ACTIONS(1285), - [aux_sym_value_identifier_token1] = ACTIONS(1287), - [sym__escape_identifier] = ACTIONS(1287), - [sym_number] = ACTIONS(1285), - [sym_true] = ACTIONS(1287), - [sym_false] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [aux_sym_template_string_token1] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1285), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1285), - [sym__dict_constructor] = ACTIONS(1285), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(767)] = { - [sym_type_annotation] = STATE(835), - [sym_decorator] = STATE(767), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1242), - [anon_sym_module] = ACTIONS(1252), - [anon_sym_unpack] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_DOT] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(1250), - [anon_sym_async] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(1250), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_as] = ACTIONS(1252), - [anon_sym_DASH_GT] = ACTIONS(1250), - [anon_sym_PIPE_GT] = ACTIONS(1250), - [anon_sym_lazy] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_PLUS_DOT] = ACTIONS(1252), - [anon_sym_DASH_DOT] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_STAR_DOT] = ACTIONS(1250), - [anon_sym_PERCENT] = ACTIONS(1250), - [anon_sym_STAR_STAR] = ACTIONS(1250), - [anon_sym_SLASH_DOT] = ACTIONS(1250), - [anon_sym_LT_LT] = ACTIONS(1250), - [anon_sym_GT_GT_GT] = ACTIONS(1250), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1250), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1250), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1250), - [anon_sym_COLON_GT] = ACTIONS(1250), - [aux_sym_variant_identifier_token1] = ACTIONS(1250), - [aux_sym_value_identifier_token1] = ACTIONS(1252), - [sym__escape_identifier] = ACTIONS(1252), - [sym_number] = ACTIONS(1250), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1250), - [aux_sym_template_string_token1] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1250), - [sym__dict_constructor] = ACTIONS(1250), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(768)] = { - [sym_module_unpack] = STATE(3301), - [sym_polyvar_type_pattern] = STATE(3654), - [sym_module_pack] = STATE(3654), - [sym__pattern] = STATE(3639), - [sym_parenthesized_pattern] = STATE(3654), - [sym_range_pattern] = STATE(3654), - [sym_or_pattern] = STATE(3654), - [sym_exception_pattern] = STATE(3654), - [sym__destructuring_pattern] = STATE(3654), - [sym__literal_pattern] = STATE(3603), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym__collection_element_pattern] = STATE(4311), - [sym_spread_pattern] = STATE(3826), - [sym_lazy_pattern] = STATE(3654), - [sym_decorator] = STATE(768), - [sym_nested_variant_identifier] = STATE(3024), - [sym_module_primary_expression] = STATE(4340), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(3024), - [sym_polyvar_identifier] = STATE(3035), - [sym_value_identifier] = STATE(3654), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3130), - [sym_unit] = STATE(3654), - [sym_string] = STATE(3130), - [sym_template_string] = STATE(3130), - [sym_character] = STATE(3130), - [sym__reserved_identifier] = STATE(1091), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(1195), - [anon_sym_exception] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_RBRACK] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_lazy] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(163), - [aux_sym_variant_identifier_token1] = ACTIONS(1207), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(1209), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1213), - [sym__dict_constructor] = ACTIONS(1215), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(769)] = { - [sym_decorator] = STATE(769), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_COLON] = ACTIONS(1293), - [anon_sym_module] = ACTIONS(1293), - [anon_sym_unpack] = ACTIONS(1293), - [anon_sym_EQ_GT] = ACTIONS(1291), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_GT] = ACTIONS(1293), - [anon_sym_DOT] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_switch] = ACTIONS(1293), - [anon_sym_POUND] = ACTIONS(1291), - [anon_sym_try] = ACTIONS(1293), - [anon_sym_as] = ACTIONS(1293), - [anon_sym_DASH_GT] = ACTIONS(1291), - [anon_sym_PIPE_GT] = ACTIONS(1291), - [anon_sym_lazy] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(1293), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1291), - [anon_sym_AMP_AMP] = ACTIONS(1293), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1291), - [anon_sym_PIPE_PIPE] = ACTIONS(1293), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1293), - [anon_sym_PLUS_DOT] = ACTIONS(1293), - [anon_sym_DASH_DOT] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_STAR_DOT] = ACTIONS(1291), - [anon_sym_PERCENT] = ACTIONS(1291), - [anon_sym_STAR_STAR] = ACTIONS(1291), - [anon_sym_SLASH_DOT] = ACTIONS(1291), - [anon_sym_LT_LT] = ACTIONS(1291), - [anon_sym_GT_GT_GT] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1293), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_EQ_EQ] = ACTIONS(1293), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1291), - [anon_sym_BANG_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1291), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1291), - [aux_sym_variant_identifier_token1] = ACTIONS(1291), - [aux_sym_value_identifier_token1] = ACTIONS(1293), - [sym__escape_identifier] = ACTIONS(1293), - [sym_number] = ACTIONS(1291), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1291), - [aux_sym_template_string_token1] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1291), - [sym__dict_constructor] = ACTIONS(1291), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(770)] = { - [sym_module_unpack] = STATE(3301), - [sym_polyvar_type_pattern] = STATE(3654), - [sym_module_pack] = STATE(3654), - [sym__pattern] = STATE(3639), - [sym_parenthesized_pattern] = STATE(3654), - [sym_range_pattern] = STATE(3654), - [sym_or_pattern] = STATE(3654), - [sym_exception_pattern] = STATE(3654), - [sym__destructuring_pattern] = STATE(3654), - [sym__literal_pattern] = STATE(3603), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym__collection_element_pattern] = STATE(4311), - [sym_spread_pattern] = STATE(3826), - [sym_lazy_pattern] = STATE(3654), - [sym_decorator] = STATE(770), - [sym_nested_variant_identifier] = STATE(3024), - [sym_module_primary_expression] = STATE(4340), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(3024), - [sym_polyvar_identifier] = STATE(3035), - [sym_value_identifier] = STATE(3654), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3130), - [sym_unit] = STATE(3654), - [sym_string] = STATE(3130), - [sym_template_string] = STATE(3130), - [sym_character] = STATE(3130), - [sym__reserved_identifier] = STATE(1091), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1295), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(1195), - [anon_sym_exception] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_lazy] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(163), - [aux_sym_variant_identifier_token1] = ACTIONS(1207), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(1209), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1213), - [sym__dict_constructor] = ACTIONS(1215), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(771)] = { - [sym_module_unpack] = STATE(3301), - [sym_polyvar_type_pattern] = STATE(3654), - [sym_module_pack] = STATE(3654), - [sym__pattern] = STATE(3639), - [sym_parenthesized_pattern] = STATE(3654), - [sym_range_pattern] = STATE(3654), - [sym_or_pattern] = STATE(3654), - [sym_exception_pattern] = STATE(3654), - [sym__destructuring_pattern] = STATE(3654), - [sym__literal_pattern] = STATE(3603), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym__collection_element_pattern] = STATE(4311), - [sym_spread_pattern] = STATE(3826), - [sym_lazy_pattern] = STATE(3654), - [sym_decorator] = STATE(771), - [sym_nested_variant_identifier] = STATE(3024), - [sym_module_primary_expression] = STATE(4340), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(3024), - [sym_polyvar_identifier] = STATE(3035), - [sym_value_identifier] = STATE(3654), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3130), - [sym_unit] = STATE(3654), - [sym_string] = STATE(3130), - [sym_template_string] = STATE(3130), - [sym_character] = STATE(3130), - [sym__reserved_identifier] = STATE(1091), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(1195), - [anon_sym_exception] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_RBRACK] = ACTIONS(1297), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_lazy] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(163), - [aux_sym_variant_identifier_token1] = ACTIONS(1207), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(1209), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1213), - [sym__dict_constructor] = ACTIONS(1215), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(772)] = { - [sym_decorator] = STATE(772), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1299), - [anon_sym_COLON] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_unpack] = ACTIONS(1301), - [anon_sym_EQ_GT] = ACTIONS(1299), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_DOT] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_QMARK] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_switch] = ACTIONS(1301), - [anon_sym_POUND] = ACTIONS(1299), - [anon_sym_try] = ACTIONS(1301), - [anon_sym_as] = ACTIONS(1301), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_PIPE_GT] = ACTIONS(1299), - [anon_sym_lazy] = ACTIONS(1301), - [anon_sym_SLASH] = ACTIONS(1301), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1299), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1299), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_PLUS_DOT] = ACTIONS(1301), - [anon_sym_DASH_DOT] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_STAR_DOT] = ACTIONS(1299), - [anon_sym_PERCENT] = ACTIONS(1299), - [anon_sym_STAR_STAR] = ACTIONS(1299), - [anon_sym_SLASH_DOT] = ACTIONS(1299), - [anon_sym_LT_LT] = ACTIONS(1299), - [anon_sym_GT_GT_GT] = ACTIONS(1299), - [anon_sym_GT_GT] = ACTIONS(1301), - [anon_sym_LT_EQ] = ACTIONS(1299), - [anon_sym_EQ_EQ] = ACTIONS(1301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1299), - [anon_sym_BANG_EQ] = ACTIONS(1301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1299), - [anon_sym_GT_EQ] = ACTIONS(1299), - [anon_sym_COLON_GT] = ACTIONS(1299), - [aux_sym_variant_identifier_token1] = ACTIONS(1299), - [aux_sym_value_identifier_token1] = ACTIONS(1301), - [sym__escape_identifier] = ACTIONS(1301), - [sym_number] = ACTIONS(1299), - [sym_true] = ACTIONS(1301), - [sym_false] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1299), - [aux_sym_template_string_token1] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1299), - [sym__dict_constructor] = ACTIONS(1299), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(773)] = { - [sym_type_arguments] = STATE(814), - [sym_decorator] = STATE(773), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1303), - [anon_sym_module] = ACTIONS(1305), - [anon_sym_unpack] = ACTIONS(1305), - [anon_sym_EQ_GT] = ACTIONS(1303), - [anon_sym_LT] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_DOT] = ACTIONS(1305), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1303), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_QMARK] = ACTIONS(1303), - [anon_sym_async] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_switch] = ACTIONS(1305), - [anon_sym_POUND] = ACTIONS(1303), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_as] = ACTIONS(1305), - [anon_sym_DASH_GT] = ACTIONS(1303), - [anon_sym_PIPE_GT] = ACTIONS(1303), - [anon_sym_lazy] = ACTIONS(1305), - [anon_sym_SLASH] = ACTIONS(1305), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1303), - [anon_sym_AMP_AMP] = ACTIONS(1305), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1303), - [anon_sym_PIPE_PIPE] = ACTIONS(1305), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_PLUS_DOT] = ACTIONS(1305), - [anon_sym_DASH_DOT] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_STAR_DOT] = ACTIONS(1303), - [anon_sym_PERCENT] = ACTIONS(1303), - [anon_sym_STAR_STAR] = ACTIONS(1303), - [anon_sym_SLASH_DOT] = ACTIONS(1303), - [anon_sym_LT_LT] = ACTIONS(1303), - [anon_sym_GT_GT_GT] = ACTIONS(1303), - [anon_sym_GT_GT] = ACTIONS(1305), - [anon_sym_LT_EQ] = ACTIONS(1303), - [anon_sym_EQ_EQ] = ACTIONS(1305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1303), - [anon_sym_BANG_EQ] = ACTIONS(1305), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1303), - [anon_sym_GT_EQ] = ACTIONS(1303), - [anon_sym_COLON_GT] = ACTIONS(1303), - [aux_sym_variant_identifier_token1] = ACTIONS(1303), - [aux_sym_value_identifier_token1] = ACTIONS(1305), - [sym__escape_identifier] = ACTIONS(1305), - [sym_number] = ACTIONS(1303), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1303), - [aux_sym_template_string_token1] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1303), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1303), - [sym__dict_constructor] = ACTIONS(1303), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(774)] = { - [sym_else_if_clause] = STATE(870), - [sym_else_clause] = STATE(999), - [sym_decorator] = STATE(774), - [aux_sym_if_expression_repeat1] = STATE(827), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_unpack] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_DOT] = ACTIONS(1312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_QMARK] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1271), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(1310), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_DASH_GT] = ACTIONS(1310), - [anon_sym_PIPE_GT] = ACTIONS(1310), - [anon_sym_lazy] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_PLUS_DOT] = ACTIONS(1312), - [anon_sym_DASH_DOT] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_STAR_DOT] = ACTIONS(1310), - [anon_sym_PERCENT] = ACTIONS(1310), - [anon_sym_STAR_STAR] = ACTIONS(1310), - [anon_sym_SLASH_DOT] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_GT_GT_GT] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1310), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_COLON_GT] = ACTIONS(1310), - [aux_sym_variant_identifier_token1] = ACTIONS(1310), - [aux_sym_value_identifier_token1] = ACTIONS(1312), - [sym__escape_identifier] = ACTIONS(1312), - [sym_number] = ACTIONS(1310), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1310), - [aux_sym_template_string_token1] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1310), - [sym__dict_constructor] = ACTIONS(1310), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(775)] = { - [sym_module_unpack] = STATE(3301), - [sym_polyvar_type_pattern] = STATE(3654), - [sym_module_pack] = STATE(3654), - [sym__pattern] = STATE(3639), - [sym_parenthesized_pattern] = STATE(3654), - [sym_range_pattern] = STATE(3654), - [sym_or_pattern] = STATE(3654), - [sym_exception_pattern] = STATE(3654), - [sym__destructuring_pattern] = STATE(3654), - [sym__literal_pattern] = STATE(3603), - [sym_variant_pattern] = STATE(3229), - [sym_polyvar_pattern] = STATE(3229), - [sym_record_pattern] = STATE(3229), - [sym_tuple_pattern] = STATE(3229), - [sym_array_pattern] = STATE(3229), - [sym_list_pattern] = STATE(3229), - [sym_dict_pattern] = STATE(3229), - [sym__collection_element_pattern] = STATE(4406), - [sym_spread_pattern] = STATE(3826), - [sym_lazy_pattern] = STATE(3654), - [sym_decorator] = STATE(775), - [sym_nested_variant_identifier] = STATE(3024), - [sym_module_primary_expression] = STATE(4340), - [sym_parenthesized_module_expression] = STATE(3301), - [sym_module_identifier_path] = STATE(3301), - [sym_functor_use] = STATE(3301), - [sym_variant_identifier] = STATE(3024), - [sym_polyvar_identifier] = STATE(3035), - [sym_value_identifier] = STATE(3654), - [sym_module_identifier] = STATE(3322), - [sym_regex] = STATE(3130), - [sym_unit] = STATE(3654), - [sym_string] = STATE(3130), - [sym_template_string] = STATE(3130), - [sym_character] = STATE(3130), - [sym__reserved_identifier] = STATE(1091), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_module] = ACTIONS(209), - [anon_sym_unpack] = ACTIONS(1195), - [anon_sym_exception] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_QMARK] = ACTIONS(217), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_lazy] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(163), - [aux_sym_variant_identifier_token1] = ACTIONS(1207), - [aux_sym_value_identifier_token1] = ACTIONS(171), - [sym__escape_identifier] = ACTIONS(171), - [sym_number] = ACTIONS(1209), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(177), - [aux_sym_template_string_token1] = ACTIONS(179), - [anon_sym_SQUOTE] = ACTIONS(181), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1213), - [sym__dict_constructor] = ACTIONS(1215), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(776)] = { - [sym_decorator] = STATE(776), - [aux_sym_variant_type_repeat1] = STATE(781), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_module] = ACTIONS(1256), - [anon_sym_unpack] = ACTIONS(1256), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_DOT] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1254), - [anon_sym_async] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_POUND] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1256), - [anon_sym_as] = ACTIONS(1256), - [anon_sym_DASH_GT] = ACTIONS(1254), - [anon_sym_PIPE_GT] = ACTIONS(1254), - [anon_sym_lazy] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_PLUS_DOT] = ACTIONS(1256), - [anon_sym_DASH_DOT] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_STAR_DOT] = ACTIONS(1254), - [anon_sym_PERCENT] = ACTIONS(1254), - [anon_sym_STAR_STAR] = ACTIONS(1254), - [anon_sym_SLASH_DOT] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1254), - [anon_sym_GT_GT_GT] = ACTIONS(1254), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_COLON_GT] = ACTIONS(1254), - [aux_sym_variant_identifier_token1] = ACTIONS(1254), - [aux_sym_value_identifier_token1] = ACTIONS(1256), - [sym__escape_identifier] = ACTIONS(1256), - [sym_number] = ACTIONS(1254), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1254), - [aux_sym_template_string_token1] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1254), - [sym__dict_constructor] = ACTIONS(1254), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(777)] = { - [sym_decorator] = STATE(777), - [aux_sym_variant_type_repeat1] = STATE(776), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_unpack] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_QMARK] = ACTIONS(1318), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1318), - [anon_sym_try] = ACTIONS(1320), - [anon_sym_as] = ACTIONS(1320), - [anon_sym_DASH_GT] = ACTIONS(1318), - [anon_sym_PIPE_GT] = ACTIONS(1318), - [anon_sym_lazy] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_PLUS_DOT] = ACTIONS(1320), - [anon_sym_DASH_DOT] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_STAR_DOT] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_STAR_STAR] = ACTIONS(1318), - [anon_sym_SLASH_DOT] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1318), - [anon_sym_GT_GT_GT] = ACTIONS(1318), - [anon_sym_GT_GT] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_COLON_GT] = ACTIONS(1318), - [aux_sym_variant_identifier_token1] = ACTIONS(1318), - [aux_sym_value_identifier_token1] = ACTIONS(1320), - [sym__escape_identifier] = ACTIONS(1320), - [sym_number] = ACTIONS(1318), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1318), - [aux_sym_template_string_token1] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1318), - [sym__dict_constructor] = ACTIONS(1318), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(778)] = { - [sym_decorator] = STATE(778), - [aux_sym_variant_type_repeat1] = STATE(780), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_module] = ACTIONS(1256), - [anon_sym_unpack] = ACTIONS(1256), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_DOT] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1254), - [anon_sym_async] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_POUND] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1256), - [anon_sym_as] = ACTIONS(1256), - [anon_sym_DASH_GT] = ACTIONS(1254), - [anon_sym_PIPE_GT] = ACTIONS(1254), - [anon_sym_lazy] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_PLUS_DOT] = ACTIONS(1256), - [anon_sym_DASH_DOT] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_STAR_DOT] = ACTIONS(1254), - [anon_sym_PERCENT] = ACTIONS(1254), - [anon_sym_STAR_STAR] = ACTIONS(1254), - [anon_sym_SLASH_DOT] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1254), - [anon_sym_GT_GT_GT] = ACTIONS(1254), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_COLON_GT] = ACTIONS(1254), - [aux_sym_variant_identifier_token1] = ACTIONS(1254), - [aux_sym_value_identifier_token1] = ACTIONS(1256), - [sym__escape_identifier] = ACTIONS(1256), - [sym_number] = ACTIONS(1254), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1254), - [aux_sym_template_string_token1] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1254), - [sym__dict_constructor] = ACTIONS(1254), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(779)] = { - [sym_decorator] = STATE(779), - [aux_sym_variant_type_repeat1] = STATE(783), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_unpack] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_QMARK] = ACTIONS(1318), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1318), - [anon_sym_try] = ACTIONS(1320), - [anon_sym_as] = ACTIONS(1320), - [anon_sym_DASH_GT] = ACTIONS(1318), - [anon_sym_PIPE_GT] = ACTIONS(1318), - [anon_sym_lazy] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_PLUS_DOT] = ACTIONS(1320), - [anon_sym_DASH_DOT] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_STAR_DOT] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_STAR_STAR] = ACTIONS(1318), - [anon_sym_SLASH_DOT] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1318), - [anon_sym_GT_GT_GT] = ACTIONS(1318), - [anon_sym_GT_GT] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_COLON_GT] = ACTIONS(1318), - [aux_sym_variant_identifier_token1] = ACTIONS(1318), - [aux_sym_value_identifier_token1] = ACTIONS(1320), - [sym__escape_identifier] = ACTIONS(1320), - [sym_number] = ACTIONS(1318), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1318), - [aux_sym_template_string_token1] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1318), - [sym__dict_constructor] = ACTIONS(1318), - [sym__decorator] = ACTIONS(7), - [sym__decorator_inline] = ACTIONS(9), - }, - [STATE(780)] = { - [sym_decorator] = STATE(780), - [aux_sym_variant_type_repeat1] = STATE(781), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_unpack] = ACTIONS(1324), - [anon_sym_EQ_GT] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_async] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1322), - [anon_sym_try] = ACTIONS(1324), - [anon_sym_as] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1322), - [anon_sym_PIPE_GT] = ACTIONS(1322), - [anon_sym_lazy] = ACTIONS(1324), - [anon_sym_SLASH] = ACTIONS(1324), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1324), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_PLUS_DOT] = ACTIONS(1324), - [anon_sym_DASH_DOT] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_STAR_DOT] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_STAR_STAR] = ACTIONS(1322), - [anon_sym_SLASH_DOT] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT_GT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1324), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_COLON_GT] = ACTIONS(1322), - [aux_sym_variant_identifier_token1] = ACTIONS(1322), - [aux_sym_value_identifier_token1] = ACTIONS(1324), - [sym__escape_identifier] = ACTIONS(1324), - [sym_number] = ACTIONS(1322), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1322), - [aux_sym_template_string_token1] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1322), - [sym__dict_constructor] = ACTIONS(1322), + [STATE(743)] = { + [sym_type_arguments] = STATE(795), + [sym_decorator] = STATE(743), + [sym__identifier] = ACTIONS(1238), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_module] = ACTIONS(1238), + [anon_sym_unpack] = ACTIONS(1238), + [anon_sym_EQ_GT] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_DOT] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1240), + [anon_sym_async] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_try] = ACTIONS(1238), + [anon_sym_as] = ACTIONS(1238), + [anon_sym_DASH_GT] = ACTIONS(1240), + [anon_sym_PIPE_GT] = ACTIONS(1240), + [anon_sym_lazy] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1240), + [anon_sym_AMP_AMP] = ACTIONS(1238), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1238), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1238), + [anon_sym_PLUS_DOT] = ACTIONS(1238), + [anon_sym_DASH_DOT] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_STAR_DOT] = ACTIONS(1240), + [anon_sym_PERCENT] = ACTIONS(1240), + [anon_sym_STAR_STAR] = ACTIONS(1240), + [anon_sym_SLASH_DOT] = ACTIONS(1240), + [anon_sym_LT_LT] = ACTIONS(1240), + [anon_sym_GT_GT_GT] = ACTIONS(1240), + [anon_sym_GT_GT] = ACTIONS(1238), + [anon_sym_LT_EQ] = ACTIONS(1240), + [anon_sym_EQ_EQ] = ACTIONS(1238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1240), + [anon_sym_BANG_EQ] = ACTIONS(1238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1240), + [anon_sym_GT_EQ] = ACTIONS(1240), + [anon_sym_COLON_GT] = ACTIONS(1240), + [aux_sym_variant_identifier_token1] = ACTIONS(1240), + [sym__escape_identifier] = ACTIONS(1238), + [sym_number] = ACTIONS(1240), + [sym_true] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1240), + [aux_sym_template_string_token1] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1240), + [sym__dict_constructor] = ACTIONS(1240), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, - [STATE(781)] = { - [sym_decorator] = STATE(781), - [aux_sym_variant_type_repeat1] = STATE(781), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_module] = ACTIONS(1328), - [anon_sym_unpack] = ACTIONS(1328), - [anon_sym_EQ_GT] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_GT] = ACTIONS(1328), - [anon_sym_DOT] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_QMARK] = ACTIONS(1326), - [anon_sym_async] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_POUND] = ACTIONS(1326), - [anon_sym_try] = ACTIONS(1328), - [anon_sym_as] = ACTIONS(1328), - [anon_sym_DASH_GT] = ACTIONS(1326), - [anon_sym_PIPE_GT] = ACTIONS(1326), - [anon_sym_lazy] = ACTIONS(1328), - [anon_sym_SLASH] = ACTIONS(1328), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1326), - [anon_sym_AMP_AMP] = ACTIONS(1328), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1326), - [anon_sym_PIPE_PIPE] = ACTIONS(1328), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_PLUS_DOT] = ACTIONS(1328), - [anon_sym_DASH_DOT] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_STAR_DOT] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1326), - [anon_sym_STAR_STAR] = ACTIONS(1326), - [anon_sym_SLASH_DOT] = ACTIONS(1326), - [anon_sym_LT_LT] = ACTIONS(1326), - [anon_sym_GT_GT_GT] = ACTIONS(1326), - [anon_sym_GT_GT] = ACTIONS(1328), - [anon_sym_LT_EQ] = ACTIONS(1326), - [anon_sym_EQ_EQ] = ACTIONS(1328), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1326), - [anon_sym_BANG_EQ] = ACTIONS(1328), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1326), - [anon_sym_COLON_GT] = ACTIONS(1326), - [aux_sym_variant_identifier_token1] = ACTIONS(1326), - [aux_sym_value_identifier_token1] = ACTIONS(1328), - [sym__escape_identifier] = ACTIONS(1328), - [sym_number] = ACTIONS(1326), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1326), - [aux_sym_template_string_token1] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1326), - [sym__dict_constructor] = ACTIONS(1326), + [STATE(744)] = { + [sym_module_unpack] = STATE(2896), + [sym_polyvar_type_pattern] = STATE(3171), + [sym_module_pack] = STATE(3171), + [sym__pattern] = STATE(3254), + [sym_parenthesized_pattern] = STATE(3171), + [sym_range_pattern] = STATE(3171), + [sym_or_pattern] = STATE(3171), + [sym_exception_pattern] = STATE(3171), + [sym__destructuring_pattern] = STATE(3171), + [sym__literal_pattern] = STATE(3054), + [sym_variant_pattern] = STATE(2814), + [sym_polyvar_pattern] = STATE(2814), + [sym_record_pattern] = STATE(2814), + [sym_tuple_pattern] = STATE(2814), + [sym_array_pattern] = STATE(2814), + [sym_list_pattern] = STATE(2814), + [sym_dict_pattern] = STATE(2814), + [sym__collection_element_pattern] = STATE(3677), + [sym_spread_pattern] = STATE(3423), + [sym_lazy_pattern] = STATE(3171), + [sym_decorator] = STATE(744), + [sym_nested_variant_identifier] = STATE(2703), + [sym_module_primary_expression] = STATE(3728), + [sym_parenthesized_module_expression] = STATE(2896), + [sym_module_identifier_path] = STATE(2896), + [sym_functor_use] = STATE(2896), + [sym_variant_identifier] = STATE(2703), + [sym_polyvar_identifier] = STATE(2705), + [sym_value_identifier] = STATE(3171), + [sym_module_identifier] = STATE(2891), + [sym_regex] = STATE(2781), + [sym_unit] = STATE(3171), + [sym_string] = STATE(2781), + [sym_template_string] = STATE(2781), + [sym_character] = STATE(2781), + [sym__reserved_identifier] = STATE(1053), + [sym__identifier] = ACTIONS(115), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_module] = ACTIONS(205), + [anon_sym_unpack] = ACTIONS(1109), + [anon_sym_exception] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(213), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1115), + [anon_sym_lazy] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(161), + [aux_sym_variant_identifier_token1] = ACTIONS(1121), + [sym__escape_identifier] = ACTIONS(115), + [sym_number] = ACTIONS(1123), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(173), + [aux_sym_template_string_token1] = ACTIONS(175), + [anon_sym_SQUOTE] = ACTIONS(177), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1127), + [sym__dict_constructor] = ACTIONS(1129), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, - [STATE(782)] = { - [sym_decorator] = STATE(782), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_LPAREN] = ACTIONS(1333), - [anon_sym_module] = ACTIONS(1335), - [anon_sym_unpack] = ACTIONS(1335), - [anon_sym_EQ_GT] = ACTIONS(1333), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_DOT] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1333), - [anon_sym_QMARK] = ACTIONS(1333), - [anon_sym_async] = ACTIONS(1335), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_switch] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(1333), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_as] = ACTIONS(1335), - [anon_sym_DASH_GT] = ACTIONS(1333), - [anon_sym_PIPE_GT] = ACTIONS(1333), - [anon_sym_lazy] = ACTIONS(1335), - [anon_sym_SLASH] = ACTIONS(1335), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1333), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1333), - [anon_sym_PIPE_PIPE] = ACTIONS(1335), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1333), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), - [anon_sym_PLUS_DOT] = ACTIONS(1335), - [anon_sym_DASH_DOT] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_STAR_DOT] = ACTIONS(1333), - [anon_sym_PERCENT] = ACTIONS(1333), - [anon_sym_STAR_STAR] = ACTIONS(1333), - [anon_sym_SLASH_DOT] = ACTIONS(1333), - [anon_sym_LT_LT] = ACTIONS(1333), - [anon_sym_GT_GT_GT] = ACTIONS(1333), - [anon_sym_GT_GT] = ACTIONS(1335), - [anon_sym_LT_EQ] = ACTIONS(1333), - [anon_sym_EQ_EQ] = ACTIONS(1335), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1333), - [anon_sym_BANG_EQ] = ACTIONS(1335), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1333), - [anon_sym_GT_EQ] = ACTIONS(1333), - [anon_sym_COLON_GT] = ACTIONS(1333), - [aux_sym_variant_identifier_token1] = ACTIONS(1333), - [aux_sym_type_identifier_token1] = ACTIONS(1335), - [aux_sym_value_identifier_token1] = ACTIONS(1335), - [sym__escape_identifier] = ACTIONS(1335), - [sym_number] = ACTIONS(1333), - [sym_true] = ACTIONS(1335), - [sym_false] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1333), - [aux_sym_template_string_token1] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1335), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1333), - [sym__dict_constructor] = ACTIONS(1333), + [STATE(745)] = { + [sym_decorator] = STATE(745), + [aux_sym_variant_type_repeat1] = STATE(729), + [sym__identifier] = ACTIONS(1247), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_module] = ACTIONS(1247), + [anon_sym_unpack] = ACTIONS(1247), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_POUND] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_as] = ACTIONS(1247), + [anon_sym_DASH_GT] = ACTIONS(1249), + [anon_sym_PIPE_GT] = ACTIONS(1249), + [anon_sym_lazy] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_PLUS_DOT] = ACTIONS(1247), + [anon_sym_DASH_DOT] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_STAR_DOT] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_SLASH_DOT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_GT_GT_GT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_COLON_GT] = ACTIONS(1249), + [aux_sym_variant_identifier_token1] = ACTIONS(1249), + [sym__escape_identifier] = ACTIONS(1247), + [sym_number] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1249), + [aux_sym_template_string_token1] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1249), + [sym__dict_constructor] = ACTIONS(1249), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, - [STATE(783)] = { - [sym_decorator] = STATE(783), - [aux_sym_variant_type_repeat1] = STATE(781), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_module] = ACTIONS(1256), - [anon_sym_unpack] = ACTIONS(1256), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_DOT] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1254), - [anon_sym_async] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_POUND] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1256), - [anon_sym_as] = ACTIONS(1256), - [anon_sym_DASH_GT] = ACTIONS(1254), - [anon_sym_PIPE_GT] = ACTIONS(1254), - [anon_sym_lazy] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_PLUS_DOT] = ACTIONS(1256), - [anon_sym_DASH_DOT] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_STAR_DOT] = ACTIONS(1254), - [anon_sym_PERCENT] = ACTIONS(1254), - [anon_sym_STAR_STAR] = ACTIONS(1254), - [anon_sym_SLASH_DOT] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1254), - [anon_sym_GT_GT_GT] = ACTIONS(1254), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_COLON_GT] = ACTIONS(1254), - [aux_sym_variant_identifier_token1] = ACTIONS(1254), - [aux_sym_value_identifier_token1] = ACTIONS(1256), - [sym__escape_identifier] = ACTIONS(1256), - [sym_number] = ACTIONS(1254), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1254), - [aux_sym_template_string_token1] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1254), - [sym__dict_constructor] = ACTIONS(1254), + [STATE(746)] = { + [sym_decorator] = STATE(746), + [aux_sym_variant_type_repeat1] = STATE(730), + [sym__identifier] = ACTIONS(1193), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1195), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_unpack] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(1197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_switch] = ACTIONS(1193), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_try] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_PIPE_GT] = ACTIONS(1195), + [anon_sym_lazy] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1195), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_PLUS_DOT] = ACTIONS(1193), + [anon_sym_DASH_DOT] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_STAR_DOT] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_SLASH_DOT] = ACTIONS(1195), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1195), + [anon_sym_COLON_GT] = ACTIONS(1195), + [aux_sym_variant_identifier_token1] = ACTIONS(1195), + [sym__escape_identifier] = ACTIONS(1193), + [sym_number] = ACTIONS(1195), + [sym_true] = ACTIONS(1193), + [sym_false] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1195), + [aux_sym_template_string_token1] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1195), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1195), + [sym__dict_constructor] = ACTIONS(1195), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, - [STATE(784)] = { - [sym_decorator] = STATE(784), - [aux_sym_variant_type_repeat1] = STATE(781), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_unpack] = ACTIONS(1324), - [anon_sym_EQ_GT] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_async] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1322), - [anon_sym_try] = ACTIONS(1324), - [anon_sym_as] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1322), - [anon_sym_PIPE_GT] = ACTIONS(1322), - [anon_sym_lazy] = ACTIONS(1324), - [anon_sym_SLASH] = ACTIONS(1324), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1324), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_PLUS_DOT] = ACTIONS(1324), - [anon_sym_DASH_DOT] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_STAR_DOT] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_STAR_STAR] = ACTIONS(1322), - [anon_sym_SLASH_DOT] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT_GT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1324), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1324), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1324), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_COLON_GT] = ACTIONS(1322), - [aux_sym_variant_identifier_token1] = ACTIONS(1322), - [aux_sym_value_identifier_token1] = ACTIONS(1324), - [sym__escape_identifier] = ACTIONS(1324), - [sym_number] = ACTIONS(1322), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1322), - [aux_sym_template_string_token1] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1322), - [sym__dict_constructor] = ACTIONS(1322), + [STATE(747)] = { + [sym_decorator] = STATE(747), + [aux_sym_variant_type_repeat1] = STATE(732), + [sym__identifier] = ACTIONS(1247), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_module] = ACTIONS(1247), + [anon_sym_unpack] = ACTIONS(1247), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_POUND] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_as] = ACTIONS(1247), + [anon_sym_DASH_GT] = ACTIONS(1249), + [anon_sym_PIPE_GT] = ACTIONS(1249), + [anon_sym_lazy] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_PLUS_DOT] = ACTIONS(1247), + [anon_sym_DASH_DOT] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_STAR_DOT] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_SLASH_DOT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_GT_GT_GT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_COLON_GT] = ACTIONS(1249), + [aux_sym_variant_identifier_token1] = ACTIONS(1249), + [sym__escape_identifier] = ACTIONS(1247), + [sym_number] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1249), + [aux_sym_template_string_token1] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1249), + [sym__dict_constructor] = ACTIONS(1249), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), }, - [STATE(785)] = { - [sym_decorator] = STATE(785), - [sym_line_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_COLON] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_unpack] = ACTIONS(1301), - [anon_sym_EQ_GT] = ACTIONS(1299), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1301), - [anon_sym_DOT] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_QMARK] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_switch] = ACTIONS(1301), - [anon_sym_POUND] = ACTIONS(1299), - [anon_sym_try] = ACTIONS(1301), - [anon_sym_as] = ACTIONS(1301), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_PIPE_GT] = ACTIONS(1299), - [anon_sym_lazy] = ACTIONS(1301), - [anon_sym_SLASH] = ACTIONS(1301), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1299), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1299), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_PLUS_DOT] = ACTIONS(1301), - [anon_sym_DASH_DOT] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_STAR_DOT] = ACTIONS(1299), - [anon_sym_PERCENT] = ACTIONS(1299), - [anon_sym_STAR_STAR] = ACTIONS(1299), - [anon_sym_SLASH_DOT] = ACTIONS(1299), - [anon_sym_LT_LT] = ACTIONS(1299), - [anon_sym_GT_GT_GT] = ACTIONS(1299), - [anon_sym_GT_GT] = ACTIONS(1301), - [anon_sym_LT_EQ] = ACTIONS(1299), - [anon_sym_EQ_EQ] = ACTIONS(1301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1299), - [anon_sym_BANG_EQ] = ACTIONS(1301), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1299), - [anon_sym_GT_EQ] = ACTIONS(1299), - [anon_sym_COLON_GT] = ACTIONS(1299), - [aux_sym_variant_identifier_token1] = ACTIONS(1299), - [aux_sym_value_identifier_token1] = ACTIONS(1301), - [sym__escape_identifier] = ACTIONS(1301), - [sym_number] = ACTIONS(1299), - [sym_true] = ACTIONS(1301), - [sym_false] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1299), - [aux_sym_template_string_token1] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [sym__continuation] = ACTIONS(5), - [sym_block_comment] = ACTIONS(5), - [sym__list_constructor] = ACTIONS(1299), - [sym__dict_constructor] = ACTIONS(1299), + [STATE(748)] = { + [sym_decorator] = STATE(748), + [aux_sym_variant_type_repeat1] = STATE(733), + [sym__identifier] = ACTIONS(1193), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1195), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_unpack] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(1193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_switch] = ACTIONS(1193), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_try] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_PIPE_GT] = ACTIONS(1195), + [anon_sym_lazy] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1195), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_PLUS_DOT] = ACTIONS(1193), + [anon_sym_DASH_DOT] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_STAR_DOT] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_STAR_STAR] = ACTIONS(1195), + [anon_sym_SLASH_DOT] = ACTIONS(1195), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1195), + [anon_sym_COLON_GT] = ACTIONS(1195), + [aux_sym_variant_identifier_token1] = ACTIONS(1195), + [sym__escape_identifier] = ACTIONS(1193), + [sym_number] = ACTIONS(1195), + [sym_true] = ACTIONS(1193), + [sym_false] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1195), + [aux_sym_template_string_token1] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1195), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1195), + [sym__dict_constructor] = ACTIONS(1195), [sym__decorator] = ACTIONS(7), [sym__decorator_inline] = ACTIONS(9), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(786), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1345), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1343), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [77] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(787), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1349), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1347), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [154] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1355), 1, - anon_sym_EQ_GT, - ACTIONS(1358), 1, - anon_sym_as, - STATE(788), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1353), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1351), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [235] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(789), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1362), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1360), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [312] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(790), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1366), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1364), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [389] = 38, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1368), 1, - anon_sym_rec, - ACTIONS(1370), 1, - anon_sym_type, - STATE(791), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3723), 1, - sym_let_binding, - STATE(4099), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [530] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1372), 1, - anon_sym_PIPE, - STATE(792), 1, - sym_decorator, - STATE(793), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1324), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1322), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [611] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1374), 1, - anon_sym_PIPE, - STATE(793), 2, - sym_decorator, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1328), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1326), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [690] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(793), 1, - aux_sym_variant_type_repeat1, - STATE(794), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1254), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [769] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(793), 1, - aux_sym_variant_type_repeat1, - STATE(795), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1324), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1322), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [848] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(796), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1379), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1377), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [925] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(797), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1383), 27, - anon_sym_EQ, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1381), 31, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [1002] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(798), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1387), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1385), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [1079] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1372), 1, - anon_sym_PIPE, - STATE(799), 1, - sym_decorator, - STATE(842), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1320), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1318), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [1160] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1372), 1, - anon_sym_PIPE, - STATE(792), 1, - aux_sym_variant_type_repeat1, - STATE(800), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1254), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [1241] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(801), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1391), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1389), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [1318] = 38, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1393), 1, - anon_sym_exception, - ACTIONS(1395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1397), 1, - anon_sym_QMARK, - ACTIONS(1399), 1, - anon_sym_lazy, - ACTIONS(1401), 1, - anon_sym_SLASH, - STATE(802), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3539), 1, - sym__literal_pattern, - STATE(3894), 1, - sym_variant_type_pattern, - STATE(3898), 1, - sym__pattern, - STATE(4203), 1, - sym_variant_spread_pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3668), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [1459] = 38, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(211), 1, - anon_sym_exception, - ACTIONS(217), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1279), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1281), 1, - anon_sym_lazy, - STATE(803), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3603), 1, - sym__literal_pattern, - STATE(3639), 1, - sym__pattern, - STATE(3826), 1, - sym_spread_pattern, - STATE(4311), 1, - sym__collection_element_pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3654), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [1600] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(804), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1405), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1403), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [1677] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(805), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1409), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1407), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [1754] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(806), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1413), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1411), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [1831] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(807), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1417), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1415), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [1908] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1236), 1, - anon_sym_LPAREN, - ACTIONS(1419), 1, - anon_sym_COLON, - STATE(808), 1, - sym_decorator, - STATE(839), 1, - sym_type_annotation, - STATE(851), 1, - sym_variant_parameters, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1234), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(1240), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [1993] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(794), 1, - aux_sym_variant_type_repeat1, - STATE(809), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1320), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1318), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [2072] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(795), 1, - aux_sym_variant_type_repeat1, - STATE(810), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1254), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [2151] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1425), 1, - anon_sym_EQ_GT, - STATE(811), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1423), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1421), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [2230] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1434), 1, - anon_sym_EQ_GT, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - STATE(812), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1432), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1428), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [2313] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(813), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1441), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1438), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [2390] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(814), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1446), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1444), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [2467] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(815), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1450), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1448), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [2544] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(816), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1454), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1452), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [2621] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1358), 1, - anon_sym_as, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - STATE(817), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1353), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1351), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [2702] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(818), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1260), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1258), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [2779] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(819), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1460), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1458), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [2856] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(820), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 27, - anon_sym_EQ, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1221), 31, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [2933] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(821), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1464), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1462), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [3010] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(822), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1468), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1466), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [3087] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(823), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1353), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1351), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [3164] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(824), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1472), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1470), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [3241] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(825), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1476), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1474), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [3318] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(826), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1480), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1478), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [3395] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1486), 1, - anon_sym_else, - STATE(870), 1, - sym_else_if_clause, - STATE(827), 2, - sym_decorator, - aux_sym_if_expression_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1484), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1482), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [3476] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(828), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1491), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1489), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [3553] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(829), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1495), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1493), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [3630] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(830), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1328), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1326), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [3707] = 38, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1497), 1, - anon_sym_rec, - ACTIONS(1499), 1, - anon_sym_type, - STATE(831), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3737), 1, - sym_let_binding, - STATE(4151), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [3848] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(832), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1503), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1501), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [3925] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(833), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1507), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1505), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [4002] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1303), 1, - anon_sym_EQ_GT, - STATE(834), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1441), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1438), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [4081] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(835), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1511), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1509), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [4158] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(836), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1515), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1513), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [4235] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(837), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1519), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1517), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [4312] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(838), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1335), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1333), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [4389] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(839), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1252), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1250), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [4466] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(840), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1305), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1303), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [4543] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(841), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1523), 28, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1521), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [4620] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1372), 1, - anon_sym_PIPE, - STATE(793), 1, - aux_sym_variant_type_repeat1, - STATE(842), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1254), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [4701] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - STATE(843), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1432), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1428), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [4781] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(844), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 27, - anon_sym_EQ, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1221), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [4857] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(845), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1527), 27, - anon_sym_EQ, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1525), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [4933] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1236), 1, - anon_sym_LPAREN, - ACTIONS(1529), 1, - anon_sym_COLON, - STATE(839), 1, - sym_type_annotation, - STATE(846), 1, - sym_decorator, - STATE(887), 1, - sym_variant_parameters, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1234), 26, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(1240), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [5017] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(847), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1533), 27, - anon_sym_EQ, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1531), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [5093] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(848), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1537), 27, - anon_sym_EQ, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1535), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [5169] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(849), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1541), 27, - anon_sym_EQ, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1539), 30, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [5245] = 37, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1543), 1, - anon_sym_RPAREN, - STATE(850), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3763), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - STATE(4653), 1, - sym_tuple_item_pattern, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [5383] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1419), 1, - anon_sym_COLON, - STATE(835), 1, - sym_type_annotation, - STATE(851), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1252), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1250), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [5463] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1545), 1, - anon_sym_COLON, - ACTIONS(1547), 1, - anon_sym_EQ_GT, - STATE(852), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1423), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1421), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [5543] = 37, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1549), 1, - anon_sym_RPAREN, - STATE(853), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3825), 1, - sym__pattern, - STATE(4216), 1, - sym__variant_pattern_parameter, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [5681] = 37, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1551), 1, - anon_sym_RPAREN, - STATE(854), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3825), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - STATE(4583), 1, - sym__variant_pattern_parameter, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [5819] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1337), 1, - anon_sym_LPAREN, - ACTIONS(1553), 1, - anon_sym_DOT, - STATE(855), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1299), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(1301), 28, - anon_sym_COLON, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [5899] = 37, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1555), 1, - anon_sym_RPAREN, - STATE(856), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3825), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - STATE(4583), 1, - sym__variant_pattern_parameter, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [6037] = 37, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1557), 1, - anon_sym_RPAREN, - STATE(857), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3763), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - STATE(4653), 1, - sym_tuple_item_pattern, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [6175] = 37, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1368), 1, - anon_sym_rec, - STATE(858), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3723), 1, - sym_let_binding, - STATE(4099), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [6313] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1262), 1, - sym__escape_identifier, - STATE(859), 1, - sym_decorator, - ACTIONS(1265), 2, - anon_sym_DOT, - aux_sym_type_identifier_token1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1258), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - ACTIONS(1260), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym_true, - sym_false, - anon_sym_SQUOTE, - [6393] = 37, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1497), 1, - anon_sym_rec, - STATE(860), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3737), 1, - sym_let_binding, - STATE(4151), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [6531] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(861), 1, - sym_decorator, - STATE(877), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1254), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [6608] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1561), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_DOT, - ACTIONS(1567), 1, - anon_sym_LBRACK, - STATE(862), 1, - sym_decorator, - STATE(959), 1, - sym_call_arguments, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1563), 25, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1559), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [6691] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(863), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3763), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - STATE(4653), 1, - sym_tuple_item_pattern, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [6826] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(864), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1571), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1569), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [6901] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1573), 1, - anon_sym_PIPE, - STATE(865), 1, - sym_decorator, - STATE(877), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1254), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [6980] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1579), 1, - anon_sym_as, - STATE(866), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1577), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1575), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [7057] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1583), 1, - anon_sym_LPAREN, - STATE(867), 1, - sym_decorator, - STATE(960), 1, - sym_variant_arguments, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1585), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1581), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [7136] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1573), 1, - anon_sym_PIPE, - STATE(868), 1, - sym_decorator, - STATE(877), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1324), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1322), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [7215] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1583), 1, - anon_sym_LPAREN, - STATE(869), 1, - sym_decorator, - STATE(961), 1, - sym_variant_arguments, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1589), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1587), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [7294] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(870), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1593), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1591), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [7369] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(871), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1597), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1595), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [7444] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1603), 1, - sym_regex_flags, - STATE(872), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1601), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1599), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [7521] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1607), 1, - anon_sym_LPAREN, - STATE(873), 1, - sym_decorator, - STATE(975), 1, - sym__extension_expression_payload, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1609), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1605), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [7600] = 11, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1561), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_DOT, - ACTIONS(1567), 1, - anon_sym_LBRACK, - STATE(874), 1, - sym_decorator, - STATE(959), 1, - sym_call_arguments, - ACTIONS(1615), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1611), 25, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(1613), 25, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [7685] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(875), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3701), 1, - sym_let_binding, - STATE(4099), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [7820] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1573), 1, - anon_sym_PIPE, - STATE(865), 1, - aux_sym_variant_type_repeat1, - STATE(876), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1320), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1318), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [7899] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1617), 1, - anon_sym_PIPE, - STATE(877), 2, - sym_decorator, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1328), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1326), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [7976] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1573), 1, - anon_sym_PIPE, - STATE(868), 1, - aux_sym_variant_type_repeat1, - STATE(878), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1254), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [8055] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(879), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3714), 1, - sym_let_binding, - STATE(4151), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [8190] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(861), 1, - aux_sym_variant_type_repeat1, - STATE(880), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1320), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1318), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [8267] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(881), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3714), 1, - sym_let_binding, - STATE(4099), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [8402] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(882), 1, - sym_decorator, - STATE(889), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1254), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [8479] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(883), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3738), 1, - sym_let_binding, - STATE(4151), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [8614] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(884), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1622), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_else, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1620), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [8689] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(885), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3825), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - STATE(4583), 1, - sym__variant_pattern_parameter, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [8824] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(886), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3763), 1, - sym__pattern, - STATE(4310), 1, - sym_tuple_item_pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [8959] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1529), 1, - anon_sym_COLON, - STATE(835), 1, - sym_type_annotation, - STATE(887), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1250), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(1252), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [9038] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1434), 1, - anon_sym_EQ_GT, - STATE(888), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1432), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1428), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [9115] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(877), 1, - aux_sym_variant_type_repeat1, - STATE(889), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1324), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1322), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [9192] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1393), 1, - anon_sym_exception, - ACTIONS(1399), 1, - anon_sym_lazy, - ACTIONS(1401), 1, - anon_sym_SLASH, - ACTIONS(1624), 1, - anon_sym_QMARK, - STATE(890), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3243), 1, - sym__pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3586), 1, - sym__literal_pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3672), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [9324] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(891), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1628), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1626), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [9398] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(211), 1, - anon_sym_exception, - ACTIONS(379), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1281), 1, - anon_sym_lazy, - STATE(892), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3644), 1, - sym__literal_pattern, - STATE(4340), 1, - sym_module_primary_expression, - STATE(4532), 1, - sym__pattern, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3851), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [9530] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(893), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1632), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1630), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [9604] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(894), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1636), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1634), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [9678] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(895), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1640), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1638), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [9752] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(896), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1644), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1642), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [9826] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(897), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1648), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1646), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [9900] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(898), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1652), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1650), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [9974] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1432), 1, - anon_sym_DOT, - STATE(899), 1, - sym_decorator, - ACTIONS(1428), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1613), 25, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1611), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [10052] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(900), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1656), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1654), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [10126] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(901), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1660), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1658), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [10200] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(902), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1664), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1662), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [10274] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(903), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1668), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1666), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [10348] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(904), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1672), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1670), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [10422] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(905), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1676), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1674), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [10496] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1686), 1, - anon_sym_QMARK, - ACTIONS(1690), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1692), 1, - anon_sym_AMP_AMP, - ACTIONS(1694), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1696), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1698), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - ACTIONS(1706), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_COLON_GT, - STATE(906), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1708), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1684), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1680), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1678), 14, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [10600] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1686), 1, - anon_sym_QMARK, - ACTIONS(1690), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1692), 1, - anon_sym_AMP_AMP, - ACTIONS(1694), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1696), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1698), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - ACTIONS(1706), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_COLON_GT, - STATE(907), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1708), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1684), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1714), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1712), 14, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [10704] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1686), 1, - anon_sym_QMARK, - ACTIONS(1690), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1692), 1, - anon_sym_AMP_AMP, - ACTIONS(1694), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1696), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1698), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - ACTIONS(1706), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_COLON_GT, - STATE(908), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1708), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1684), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1718), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1716), 14, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [10808] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1686), 1, - anon_sym_QMARK, - ACTIONS(1690), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1692), 1, - anon_sym_AMP_AMP, - ACTIONS(1694), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1696), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1698), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - ACTIONS(1706), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_COLON_GT, - STATE(909), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1708), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1684), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1722), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1720), 14, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [10912] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1724), 1, - anon_sym_PIPE, - STATE(910), 1, - sym_decorator, - STATE(912), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1254), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [10990] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1724), 1, - anon_sym_PIPE, - STATE(911), 1, - sym_decorator, - STATE(912), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1324), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1322), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [11068] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1726), 1, - anon_sym_PIPE, - STATE(912), 2, - sym_decorator, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1328), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1326), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [11144] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(211), 1, - anon_sym_exception, - ACTIONS(379), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1281), 1, - anon_sym_lazy, - STATE(913), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3644), 1, - sym__literal_pattern, - STATE(4318), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3851), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [11276] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1337), 1, - anon_sym_LPAREN, - ACTIONS(1340), 1, - anon_sym_DOT, - STATE(914), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1301), 25, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1299), 28, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [11354] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(915), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1613), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1611), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [11428] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(916), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3167), 1, - sym__pattern, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [11560] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(917), 1, - sym_decorator, - STATE(922), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1318), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(1320), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [11636] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(918), 1, - sym_decorator, - STATE(923), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1254), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(1256), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [11712] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(395), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(919), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3184), 1, - sym__pattern, - STATE(3260), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3378), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [11844] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(395), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(920), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3243), 1, - sym__pattern, - STATE(3260), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3378), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [11976] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(211), 1, - anon_sym_exception, - ACTIONS(379), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1281), 1, - anon_sym_lazy, - STATE(921), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3644), 1, - sym__literal_pattern, - STATE(4340), 1, - sym_module_primary_expression, - STATE(4441), 1, - sym__pattern, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3851), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [12108] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(912), 1, - aux_sym_variant_type_repeat1, - STATE(922), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1254), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(1256), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [12184] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(912), 1, - aux_sym_variant_type_repeat1, - STATE(923), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1322), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(1324), 27, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [12260] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(395), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(924), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3167), 1, - sym__pattern, - STATE(3260), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3378), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [12392] = 12, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - ACTIONS(1706), 1, - anon_sym_GT_GT, - STATE(925), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1684), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 18, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 23, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [12478] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - STATE(926), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 24, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 25, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [12558] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - ACTIONS(1706), 1, - anon_sym_GT_GT, - STATE(927), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1708), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1684), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 14, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 19, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [12648] = 17, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1690), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1694), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1698), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - ACTIONS(1706), 1, - anon_sym_GT_GT, - STATE(928), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1708), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1684), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 14, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [12744] = 16, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1690), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1698), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - ACTIONS(1706), 1, - anon_sym_GT_GT, - STATE(929), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1708), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1684), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 14, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 17, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [12838] = 18, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1690), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1692), 1, - anon_sym_AMP_AMP, - ACTIONS(1694), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1698), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - ACTIONS(1706), 1, - anon_sym_GT_GT, - STATE(930), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1708), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1684), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [12936] = 15, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1690), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - ACTIONS(1706), 1, - anon_sym_GT_GT, - STATE(931), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1708), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1684), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 14, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 18, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [13028] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - STATE(932), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 24, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 25, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [13108] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - STATE(933), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1684), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 19, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 25, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [13190] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1686), 1, - anon_sym_QMARK, - ACTIONS(1690), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1692), 1, - anon_sym_AMP_AMP, - ACTIONS(1694), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1696), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1698), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - ACTIONS(1706), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_COLON_GT, - STATE(934), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1708), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1684), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1735), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1733), 14, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [13294] = 20, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1690), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1692), 1, - anon_sym_AMP_AMP, - ACTIONS(1694), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1696), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1698), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(1702), 1, - anon_sym_STAR_STAR, - ACTIONS(1706), 1, - anon_sym_GT_GT, - ACTIONS(1710), 1, - anon_sym_COLON_GT, - STATE(935), 1, - sym_decorator, - ACTIONS(1688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1700), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1682), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1708), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1684), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1739), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1737), 15, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [13396] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(395), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(936), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3260), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3508), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3378), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [13528] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(937), 1, - sym_decorator, - ACTIONS(1615), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1613), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1611), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [13604] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(938), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1613), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1611), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [13678] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(939), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3705), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [13810] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(940), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1743), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1741), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [13884] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(941), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1747), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1745), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [13958] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(942), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1751), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1749), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [14032] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(943), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1755), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1753), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [14106] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(944), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3634), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [14238] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(945), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1731), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [14312] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(211), 1, - anon_sym_exception, - ACTIONS(379), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1281), 1, - anon_sym_lazy, - STATE(946), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3644), 1, - sym__literal_pattern, - STATE(4128), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3851), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [14444] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1401), 1, - anon_sym_SLASH, - ACTIONS(1757), 1, - anon_sym_exception, - ACTIONS(1759), 1, - anon_sym_QMARK, - ACTIONS(1761), 1, - anon_sym_lazy, - STATE(947), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3471), 1, - sym__literal_pattern, - STATE(3747), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3543), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [14576] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1401), 1, - anon_sym_SLASH, - ACTIONS(1757), 1, - anon_sym_exception, - ACTIONS(1759), 1, - anon_sym_QMARK, - ACTIONS(1761), 1, - anon_sym_lazy, - STATE(948), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3471), 1, - sym__literal_pattern, - STATE(3632), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3543), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [14708] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1401), 1, - anon_sym_SLASH, - ACTIONS(1757), 1, - anon_sym_exception, - ACTIONS(1761), 1, - anon_sym_lazy, - ACTIONS(1763), 1, - anon_sym_QMARK, - STATE(949), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3454), 1, - sym__literal_pattern, - STATE(3589), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3555), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [14840] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(950), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1767), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1765), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [14914] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(951), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1771), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1769), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [14988] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(211), 1, - anon_sym_exception, - ACTIONS(379), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1281), 1, - anon_sym_lazy, - STATE(952), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3644), 1, - sym__literal_pattern, - STATE(4200), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3851), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [15120] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(953), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1432), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1428), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [15194] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(954), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1571), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1569), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [15268] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(955), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1775), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1773), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [15342] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(956), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1779), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1777), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [15416] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(957), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1783), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1781), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [15490] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(395), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(958), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3260), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3426), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3378), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [15622] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(959), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1787), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1785), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [15696] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(960), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1791), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1789), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [15770] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(961), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1795), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1793), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [15844] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(962), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1799), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1797), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [15918] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(963), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1803), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1801), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [15992] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(964), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1807), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1805), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [16066] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(965), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1622), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1620), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [16140] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(966), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1811), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1809), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [16214] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(967), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1815), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1813), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [16288] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(968), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1819), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1817), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [16362] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(969), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1823), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1821), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [16436] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(970), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1563), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1559), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [16510] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1724), 1, - anon_sym_PIPE, - STATE(910), 1, - aux_sym_variant_type_repeat1, - STATE(971), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1320), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1318), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [16588] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(972), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1827), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1825), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [16662] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(973), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1831), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1829), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [16736] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(974), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1835), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1833), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [16810] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(975), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1839), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1837), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [16884] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(976), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1843), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1841), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [16958] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(977), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1847), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1845), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [17032] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(978), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1851), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1849), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [17106] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(979), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1855), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1853), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [17180] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(980), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1366), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1364), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [17254] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(211), 1, - anon_sym_exception, - ACTIONS(217), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1281), 1, - anon_sym_lazy, - STATE(981), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3603), 1, - sym__literal_pattern, - STATE(4024), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3654), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [17386] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(211), 1, - anon_sym_exception, - ACTIONS(217), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1281), 1, - anon_sym_lazy, - STATE(982), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3243), 1, - sym__pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3603), 1, - sym__literal_pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3654), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [17518] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(983), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1859), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1857), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [17592] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(984), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1312), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1310), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [17666] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(985), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1863), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1861), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [17740] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1724), 1, - anon_sym_PIPE, - STATE(911), 1, - aux_sym_variant_type_repeat1, - STATE(986), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_as, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1254), 27, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [17818] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1401), 1, - anon_sym_SLASH, - ACTIONS(1757), 1, - anon_sym_exception, - ACTIONS(1759), 1, - anon_sym_QMARK, - ACTIONS(1761), 1, - anon_sym_lazy, - STATE(987), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3167), 1, - sym__pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3471), 1, - sym__literal_pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3543), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [17950] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(211), 1, - anon_sym_exception, - ACTIONS(217), 1, - anon_sym_QMARK, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1281), 1, - anon_sym_lazy, - STATE(988), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3184), 1, - sym__pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3603), 1, - sym__literal_pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3654), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [18082] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(989), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1867), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1865), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [18156] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(990), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1871), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1869), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [18230] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(991), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1875), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1873), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [18304] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(992), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1879), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1877), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [18378] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(993), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1883), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1881), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [18452] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(994), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1887), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1885), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [18526] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(995), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1891), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1889), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [18600] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(996), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1895), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1893), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [18674] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(997), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1899), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1897), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [18748] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(998), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1903), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1901), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [18822] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(999), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1907), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1905), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [18896] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1000), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1911), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1909), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [18970] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1001), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1915), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1913), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [19044] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1002), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1919), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1917), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [19118] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1003), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1923), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1921), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [19192] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1004), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1927), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1925), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [19266] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1005), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1931), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1929), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [19340] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1006), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1935), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1933), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [19414] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1007), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1939), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1937), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [19488] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1008), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1943), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1941), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [19562] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1401), 1, - anon_sym_SLASH, - ACTIONS(1757), 1, - anon_sym_exception, - ACTIONS(1761), 1, - anon_sym_lazy, - ACTIONS(1763), 1, - anon_sym_QMARK, - STATE(1009), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3167), 1, - sym__pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3454), 1, - sym__literal_pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3555), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [19694] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1010), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1947), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1945), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [19768] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1011), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1951), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1949), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [19842] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1012), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1955), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1953), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [19916] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1013), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1959), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1957), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [19990] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1014), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1963), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1961), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [20064] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1015), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1967), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1965), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [20138] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1016), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1971), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1969), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [20212] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1393), 1, - anon_sym_exception, - ACTIONS(1399), 1, - anon_sym_lazy, - ACTIONS(1401), 1, - anon_sym_SLASH, - ACTIONS(1624), 1, - anon_sym_QMARK, - STATE(1017), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3586), 1, - sym__literal_pattern, - STATE(4029), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3672), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [20344] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1393), 1, - anon_sym_exception, - ACTIONS(1399), 1, - anon_sym_lazy, - ACTIONS(1401), 1, - anon_sym_SLASH, - ACTIONS(1624), 1, - anon_sym_QMARK, - STATE(1018), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3184), 1, - sym__pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3586), 1, - sym__literal_pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3672), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [20476] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1019), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1975), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1973), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [20550] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1020), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1979), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1977), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [20624] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1401), 1, - anon_sym_SLASH, - ACTIONS(1757), 1, - anon_sym_exception, - ACTIONS(1761), 1, - anon_sym_lazy, - ACTIONS(1763), 1, - anon_sym_QMARK, - STATE(1021), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3454), 1, - sym__literal_pattern, - STATE(3741), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3555), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [20756] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1401), 1, - anon_sym_SLASH, - ACTIONS(1757), 1, - anon_sym_exception, - ACTIONS(1761), 1, - anon_sym_lazy, - ACTIONS(1763), 1, - anon_sym_QMARK, - STATE(1022), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3243), 1, - sym__pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3454), 1, - sym__literal_pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3555), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [20888] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1023), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1983), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1981), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [20962] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - ACTIONS(1401), 1, - anon_sym_SLASH, - ACTIONS(1757), 1, - anon_sym_exception, - ACTIONS(1761), 1, - anon_sym_lazy, - ACTIONS(1763), 1, - anon_sym_QMARK, - STATE(1024), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3184), 1, - sym__pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3454), 1, - sym__literal_pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3555), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [21094] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1025), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1987), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1985), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [21168] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1026), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1991), 26, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1989), 29, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [21242] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(135), 1, - anon_sym_exception, - ACTIONS(145), 1, - anon_sym_QMARK, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1189), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1201), 1, - anon_sym_POUND, - ACTIONS(1205), 1, - anon_sym_lazy, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(1215), 1, - sym__dict_constructor, - STATE(1027), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3035), 1, - sym_polyvar_identifier, - STATE(3263), 1, - sym__literal_pattern, - STATE(3322), 1, - sym_module_identifier, - STATE(3907), 1, - sym__pattern, - STATE(4340), 1, - sym_module_primary_expression, - ACTIONS(171), 2, - aux_sym_value_identifier_token1, - sym__escape_identifier, - ACTIONS(1211), 2, - sym_true, - sym_false, - STATE(3024), 2, - sym_nested_variant_identifier, - sym_variant_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3229), 7, - sym_variant_pattern, - sym_polyvar_pattern, - sym_record_pattern, - sym_tuple_pattern, - sym_array_pattern, - sym_list_pattern, - sym_dict_pattern, - STATE(3416), 10, - sym_polyvar_type_pattern, - sym_module_pack, - sym_parenthesized_pattern, - sym_range_pattern, - sym_or_pattern, - sym_exception_pattern, - sym__destructuring_pattern, - sym_lazy_pattern, - sym_value_identifier, - sym_unit, - [21374] = 43, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(129), 1, - anon_sym_module, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1203), 1, - anon_sym_TILDE, - ACTIONS(1248), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1995), 1, - anon_sym_LPAREN, - ACTIONS(1997), 1, - anon_sym_RPAREN, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2001), 1, - anon_sym_DOT, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - STATE(1028), 1, - sym_decorator, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1105), 1, - sym_uncurry, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3720), 1, - sym_module_primary_expression, - STATE(3908), 1, - sym_module_expression, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4205), 1, - sym__type, - STATE(4502), 1, - sym_function_type_parameter, - STATE(4638), 1, - sym_labeled_parameter, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [21521] = 43, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(129), 1, - anon_sym_module, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1203), 1, - anon_sym_TILDE, - ACTIONS(1248), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1995), 1, - anon_sym_LPAREN, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2001), 1, - anon_sym_DOT, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2017), 1, - anon_sym_RPAREN, - STATE(1029), 1, - sym_decorator, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1105), 1, - sym_uncurry, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3720), 1, - sym_module_primary_expression, - STATE(3893), 1, - sym_module_expression, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4145), 1, - sym__type, - STATE(4502), 1, - sym_function_type_parameter, - STATE(4638), 1, - sym_labeled_parameter, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [21668] = 43, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(129), 1, - anon_sym_module, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1203), 1, - anon_sym_TILDE, - ACTIONS(1248), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1995), 1, - anon_sym_LPAREN, - ACTIONS(1997), 1, - anon_sym_RPAREN, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2001), 1, - anon_sym_DOT, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - STATE(1030), 1, - sym_decorator, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1105), 1, - sym_uncurry, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3720), 1, - sym_module_primary_expression, - STATE(3893), 1, - sym_module_expression, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4205), 1, - sym__type, - STATE(4502), 1, - sym_function_type_parameter, - STATE(4638), 1, - sym_labeled_parameter, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [21815] = 43, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(129), 1, - anon_sym_module, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1203), 1, - anon_sym_TILDE, - ACTIONS(1248), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1995), 1, - anon_sym_LPAREN, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2001), 1, - anon_sym_DOT, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2019), 1, - anon_sym_RPAREN, - STATE(1031), 1, - sym_decorator, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1105), 1, - sym_uncurry, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3720), 1, - sym_module_primary_expression, - STATE(3893), 1, - sym_module_expression, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4110), 1, - sym__type, - STATE(4502), 1, - sym_function_type_parameter, - STATE(4638), 1, - sym_labeled_parameter, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [21962] = 43, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(129), 1, - anon_sym_module, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1203), 1, - anon_sym_TILDE, - ACTIONS(1248), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1995), 1, - anon_sym_LPAREN, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2001), 1, - anon_sym_DOT, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2021), 1, - anon_sym_RPAREN, - STATE(1032), 1, - sym_decorator, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1105), 1, - sym_uncurry, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3720), 1, - sym_module_primary_expression, - STATE(3893), 1, - sym_module_expression, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4146), 1, - sym__type, - STATE(4502), 1, - sym_function_type_parameter, - STATE(4638), 1, - sym_labeled_parameter, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [22109] = 43, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(129), 1, - anon_sym_module, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1203), 1, - anon_sym_TILDE, - ACTIONS(1248), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1995), 1, - anon_sym_LPAREN, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2001), 1, - anon_sym_DOT, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2023), 1, - anon_sym_RPAREN, - STATE(1033), 1, - sym_decorator, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1105), 1, - sym_uncurry, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3720), 1, - sym_module_primary_expression, - STATE(3893), 1, - sym_module_expression, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4117), 1, - sym__type, - STATE(4502), 1, - sym_function_type_parameter, - STATE(4638), 1, - sym_labeled_parameter, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [22256] = 43, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(129), 1, - anon_sym_module, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1203), 1, - anon_sym_TILDE, - ACTIONS(1248), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1995), 1, - anon_sym_LPAREN, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2001), 1, - anon_sym_DOT, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2025), 1, - anon_sym_RPAREN, - STATE(1034), 1, - sym_decorator, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1105), 1, - sym_uncurry, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3720), 1, - sym_module_primary_expression, - STATE(3893), 1, - sym_module_expression, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4075), 1, - sym__type, - STATE(4502), 1, - sym_function_type_parameter, - STATE(4638), 1, - sym_labeled_parameter, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [22403] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1035), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1387), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [22475] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1036), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1441), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1438), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [22546] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1037), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1464), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1462), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [22617] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1038), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1519), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1517), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [22688] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1039), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1472), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1470), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [22759] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1040), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1405), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1403), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [22830] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1041), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1409), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1407), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [22901] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1042), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1413), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1411), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [22972] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1043), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1287), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1285), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [23043] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1044), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1349), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1347), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [23114] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1045), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1301), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1299), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [23185] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2035), 1, - anon_sym_QMARK, - ACTIONS(2037), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2039), 1, - anon_sym_AMP_AMP, - ACTIONS(2041), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2045), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2047), 1, - anon_sym_STAR, - ACTIONS(2051), 1, - anon_sym_STAR_STAR, - ACTIONS(2055), 1, - anon_sym_GT_GT, - ACTIONS(2059), 1, - anon_sym_COLON_GT, - STATE(1046), 1, - sym_decorator, - ACTIONS(2049), 2, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - ACTIONS(2053), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2033), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2057), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(2031), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2027), 13, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(2029), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [23286] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1047), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1305), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1303), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [23357] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1048), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1507), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [23428] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1049), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1503), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1501), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [23499] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1050), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1353), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1351), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [23570] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1051), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1366), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1364), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [23641] = 20, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2037), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2039), 1, - anon_sym_AMP_AMP, - ACTIONS(2041), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2045), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2051), 1, - anon_sym_STAR_STAR, - ACTIONS(2055), 1, - anon_sym_GT_GT, - ACTIONS(2059), 1, - anon_sym_COLON_GT, - STATE(1052), 1, - sym_decorator, - ACTIONS(2047), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2053), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2049), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2033), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2057), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(2031), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1739), 11, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1737), 13, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [23740] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1053), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1345), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1343), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [23811] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2051), 1, - anon_sym_STAR_STAR, - STATE(1054), 1, - sym_decorator, - ACTIONS(2047), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2049), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2031), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 18, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 23, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [23890] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1355), 1, - anon_sym_EQ_GT, - ACTIONS(2061), 1, - anon_sym_as, - STATE(1055), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1353), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1351), 36, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [23965] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1056), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1491), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1489), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [24036] = 12, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2051), 1, - anon_sym_STAR_STAR, - ACTIONS(2055), 1, - anon_sym_GT_GT, - STATE(1057), 1, - sym_decorator, - ACTIONS(2047), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2053), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2049), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2031), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 17, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 21, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [24119] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1058), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1515), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1513), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [24190] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1059), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1379), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1377), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [24261] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1060), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1511), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1509), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [24332] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2051), 1, - anon_sym_STAR_STAR, - ACTIONS(2055), 1, - anon_sym_GT_GT, - STATE(1061), 1, - sym_decorator, - ACTIONS(2047), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2053), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2049), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2033), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2057), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(2031), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 17, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [24419] = 17, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2037), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2041), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2045), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2051), 1, - anon_sym_STAR_STAR, - ACTIONS(2055), 1, - anon_sym_GT_GT, - STATE(1062), 1, - sym_decorator, - ACTIONS(2047), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2053), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2049), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2033), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2057), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(2031), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 14, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [24512] = 16, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2037), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2045), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2051), 1, - anon_sym_STAR_STAR, - ACTIONS(2055), 1, - anon_sym_GT_GT, - STATE(1063), 1, - sym_decorator, - ACTIONS(2047), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2053), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2049), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2033), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2057), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(2031), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 15, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [24603] = 18, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2037), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2039), 1, - anon_sym_AMP_AMP, - ACTIONS(2041), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2045), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2051), 1, - anon_sym_STAR_STAR, - ACTIONS(2055), 1, - anon_sym_GT_GT, - STATE(1064), 1, - sym_decorator, - ACTIONS(2047), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2053), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2049), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2033), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2057), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(2031), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 14, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [24698] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1065), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1417), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1415), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [24769] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1425), 1, - anon_sym_EQ_GT, - STATE(1066), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1423), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 37, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [24842] = 15, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2037), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2051), 1, - anon_sym_STAR_STAR, - ACTIONS(2055), 1, - anon_sym_GT_GT, - STATE(1067), 1, - sym_decorator, - ACTIONS(2047), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2053), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2049), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2033), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2057), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(2031), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1729), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [24931] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1068), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1480), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1478), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [25002] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2051), 1, - anon_sym_STAR_STAR, - STATE(1069), 1, - sym_decorator, - ACTIONS(2047), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2049), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1729), 23, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(1731), 23, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [25079] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1070), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1446), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1444), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [25150] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1071), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1252), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1250), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [25221] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1072), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1275), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1273), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [25292] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1073), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1450), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1448), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [25363] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1074), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1454), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1452), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [25434] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1075), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1460), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1458), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [25505] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2035), 1, - anon_sym_QMARK, - ACTIONS(2037), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2039), 1, - anon_sym_AMP_AMP, - ACTIONS(2041), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2045), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2051), 1, - anon_sym_STAR_STAR, - ACTIONS(2055), 1, - anon_sym_GT_GT, - ACTIONS(2059), 1, - anon_sym_COLON_GT, - STATE(1076), 1, - sym_decorator, - ACTIONS(2047), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2053), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2049), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2033), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2057), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(2031), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1735), 11, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1733), 12, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [25606] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1077), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1293), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1291), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [25677] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1078), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1468), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1466), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [25748] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1079), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1495), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1493), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [25819] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1080), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1476), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1474), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [25890] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1081), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1362), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1360), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [25961] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1082), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1328), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1326), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [26032] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1083), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1335), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1333), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [26103] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1084), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1523), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1521), 38, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [26174] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2051), 1, - anon_sym_STAR_STAR, - STATE(1085), 1, - sym_decorator, - ACTIONS(2047), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2049), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1729), 23, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(1731), 23, - anon_sym_module, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [26251] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1086), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(4529), 1, - sym_formal_parameters, - STATE(4983), 1, - sym__definition_signature, - STATE(4987), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 13, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [26337] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1087), 1, - sym_decorator, - STATE(1091), 1, - sym__reserved_identifier, - STATE(4529), 1, - sym_formal_parameters, - STATE(5046), 1, - sym__definition_signature, - STATE(5057), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 13, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [26423] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1088), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 37, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [26493] = 41, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1203), 1, - anon_sym_TILDE, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2001), 1, - anon_sym_DOT, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2067), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1089), 1, - sym_decorator, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1105), 1, - sym_uncurry, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4246), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4553), 1, - sym_function_type_parameter, - STATE(4638), 1, - sym_labeled_parameter, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [26633] = 41, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1203), 1, - anon_sym_TILDE, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2001), 1, - anon_sym_DOT, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1090), 1, - sym_decorator, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1105), 1, - sym_uncurry, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4246), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4553), 1, - sym_function_type_parameter, - STATE(4638), 1, - sym_labeled_parameter, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [26773] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1091), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1383), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1381), 37, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [26843] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2061), 1, - anon_sym_as, - STATE(1092), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1353), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1351), 34, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [26916] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1303), 1, - anon_sym_EQ_GT, - STATE(1093), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1441), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1438), 35, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [26987] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1094), 1, - sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(4971), 1, - sym__definition_signature, - STATE(4972), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 13, - anon_sym_EQ, - anon_sym_and, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [27072] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1095), 1, - sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(4938), 1, - sym__definition_signature, - STATE(4939), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 14, - anon_sym_EQ, - anon_sym_and, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 27, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [27157] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1096), 1, - sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(5046), 1, - sym__definition_signature, - STATE(5057), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 14, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 27, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [27242] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1097), 1, - sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(4905), 1, - sym__definition_signature, - STATE(4907), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 26, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [27327] = 40, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1203), 1, - anon_sym_TILDE, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2001), 1, - anon_sym_DOT, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1098), 1, - sym_decorator, - STATE(1105), 1, - sym_uncurry, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4246), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4553), 1, - sym_function_type_parameter, - STATE(4638), 1, - sym_labeled_parameter, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [27464] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1099), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1823), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1821), 35, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [27532] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1100), 1, - sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(4713), 1, - sym__definition_signature, - STATE(4715), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 26, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [27616] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1101), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1835), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1833), 35, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [27684] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1337), 1, - anon_sym_LPAREN, - ACTIONS(2071), 1, - anon_sym_DOT, - STATE(1102), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1301), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1299), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [27756] = 38, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(129), 1, - anon_sym_module, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1246), 1, - anon_sym_RPAREN, - ACTIONS(1248), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1995), 1, - anon_sym_LPAREN, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1103), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3720), 1, - sym_module_primary_expression, - STATE(3893), 1, - sym_module_expression, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4184), 1, - sym__type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [27888] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1104), 1, - sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(4957), 1, - sym__definition_signature, - STATE(4958), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 27, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [27972] = 39, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1203), 1, - anon_sym_TILDE, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2001), 1, - anon_sym_DOT, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1105), 1, - sym_decorator, - STATE(1357), 1, - sym_uncurry, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4303), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4626), 1, - sym_labeled_parameter, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [28106] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1106), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1779), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 35, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [28174] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1107), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1783), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1781), 35, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [28242] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2073), 1, - anon_sym_else, - STATE(1108), 1, - sym_decorator, - STATE(1124), 1, - aux_sym_if_expression_repeat1, - STATE(1240), 1, - sym_else_if_clause, - STATE(1473), 1, - sym_else_clause, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1312), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1310), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [28317] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2073), 1, - anon_sym_else, - STATE(1108), 1, - aux_sym_if_expression_repeat1, - STATE(1109), 1, - sym_decorator, - STATE(1240), 1, - sym_else_if_clause, - STATE(1492), 1, - sym_else_clause, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1269), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1267), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [28392] = 38, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2079), 1, - anon_sym_private, - ACTIONS(2081), 1, - anon_sym_DOT_DOT, - ACTIONS(2083), 1, - anon_sym_PIPE, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - STATE(1110), 1, - sym_decorator, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3176), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3336), 1, - sym__type, - STATE(3698), 1, - sym_extensible_type, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - STATE(5017), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3395), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [28523] = 38, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2081), 1, - anon_sym_DOT_DOT, - ACTIONS(2083), 1, - anon_sym_PIPE, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2099), 1, - anon_sym_private, - STATE(1111), 1, - sym_decorator, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3133), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3383), 1, - sym__type, - STATE(3641), 1, - sym_extensible_type, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - STATE(5017), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3395), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [28654] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1112), 1, - sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(4905), 1, - sym__definition_signature, - STATE(4907), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 13, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 26, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [28737] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1113), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 34, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [28804] = 38, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2081), 1, - anon_sym_DOT_DOT, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2101), 1, - anon_sym_private, - ACTIONS(2103), 1, - anon_sym_PIPE, - STATE(1114), 1, - sym_decorator, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3156), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3372), 1, - sym__type, - STATE(3698), 1, - sym_extensible_type, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4792), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3363), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [28935] = 38, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2081), 1, - anon_sym_DOT_DOT, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2103), 1, - anon_sym_PIPE, - ACTIONS(2105), 1, - anon_sym_private, - STATE(1115), 1, - sym_decorator, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3136), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3419), 1, - sym__type, - STATE(3641), 1, - sym_extensible_type, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4792), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3363), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [29066] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2107), 1, - anon_sym_LT, - STATE(1070), 1, - sym_type_arguments, - STATE(1116), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1305), 12, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1303), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [29136] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1117), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1301), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1299), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [29202] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1118), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1287), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1285), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [29268] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1119), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1275), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1273), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [29334] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1120), 1, - sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(5021), 1, - sym__definition_signature, - STATE(5022), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 14, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 24, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [29416] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1121), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1293), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1291), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [29482] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1122), 1, - sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(4696), 1, - sym__definition_signature, - STATE(4697), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 12, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 26, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [29564] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1340), 1, - anon_sym_COLON, - ACTIONS(2071), 1, - anon_sym_with, - STATE(1123), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1337), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - ACTIONS(1301), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1299), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [29636] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2110), 1, - anon_sym_else, - STATE(1240), 1, - sym_else_if_clause, - STATE(1124), 2, - sym_decorator, - aux_sym_if_expression_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1484), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1482), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [29706] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(1231), 1, - aux_sym_value_identifier_token1, - ACTIONS(2113), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1125), 1, - sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(5053), 1, - sym__definition_signature, - STATE(5055), 1, - sym_value_identifier, - ACTIONS(1228), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 12, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 25, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [29787] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2116), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1126), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [29912] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2118), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1127), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [30037] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1128), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1349), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1347), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [30102] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1129), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1537), 13, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1535), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [30167] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1130), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1507), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [30232] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1131), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1345), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1343), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [30297] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2120), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1132), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [30422] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1133), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1495), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1493), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [30487] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1134), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1387), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [30552] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1135), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1491), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1489), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [30617] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1136), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1476), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1474), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [30682] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1137), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1533), 13, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1531), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [30747] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2122), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1138), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [30872] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2124), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1139), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [30997] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2132), 1, - anon_sym_GT, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - STATE(1140), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4289), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [31122] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1141), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1515), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1513), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [31187] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1142), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1328), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1326), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [31252] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1143), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1305), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1303), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [31317] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1545), 1, - anon_sym_COLON, - ACTIONS(1547), 1, - anon_sym_EQ_GT, - STATE(1144), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1423), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [31386] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2146), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1145), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [31511] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1146), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1391), 13, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1389), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [31576] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1147), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [31701] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1148), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1656), 13, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1654), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [31766] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2150), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1149), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [31891] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2152), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1150), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [32016] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2154), 1, - anon_sym_GT, - STATE(1151), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4289), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [32141] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2156), 1, - anon_sym_GT, - STATE(1152), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4289), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [32266] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1153), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1503), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1501), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [32331] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1305), 1, - anon_sym_EQ, - STATE(1154), 1, - sym_decorator, - ACTIONS(1303), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1441), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1438), 31, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [32400] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1155), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1353), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1351), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [32465] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1156), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1260), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1258), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [32530] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1157), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1450), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1448), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [32595] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1158), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1668), 13, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1666), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [32660] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2079), 1, - anon_sym_private, - ACTIONS(2083), 1, - anon_sym_PIPE, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1159), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3336), 1, - sym__type, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - STATE(5017), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3395), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [32785] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2158), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1160), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [32910] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2160), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1161), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [33035] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1162), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1672), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1670), 31, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [33100] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1163), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1260), 13, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1258), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [33165] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2162), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1164), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [33290] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2164), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1165), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [33415] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2166), 1, - anon_sym_GT, - STATE(1166), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4289), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [33540] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2168), 1, - anon_sym_GT, - STATE(1167), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4289), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [33665] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2170), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1168), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [33790] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1169), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [33915] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2174), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1170), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [34040] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2176), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1171), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [34165] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2178), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1172), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [34290] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2180), 1, - anon_sym_GT, - STATE(1173), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4289), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [34415] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2182), 1, - anon_sym_GT, - STATE(1174), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4289), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [34540] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2083), 1, - anon_sym_PIPE, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2184), 1, - anon_sym_private, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1175), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3356), 1, - sym__type, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - STATE(5017), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3395), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [34665] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1176), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1622), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1620), 34, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_else, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [34730] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1177), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1468), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1466), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [34795] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1178), 1, - sym_decorator, - ACTIONS(1337), 2, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1301), 13, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1299), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [34862] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1179), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1644), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1642), 31, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [34927] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1180), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1366), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1364), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [34992] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1181), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1454), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1452), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [35057] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2083), 1, - anon_sym_PIPE, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2099), 1, - anon_sym_private, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1182), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3383), 1, - sym__type, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - STATE(5017), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3395), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [35182] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1183), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1362), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1360), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [35247] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2186), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1184), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [35372] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1185), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1379), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1377), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [35437] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1186), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1464), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1462), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [35502] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1187), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1519), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1517), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [35567] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1188), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1523), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1521), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [35632] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1189), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1472), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1470), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [35697] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2188), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1190), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [35822] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1191), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1405), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1403), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [35887] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2190), 1, - anon_sym_GT, - STATE(1192), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4289), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [36012] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1193), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1409), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1407), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [36077] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1194), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1417), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1415), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [36142] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1195), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [36267] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1425), 1, - anon_sym_EQ_GT, - STATE(1196), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1423), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1421), 32, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [36334] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1197), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1413), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1411), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [36399] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1198), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1511), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1509), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [36464] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1199), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1541), 13, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1539), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [36529] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1200), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1676), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1674), 31, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [36594] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2194), 1, - anon_sym_GT, - STATE(1201), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4289), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [36719] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1202), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1480), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1478), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [36784] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2196), 1, - anon_sym_GT, - STATE(1203), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4289), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [36909] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1204), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1387), 13, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [36974] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - STATE(1205), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1432), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [37043] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1206), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1460), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1458), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [37108] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2101), 1, - anon_sym_private, - ACTIONS(2103), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1207), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3372), 1, - sym__type, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4792), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3363), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [37233] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1208), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1441), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1438), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [37298] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1209), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [37423] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1210), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1446), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1444), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [37488] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2103), 1, - anon_sym_PIPE, - ACTIONS(2105), 1, - anon_sym_private, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1211), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3419), 1, - sym__type, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4792), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3363), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [37613] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1212), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1571), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1569), 34, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_else, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [37678] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1213), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1252), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1250), 33, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DOT, - anon_sym_constraint, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [37743] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2103), 1, - anon_sym_PIPE, - ACTIONS(2200), 1, - anon_sym_private, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1214), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3374), 1, - sym__type, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4792), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3363), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [37868] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2202), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1215), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [37993] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2204), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1216), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [38118] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2083), 1, - anon_sym_PIPE, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2206), 1, - anon_sym_private, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1217), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3326), 1, - sym__type, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - STATE(5017), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3395), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [38243] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2103), 1, - anon_sym_PIPE, - ACTIONS(2208), 1, - anon_sym_private, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1218), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3375), 1, - sym__type, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4792), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3363), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [38368] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1219), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [38493] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2212), 1, - anon_sym_RPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1220), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [38618] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2214), 1, - anon_sym_GT, - STATE(1221), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4289), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [38743] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1222), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1527), 13, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1525), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [38808] = 36, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2216), 1, - anon_sym_GT, - STATE(1223), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4289), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [38933] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1224), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1656), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1654), 31, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [38998] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1225), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1660), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1658), 31, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [39063] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1226), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1664), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1662), 31, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [39128] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1227), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1668), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1666), 31, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [39193] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1228), 1, - sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(4677), 1, - sym__definition_signature, - STATE(4707), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_catch, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 24, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [39274] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(67), 1, - aux_sym_variant_identifier_token1, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1229), 1, - sym_decorator, - STATE(1412), 1, - sym_type_identifier, - STATE(1442), 1, - sym_variant_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3864), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4791), 1, - sym_abstract_type, - STATE(4824), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1644), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [39396] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2226), 1, - anon_sym_PIPE, - ACTIONS(2228), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2230), 1, - aux_sym_type_identifier_token1, - ACTIONS(2232), 1, - sym__escape_identifier, - STATE(1230), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(3296), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3346), 1, - sym_variant_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(3564), 1, - sym__type, - STATE(4038), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4943), 1, - sym_function_type_parameters, - STATE(5034), 1, - sym_abstract_type, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3730), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [39518] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2234), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1231), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2957), 1, - sym_variant_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4725), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3143), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [39640] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(67), 1, - aux_sym_variant_identifier_token1, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2236), 1, - anon_sym_PIPE, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1232), 1, - sym_decorator, - STATE(1522), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1549), 1, - sym_variant_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3858), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4695), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5004), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1674), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [39762] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2242), 1, - anon_sym_PIPE, - STATE(1233), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(3564), 1, - sym__type, - STATE(3781), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4784), 1, - sym_abstract_type, - STATE(4926), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3834), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [39884] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2228), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2230), 1, - aux_sym_type_identifier_token1, - ACTIONS(2232), 1, - sym__escape_identifier, - ACTIONS(2244), 1, - anon_sym_PIPE, - STATE(1234), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(3296), 1, - sym_type_identifier, - STATE(3303), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3518), 1, - sym__non_function_inline_type, - STATE(3526), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3564), 1, - sym__type, - STATE(4038), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4953), 1, - sym_function_type_parameters, - STATE(5034), 1, - sym_abstract_type, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3562), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [40006] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2228), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2250), 1, - anon_sym_PIPE, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - STATE(1235), 1, - sym_decorator, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1714), 1, - sym__non_function_inline_type, - STATE(1715), 1, - sym_record_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1772), 1, - sym__type, - STATE(1962), 1, - sym_type_identifier, - STATE(2183), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3783), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4796), 1, - sym_abstract_type, - STATE(4967), 1, - sym_function_type_parameters, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2465), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1677), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [40128] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2270), 1, - anon_sym_PIPE, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2278), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - STATE(773), 1, - sym__type_identifier, - STATE(788), 1, - sym__non_function_inline_type, - STATE(796), 1, - sym__type, - STATE(808), 1, - sym_variant_identifier, - STATE(813), 1, - sym_record_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(859), 1, - sym_type_identifier, - STATE(1236), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3916), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4668), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4979), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(876), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(832), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [40250] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(445), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2286), 1, - anon_sym_PIPE, - STATE(1237), 1, - sym_decorator, - STATE(1534), 1, - sym_type_identifier, - STATE(1588), 1, - sym__type_identifier, - STATE(1594), 1, - sym_variant_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1714), 1, - sym__non_function_inline_type, - STATE(1715), 1, - sym_record_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1772), 1, - sym__type, - STATE(3322), 1, - sym_module_identifier, - STATE(3786), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4818), 1, - sym_abstract_type, - STATE(5029), 1, - sym_function_type_parameters, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1766), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1677), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [40372] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(67), 1, - aux_sym_variant_identifier_token1, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2288), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1238), 1, - sym_decorator, - STATE(1412), 1, - sym_type_identifier, - STATE(1442), 1, - sym_variant_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3874), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4681), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5070), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1570), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [40494] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2290), 1, - anon_sym_LBRACE, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_module, - ACTIONS(2296), 1, - anon_sym_PIPE, - ACTIONS(2298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2300), 1, - anon_sym_LBRACK, - ACTIONS(2304), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2306), 1, - aux_sym_type_identifier_token1, - ACTIONS(2308), 1, - sym__escape_identifier, - ACTIONS(2310), 1, - sym_unit_type, - STATE(1239), 1, - sym_decorator, - STATE(1477), 1, - sym_variant_identifier, - STATE(1535), 1, - sym_type_identifier, - STATE(1542), 1, - sym__type_identifier, - STATE(1587), 1, - sym_record_type, - STATE(1592), 1, - sym__type, - STATE(1600), 1, - sym__non_function_inline_type, - STATE(1614), 1, - sym_type_identifier_path, - STATE(1624), 1, - sym_function_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3790), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4534), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4843), 1, - sym_abstract_type, - STATE(5044), 1, - sym_function_type_parameters, - ACTIONS(2302), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1608), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1598), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1601), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [40616] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1240), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1593), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1591), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_else, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [40680] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2278), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2312), 1, - anon_sym_PIPE, - STATE(773), 1, - sym__type_identifier, - STATE(796), 1, - sym__type, - STATE(817), 1, - sym__non_function_inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(834), 1, - sym_record_type, - STATE(846), 1, - sym_variant_identifier, - STATE(859), 1, - sym_type_identifier, - STATE(1241), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3916), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4668), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5059), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(971), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(832), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [40802] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2314), 1, - anon_sym_PIPE, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1242), 1, - sym_decorator, - STATE(1247), 1, - sym__type, - STATE(1402), 1, - sym_type_identifier, - STATE(1419), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3930), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4841), 1, - sym_abstract_type, - STATE(5006), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1536), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [40924] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2226), 1, - anon_sym_PIPE, - ACTIONS(2228), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2230), 1, - aux_sym_type_identifier_token1, - ACTIONS(2232), 1, - sym__escape_identifier, - STATE(1243), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(3296), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3346), 1, - sym_variant_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4038), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4189), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4943), 1, - sym_function_type_parameters, - STATE(5034), 1, - sym_abstract_type, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3730), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [41046] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(67), 1, - aux_sym_variant_identifier_token1, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2322), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1244), 1, - sym_decorator, - STATE(1445), 1, - sym_variant_identifier, - STATE(1522), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3819), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4683), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5072), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1657), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [41168] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1245), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4235), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [41290] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2324), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1246), 1, - sym_decorator, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(1806), 1, - sym_variant_identifier, - STATE(1872), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3852), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4887), 1, - sym_abstract_type, - STATE(5071), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2354), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [41412] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - STATE(1247), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1577), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1575), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [41478] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2228), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2328), 1, - anon_sym_PIPE, - STATE(1248), 1, - sym_decorator, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1725), 1, - sym__non_function_inline_type, - STATE(1728), 1, - sym_record_type, - STATE(1772), 1, - sym__type, - STATE(1962), 1, - sym_type_identifier, - STATE(1974), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3889), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4962), 1, - sym_function_type_parameters, - STATE(5078), 1, - sym_abstract_type, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2367), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1677), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [41600] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1249), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3131), 1, - sym__type, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [41722] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2330), 1, - anon_sym_PIPE, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - STATE(1155), 1, - sym_function_type, - STATE(1250), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3033), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3295), 1, - sym_record_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3414), 1, - sym__type, - STATE(3870), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4947), 1, - sym_function_type_parameters, - STATE(5028), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3318), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [41844] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2336), 1, - anon_sym_PIPE, - ACTIONS(2338), 1, - aux_sym_type_identifier_token1, - ACTIONS(2340), 1, - sym__escape_identifier, - STATE(1155), 1, - sym_function_type, - STATE(1251), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3020), 1, - sym_type_identifier, - STATE(3162), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3295), 1, - sym_record_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3455), 1, - sym__type, - STATE(3795), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4772), 1, - sym_function_type_parameters, - STATE(4896), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3366), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [41966] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(67), 1, - aux_sym_variant_identifier_token1, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2288), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1252), 1, - sym_decorator, - STATE(1412), 1, - sym_type_identifier, - STATE(1442), 1, - sym_variant_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(1764), 1, - sym__type, - STATE(3322), 1, - sym_module_identifier, - STATE(3874), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4681), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5070), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1570), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [42088] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2342), 1, - anon_sym_PIPE, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1253), 1, - sym_decorator, - STATE(2472), 1, - sym_type_identifier, - STATE(2482), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3871), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4989), 1, - sym_function_type_parameters, - STATE(5051), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2650), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [42210] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2103), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1254), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4792), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3363), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [42332] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(67), 1, - aux_sym_variant_identifier_token1, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2348), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1255), 1, - sym_decorator, - STATE(1445), 1, - sym_variant_identifier, - STATE(1522), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3858), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5002), 1, - sym_function_type_parameters, - STATE(5004), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1664), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [42454] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2350), 1, - anon_sym_PIPE, - STATE(1256), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3348), 1, - sym_variant_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3518), 1, - sym__non_function_inline_type, - STATE(3526), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3564), 1, - sym__type, - STATE(3781), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4784), 1, - sym_abstract_type, - STATE(4859), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3725), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [42576] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2228), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2230), 1, - aux_sym_type_identifier_token1, - ACTIONS(2232), 1, - sym__escape_identifier, - ACTIONS(2352), 1, - anon_sym_PIPE, - STATE(1257), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(3296), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3346), 1, - sym_variant_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(3564), 1, - sym__type, - STATE(3782), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4790), 1, - sym_abstract_type, - STATE(4889), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3732), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [42698] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2228), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2354), 1, - anon_sym_PIPE, - STATE(1258), 1, - sym_decorator, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1725), 1, - sym__non_function_inline_type, - STATE(1728), 1, - sym_record_type, - STATE(1772), 1, - sym__type, - STATE(1962), 1, - sym_type_identifier, - STATE(1974), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3783), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4796), 1, - sym_abstract_type, - STATE(4894), 1, - sym_function_type_parameters, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2429), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1677), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [42820] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2278), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2356), 1, - anon_sym_PIPE, - STATE(773), 1, - sym__type_identifier, - STATE(796), 1, - sym__type, - STATE(817), 1, - sym__non_function_inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(834), 1, - sym_record_type, - STATE(846), 1, - sym_variant_identifier, - STATE(859), 1, - sym_type_identifier, - STATE(1259), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3784), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4812), 1, - sym_abstract_type, - STATE(4980), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(917), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(832), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [42942] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(445), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2358), 1, - anon_sym_PIPE, - STATE(1260), 1, - sym_decorator, - STATE(1534), 1, - sym_type_identifier, - STATE(1548), 1, - sym_variant_identifier, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1725), 1, - sym__non_function_inline_type, - STATE(1728), 1, - sym_record_type, - STATE(1772), 1, - sym__type, - STATE(3322), 1, - sym_module_identifier, - STATE(3786), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4708), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4818), 1, - sym_abstract_type, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1670), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1677), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [43064] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(67), 1, - aux_sym_variant_identifier_token1, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2360), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1261), 1, - sym_decorator, - STATE(1378), 1, - sym_variant_identifier, - STATE(1412), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3874), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4681), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4948), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1566), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [43186] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2290), 1, - anon_sym_LBRACE, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_module, - ACTIONS(2298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2300), 1, - anon_sym_LBRACK, - ACTIONS(2304), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2306), 1, - aux_sym_type_identifier_token1, - ACTIONS(2308), 1, - sym__escape_identifier, - ACTIONS(2310), 1, - sym_unit_type, - ACTIONS(2362), 1, - anon_sym_PIPE, - STATE(1262), 1, - sym_decorator, - STATE(1358), 1, - sym_variant_identifier, - STATE(1535), 1, - sym_type_identifier, - STATE(1542), 1, - sym__type_identifier, - STATE(1592), 1, - sym__type, - STATE(1607), 1, - sym__non_function_inline_type, - STATE(1609), 1, - sym_record_type, - STATE(1614), 1, - sym_type_identifier_path, - STATE(1624), 1, - sym_function_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3790), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4534), 1, - sym_module_primary_expression, - STATE(4700), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4843), 1, - sym_abstract_type, - ACTIONS(2302), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1515), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1598), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1601), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [43308] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2364), 1, - anon_sym_PIPE, - ACTIONS(2366), 1, - aux_sym_variant_identifier_token1, - STATE(755), 1, - sym_variant_identifier, - STATE(760), 1, - sym_type_identifier, - STATE(773), 1, - sym__type_identifier, - STATE(796), 1, - sym__type, - STATE(817), 1, - sym__non_function_inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(834), 1, - sym_record_type, - STATE(1263), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3910), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4734), 1, - sym_abstract_type, - STATE(4744), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(799), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(832), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [43430] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2368), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1247), 1, - sym__type, - STATE(1264), 1, - sym_decorator, - STATE(1797), 1, - sym_variant_identifier, - STATE(1840), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3985), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4821), 1, - sym_abstract_type, - STATE(4922), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2238), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [43552] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2083), 1, - anon_sym_PIPE, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1265), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3356), 1, - sym__type, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - STATE(5017), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3395), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [43674] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(445), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2370), 1, - anon_sym_PIPE, - STATE(1266), 1, - sym_decorator, - STATE(1534), 1, - sym_type_identifier, - STATE(1548), 1, - sym_variant_identifier, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1725), 1, - sym__non_function_inline_type, - STATE(1728), 1, - sym_record_type, - STATE(1772), 1, - sym__type, - STATE(3322), 1, - sym_module_identifier, - STATE(3836), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4738), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5015), 1, - sym_function_type_parameters, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1650), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1677), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [43796] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(67), 1, - aux_sym_variant_identifier_token1, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2372), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1267), 1, - sym_decorator, - STATE(1378), 1, - sym_variant_identifier, - STATE(1412), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3864), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4791), 1, - sym_abstract_type, - STATE(5066), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1553), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [43918] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1268), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4569), 1, - sym__type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [44040] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2374), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1269), 1, - sym_decorator, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(1818), 1, - sym_variant_identifier, - STATE(2036), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(4026), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4686), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4966), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2363), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [44162] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2083), 1, - anon_sym_PIPE, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1270), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3355), 1, - sym__type, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - STATE(5017), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3395), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [44284] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2290), 1, - anon_sym_LBRACE, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_module, - ACTIONS(2298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2300), 1, - anon_sym_LBRACK, - ACTIONS(2304), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2306), 1, - aux_sym_type_identifier_token1, - ACTIONS(2308), 1, - sym__escape_identifier, - ACTIONS(2310), 1, - sym_unit_type, - ACTIONS(2376), 1, - anon_sym_PIPE, - STATE(1271), 1, - sym_decorator, - STATE(1358), 1, - sym_variant_identifier, - STATE(1535), 1, - sym_type_identifier, - STATE(1542), 1, - sym__type_identifier, - STATE(1592), 1, - sym__type, - STATE(1607), 1, - sym__non_function_inline_type, - STATE(1609), 1, - sym_record_type, - STATE(1614), 1, - sym_type_identifier_path, - STATE(1624), 1, - sym_function_type, - STATE(3322), 1, - sym_module_identifier, - STATE(4046), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4534), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5020), 1, - sym_function_type_parameters, - STATE(5060), 1, - sym_abstract_type, - ACTIONS(2302), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1513), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1598), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1601), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [44406] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2378), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1272), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3131), 1, - sym__type, - STATE(3322), 1, - sym_module_identifier, - STATE(3765), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4704), 1, - sym_abstract_type, - STATE(4737), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3216), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [44528] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2336), 1, - anon_sym_PIPE, - ACTIONS(2338), 1, - aux_sym_type_identifier_token1, - ACTIONS(2340), 1, - sym__escape_identifier, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1273), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3020), 1, - sym_type_identifier, - STATE(3162), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3295), 1, - sym_record_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3795), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4772), 1, - sym_function_type_parameters, - STATE(4896), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3366), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [44650] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2228), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2230), 1, - aux_sym_type_identifier_token1, - ACTIONS(2232), 1, - sym__escape_identifier, - ACTIONS(2380), 1, - anon_sym_PIPE, - STATE(1274), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(3296), 1, - sym_type_identifier, - STATE(3303), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3518), 1, - sym__non_function_inline_type, - STATE(3526), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3564), 1, - sym__type, - STATE(3782), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4670), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4790), 1, - sym_abstract_type, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3619), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [44772] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2366), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2382), 1, - anon_sym_PIPE, - STATE(754), 1, - sym_variant_identifier, - STATE(760), 1, - sym_type_identifier, - STATE(773), 1, - sym__type_identifier, - STATE(788), 1, - sym__non_function_inline_type, - STATE(796), 1, - sym__type, - STATE(813), 1, - sym_record_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(1275), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3910), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4734), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5032), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(777), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(832), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [44894] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2228), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2384), 1, - anon_sym_PIPE, - STATE(1276), 1, - sym_decorator, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1714), 1, - sym__non_function_inline_type, - STATE(1715), 1, - sym_record_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1962), 1, - sym_type_identifier, - STATE(2010), 1, - sym__type, - STATE(2183), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3889), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4846), 1, - sym_function_type_parameters, - STATE(5078), 1, - sym_abstract_type, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2474), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1677), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [45016] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(445), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2386), 1, - anon_sym_PIPE, - STATE(1277), 1, - sym_decorator, - STATE(1534), 1, - sym_type_identifier, - STATE(1588), 1, - sym__type_identifier, - STATE(1594), 1, - sym_variant_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1714), 1, - sym__non_function_inline_type, - STATE(1715), 1, - sym_record_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1772), 1, - sym__type, - STATE(3322), 1, - sym_module_identifier, - STATE(3836), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4733), 1, - sym_function_type_parameters, - STATE(4738), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1708), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1677), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [45138] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2388), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1278), 1, - sym_decorator, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(1730), 1, - sym_variant_identifier, - STATE(1872), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3852), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4877), 1, - sym_function_type_parameters, - STATE(4887), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2258), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [45260] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2083), 1, - anon_sym_PIPE, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1279), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - STATE(5017), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3395), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [45382] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2342), 1, - anon_sym_PIPE, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1247), 1, - sym__type, - STATE(1280), 1, - sym_decorator, - STATE(2472), 1, - sym_type_identifier, - STATE(2482), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3871), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4989), 1, - sym_function_type_parameters, - STATE(5051), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2650), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [45504] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - ACTIONS(2390), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1281), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3159), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3414), 1, - sym__type, - STATE(3861), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4674), 1, - sym_abstract_type, - STATE(4756), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3337), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [45626] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2314), 1, - anon_sym_PIPE, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1282), 1, - sym_decorator, - STATE(1402), 1, - sym_type_identifier, - STATE(1419), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3930), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4841), 1, - sym_abstract_type, - STATE(5006), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1536), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [45748] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2338), 1, - aux_sym_type_identifier_token1, - ACTIONS(2340), 1, - sym__escape_identifier, - ACTIONS(2392), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1283), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3020), 1, - sym_type_identifier, - STATE(3029), 1, - sym_variant_identifier, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3795), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4896), 1, - sym_abstract_type, - STATE(4906), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3285), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [45870] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2366), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2394), 1, - anon_sym_PIPE, - STATE(755), 1, - sym_variant_identifier, - STATE(760), 1, - sym_type_identifier, - STATE(773), 1, - sym__type_identifier, - STATE(796), 1, - sym__type, - STATE(817), 1, - sym__non_function_inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(834), 1, - sym_record_type, - STATE(1284), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3787), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4823), 1, - sym_abstract_type, - STATE(5037), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(809), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(832), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [45992] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2278), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2312), 1, - anon_sym_PIPE, - STATE(773), 1, - sym__type_identifier, - STATE(817), 1, - sym__non_function_inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(834), 1, - sym_record_type, - STATE(846), 1, - sym_variant_identifier, - STATE(859), 1, - sym_type_identifier, - STATE(866), 1, - sym__type, - STATE(1285), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3916), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4668), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5059), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(971), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(832), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [46114] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - STATE(1286), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(3564), 1, - sym__type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [46236] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2396), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1287), 1, - sym_decorator, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(1806), 1, - sym_variant_identifier, - STATE(1872), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3943), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4997), 1, - sym_function_type_parameters, - STATE(5068), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2389), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [46358] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2368), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1288), 1, - sym_decorator, - STATE(1797), 1, - sym_variant_identifier, - STATE(1840), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3985), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4821), 1, - sym_abstract_type, - STATE(4922), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2238), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [46480] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - ACTIONS(2390), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1289), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3159), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3861), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4674), 1, - sym_abstract_type, - STATE(4756), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3337), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [46602] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2278), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2398), 1, - anon_sym_PIPE, - STATE(773), 1, - sym__type_identifier, - STATE(788), 1, - sym__non_function_inline_type, - STATE(796), 1, - sym__type, - STATE(808), 1, - sym_variant_identifier, - STATE(813), 1, - sym_record_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(859), 1, - sym_type_identifier, - STATE(1290), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3784), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4812), 1, - sym_abstract_type, - STATE(4897), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(880), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(832), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [46724] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2324), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1291), 1, - sym_decorator, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(1764), 1, - sym__type, - STATE(1806), 1, - sym_variant_identifier, - STATE(1872), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3852), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4887), 1, - sym_abstract_type, - STATE(5071), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2354), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [46846] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2400), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1292), 1, - sym_decorator, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(1730), 1, - sym_variant_identifier, - STATE(1872), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3943), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4970), 1, - sym_function_type_parameters, - STATE(5068), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2280), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [46968] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2402), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1293), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(2973), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4923), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3160), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [47090] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2404), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1294), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2957), 1, - sym_variant_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4988), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3128), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [47212] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2366), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2406), 1, - anon_sym_PIPE, - STATE(754), 1, - sym_variant_identifier, - STATE(760), 1, - sym_type_identifier, - STATE(773), 1, - sym__type_identifier, - STATE(788), 1, - sym__non_function_inline_type, - STATE(796), 1, - sym__type, - STATE(813), 1, - sym_record_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(1295), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3787), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4823), 1, - sym_abstract_type, - STATE(4842), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(779), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(832), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [47334] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2408), 1, - anon_sym_PIPE, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1247), 1, - sym__type, - STATE(1296), 1, - sym_decorator, - STATE(2287), 1, - sym_type_identifier, - STATE(2326), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3804), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4709), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4810), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2564), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [47456] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2414), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1297), 1, - sym_decorator, - STATE(1700), 1, - sym_type_identifier, - STATE(1774), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(4051), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4730), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4927), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2051), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [47578] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2338), 1, - aux_sym_type_identifier_token1, - ACTIONS(2340), 1, - sym__escape_identifier, - ACTIONS(2416), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1298), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3020), 1, - sym_type_identifier, - STATE(3162), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3295), 1, - sym_record_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3867), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4902), 1, - sym_abstract_type, - STATE(4991), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3343), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [47700] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(445), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2386), 1, - anon_sym_PIPE, - STATE(1299), 1, - sym_decorator, - STATE(1534), 1, - sym_type_identifier, - STATE(1588), 1, - sym__type_identifier, - STATE(1594), 1, - sym_variant_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1714), 1, - sym__non_function_inline_type, - STATE(1715), 1, - sym_record_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(2010), 1, - sym__type, - STATE(3322), 1, - sym_module_identifier, - STATE(3836), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4733), 1, - sym_function_type_parameters, - STATE(4738), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1708), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1677), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [47822] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2418), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1300), 1, - sym_decorator, - STATE(1700), 1, - sym_type_identifier, - STATE(1862), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3772), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4735), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4952), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2275), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [47944] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - ACTIONS(2420), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1301), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3007), 1, - sym_variant_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3861), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4674), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5038), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3201), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [48066] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2364), 1, - anon_sym_PIPE, - ACTIONS(2366), 1, - aux_sym_variant_identifier_token1, - STATE(755), 1, - sym_variant_identifier, - STATE(760), 1, - sym_type_identifier, - STATE(773), 1, - sym__type_identifier, - STATE(817), 1, - sym__non_function_inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(834), 1, - sym_record_type, - STATE(866), 1, - sym__type, - STATE(1302), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3910), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4734), 1, - sym_abstract_type, - STATE(4744), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(799), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(832), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [48188] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2290), 1, - anon_sym_LBRACE, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_module, - ACTIONS(2298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2300), 1, - anon_sym_LBRACK, - ACTIONS(2304), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2306), 1, - aux_sym_type_identifier_token1, - ACTIONS(2308), 1, - sym__escape_identifier, - ACTIONS(2310), 1, - sym_unit_type, - ACTIONS(2422), 1, - anon_sym_PIPE, - STATE(1303), 1, - sym_decorator, - STATE(1477), 1, - sym_variant_identifier, - STATE(1535), 1, - sym_type_identifier, - STATE(1542), 1, - sym__type_identifier, - STATE(1587), 1, - sym_record_type, - STATE(1592), 1, - sym__type, - STATE(1600), 1, - sym__non_function_inline_type, - STATE(1614), 1, - sym_type_identifier_path, - STATE(1624), 1, - sym_function_type, - STATE(3322), 1, - sym_module_identifier, - STATE(4046), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4534), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4995), 1, - sym_function_type_parameters, - STATE(5060), 1, - sym_abstract_type, - ACTIONS(2302), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1586), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1598), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1601), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [48310] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2378), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1304), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3765), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4704), 1, - sym_abstract_type, - STATE(4737), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3216), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [48432] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - ACTIONS(2424), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1305), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3159), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3870), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5028), 1, - sym_abstract_type, - STATE(5039), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3402), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [48554] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2426), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1247), 1, - sym__type, - STATE(1306), 1, - sym_decorator, - STATE(1758), 1, - sym_type_identifier, - STATE(1773), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3945), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4881), 1, - sym_function_type_parameters, - STATE(4949), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2044), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [48676] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2428), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1307), 1, - sym_decorator, - STATE(2393), 1, - sym_variant_identifier, - STATE(2472), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3871), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4950), 1, - sym_function_type_parameters, - STATE(5051), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2588), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [48798] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - ACTIONS(2430), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1308), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3033), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3295), 1, - sym_record_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3861), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4674), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5065), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3292), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [48920] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2290), 1, - anon_sym_LBRACE, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_module, - ACTIONS(2298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2300), 1, - anon_sym_LBRACK, - ACTIONS(2304), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2306), 1, - aux_sym_type_identifier_token1, - ACTIONS(2308), 1, - sym__escape_identifier, - ACTIONS(2310), 1, - sym_unit_type, - ACTIONS(2422), 1, - anon_sym_PIPE, - STATE(1309), 1, - sym_decorator, - STATE(1477), 1, - sym_variant_identifier, - STATE(1535), 1, - sym_type_identifier, - STATE(1542), 1, - sym__type_identifier, - STATE(1587), 1, - sym_record_type, - STATE(1600), 1, - sym__non_function_inline_type, - STATE(1614), 1, - sym_type_identifier_path, - STATE(1624), 1, - sym_function_type, - STATE(1809), 1, - sym__type, - STATE(3322), 1, - sym_module_identifier, - STATE(4046), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4534), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4995), 1, - sym_function_type_parameters, - STATE(5060), 1, - sym_abstract_type, - ACTIONS(2302), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1586), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1598), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1601), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [49042] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2432), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1310), 1, - sym_decorator, - STATE(2472), 1, - sym_type_identifier, - STATE(2482), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3775), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4755), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5024), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2627), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [49164] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2338), 1, - aux_sym_type_identifier_token1, - ACTIONS(2340), 1, - sym__escape_identifier, - ACTIONS(2434), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1311), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3020), 1, - sym_type_identifier, - STATE(3029), 1, - sym_variant_identifier, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3867), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4902), 1, - sym_abstract_type, - STATE(4916), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3307), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [49286] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1312), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4349), 1, - sym__type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [49408] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2436), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1313), 1, - sym_decorator, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(1764), 1, - sym__type, - STATE(2036), 1, - sym_type_identifier, - STATE(2097), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(4026), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4893), 1, - sym_function_type_parameters, - STATE(4966), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2470), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [49530] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2408), 1, - anon_sym_PIPE, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1314), 1, - sym_decorator, - STATE(2287), 1, - sym_type_identifier, - STATE(2326), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3804), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4709), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4810), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2564), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [49652] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2338), 1, - aux_sym_type_identifier_token1, - ACTIONS(2340), 1, - sym__escape_identifier, - ACTIONS(2416), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1315), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3020), 1, - sym_type_identifier, - STATE(3162), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3295), 1, - sym_record_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3455), 1, - sym__type, - STATE(3867), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4902), 1, - sym_abstract_type, - STATE(4991), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3343), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [49774] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2414), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1247), 1, - sym__type, - STATE(1316), 1, - sym_decorator, - STATE(1700), 1, - sym_type_identifier, - STATE(1774), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(4051), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4730), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4927), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2051), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [49896] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2438), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1317), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(2973), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3765), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4704), 1, - sym_abstract_type, - STATE(4718), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3174), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [50018] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - ACTIONS(2440), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1318), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3007), 1, - sym_variant_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3870), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4875), 1, - sym_function_type_parameters, - STATE(5028), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3246), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [50140] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2442), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1247), 1, - sym__type, - STATE(1319), 1, - sym_decorator, - STATE(1376), 1, - sym_variant_identifier, - STATE(1402), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3930), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4764), 1, - sym_function_type_parameters, - STATE(4841), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1502), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [50262] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2442), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1320), 1, - sym_decorator, - STATE(1376), 1, - sym_variant_identifier, - STATE(1402), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3930), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4764), 1, - sym_function_type_parameters, - STATE(4841), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1502), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [50384] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2330), 1, - anon_sym_PIPE, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - STATE(1155), 1, - sym_function_type, - STATE(1185), 1, - sym__type, - STATE(1321), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3033), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3295), 1, - sym_record_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3870), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4947), 1, - sym_function_type_parameters, - STATE(5028), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3318), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [50506] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1322), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4220), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [50628] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2396), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1323), 1, - sym_decorator, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(1764), 1, - sym__type, - STATE(1806), 1, - sym_variant_identifier, - STATE(1872), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3943), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4997), 1, - sym_function_type_parameters, - STATE(5068), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2389), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [50750] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2444), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1324), 1, - sym_decorator, - STATE(1402), 1, - sym_type_identifier, - STATE(1419), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3778), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4762), 1, - sym_abstract_type, - STATE(4786), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1518), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [50872] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2446), 1, - anon_sym_LPAREN, - STATE(1325), 1, - sym_decorator, - STATE(1421), 1, - sym__extension_expression_payload, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1609), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1605), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [50940] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1326), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4172), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [51062] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1327), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 31, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [51126] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2448), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1328), 1, - sym_decorator, - STATE(1675), 1, - sym_variant_identifier, - STATE(1840), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3985), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4821), 1, - sym_abstract_type, - STATE(4839), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2063), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [51248] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2450), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1329), 1, - sym_decorator, - STATE(1797), 1, - sym_variant_identifier, - STATE(1840), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3780), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4771), 1, - sym_abstract_type, - STATE(4850), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2233), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [51370] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2426), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1330), 1, - sym_decorator, - STATE(1758), 1, - sym_type_identifier, - STATE(1773), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3945), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4881), 1, - sym_function_type_parameters, - STATE(4949), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2044), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [51492] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2452), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1331), 1, - sym_decorator, - STATE(1700), 1, - sym_type_identifier, - STATE(1774), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3772), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4735), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4981), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2012), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [51614] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2454), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1332), 1, - sym_decorator, - STATE(2393), 1, - sym_variant_identifier, - STATE(2472), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3775), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4755), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4996), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2572), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [51736] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2456), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1333), 1, - sym_decorator, - STATE(2171), 1, - sym_variant_identifier, - STATE(2287), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3804), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4810), 1, - sym_abstract_type, - STATE(5005), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2505), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [51858] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2458), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1334), 1, - sym_decorator, - STATE(2287), 1, - sym_type_identifier, - STATE(2326), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3785), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4815), 1, - sym_abstract_type, - STATE(5013), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2548), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [51980] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2460), 1, - anon_sym_PIPE, - ACTIONS(2462), 1, - aux_sym_type_identifier_token1, - ACTIONS(2464), 1, - sym__escape_identifier, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1335), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3171), 1, - sym_type_identifier, - STATE(3220), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3919), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4667), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5047), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3384), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [52102] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2466), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1336), 1, - sym_decorator, - STATE(1376), 1, - sym_variant_identifier, - STATE(1402), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3778), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4762), 1, - sym_abstract_type, - STATE(5054), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1500), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [52224] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - aux_sym_type_identifier_token1, - ACTIONS(2464), 1, - sym__escape_identifier, - ACTIONS(2468), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1337), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3171), 1, - sym_type_identifier, - STATE(3309), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3788), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4825), 1, - sym_abstract_type, - STATE(5064), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3451), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [52346] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2470), 1, - anon_sym_PIPE, - ACTIONS(2472), 1, - aux_sym_type_identifier_token1, - ACTIONS(2474), 1, - sym__escape_identifier, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1338), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3131), 1, - sym__type, - STATE(3314), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3349), 1, - sym_variant_identifier, - STATE(3764), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4768), 1, - sym_abstract_type, - STATE(5052), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3499), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [52468] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2472), 1, - aux_sym_type_identifier_token1, - ACTIONS(2474), 1, - sym__escape_identifier, - ACTIONS(2476), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1339), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3131), 1, - sym__type, - STATE(3314), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3349), 1, - sym_variant_identifier, - STATE(3792), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4849), 1, - sym_abstract_type, - STATE(4960), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3735), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [52590] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2478), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1340), 1, - sym_decorator, - STATE(1675), 1, - sym_variant_identifier, - STATE(1840), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3780), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4771), 1, - sym_abstract_type, - STATE(4925), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2055), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [52712] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2480), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1341), 1, - sym_decorator, - STATE(1604), 1, - sym_variant_identifier, - STATE(1758), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3945), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4802), 1, - sym_function_type_parameters, - STATE(4949), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1894), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [52834] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2482), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1342), 1, - sym_decorator, - STATE(1758), 1, - sym_type_identifier, - STATE(1773), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3789), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4834), 1, - sym_abstract_type, - STATE(4904), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2059), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [52956] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2470), 1, - anon_sym_PIPE, - ACTIONS(2472), 1, - aux_sym_type_identifier_token1, - ACTIONS(2474), 1, - sym__escape_identifier, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1343), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3314), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3349), 1, - sym_variant_identifier, - STATE(3764), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4768), 1, - sym_abstract_type, - STATE(5052), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3499), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [53078] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2484), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1344), 1, - sym_decorator, - STATE(2171), 1, - sym_variant_identifier, - STATE(2287), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3785), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4694), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4815), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2499), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [53200] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - aux_sym_type_identifier_token1, - ACTIONS(2464), 1, - sym__escape_identifier, - ACTIONS(2486), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1345), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3171), 1, - sym_type_identifier, - STATE(3220), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3788), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4825), 1, - sym_abstract_type, - STATE(4900), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3391), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [53322] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2472), 1, - aux_sym_type_identifier_token1, - ACTIONS(2474), 1, - sym__escape_identifier, - ACTIONS(2476), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1346), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3314), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3349), 1, - sym_variant_identifier, - STATE(3792), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4849), 1, - sym_abstract_type, - STATE(4960), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3735), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [53444] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(377), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2488), 1, - anon_sym_PIPE, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1059), 1, - sym__type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1347), 1, - sym_decorator, - STATE(1604), 1, - sym_variant_identifier, - STATE(1758), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3789), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4834), 1, - sym_abstract_type, - STATE(5061), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1892), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [53566] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1348), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4177), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [53688] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1349), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4555), 1, - sym__type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [53810] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1350), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4428), 1, - sym__type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [53932] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1351), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4600), 1, - sym__type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [54054] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - STATE(1352), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4125), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [54176] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2228), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2384), 1, - anon_sym_PIPE, - STATE(1353), 1, - sym_decorator, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1714), 1, - sym__non_function_inline_type, - STATE(1715), 1, - sym_record_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1772), 1, - sym__type, - STATE(1962), 1, - sym_type_identifier, - STATE(2183), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3889), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4846), 1, - sym_function_type_parameters, - STATE(5078), 1, - sym_abstract_type, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2474), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1677), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [54298] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2490), 1, - anon_sym_PIPE, - STATE(1354), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3348), 1, - sym_variant_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3518), 1, - sym__non_function_inline_type, - STATE(3526), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3564), 1, - sym__type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4891), 1, - sym_function_type_parameters, - STATE(4990), 1, - sym_abstract_type, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3717), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [54420] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2083), 1, - anon_sym_PIPE, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1355), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3383), 1, - sym__type, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - STATE(5017), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3395), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [54542] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2436), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1356), 1, - sym_decorator, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(2036), 1, - sym_type_identifier, - STATE(2097), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(4026), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4893), 1, - sym_function_type_parameters, - STATE(4966), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2470), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [54664] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1357), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4253), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [54786] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2492), 1, - anon_sym_LPAREN, - ACTIONS(2494), 1, - anon_sym_COLON, - STATE(1358), 1, - sym_decorator, - STATE(1411), 1, - sym_variant_parameters, - STATE(1659), 1, - sym_type_annotation, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1240), 16, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1234), 25, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [54858] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2496), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1359), 1, - sym_decorator, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(1764), 1, - sym__type, - STATE(2036), 1, - sym_type_identifier, - STATE(2097), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(4045), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4753), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4777), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2480), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [54980] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1360), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4077), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [55102] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1361), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4465), 1, - sym__type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [55224] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1362), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4622), 1, - sym__type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [55346] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - STATE(1363), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4207), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [55468] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - ACTIONS(2424), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1364), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3159), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3414), 1, - sym__type, - STATE(3870), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5028), 1, - sym_abstract_type, - STATE(5039), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3402), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [55590] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1365), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4092), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [55712] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1366), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1383), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1381), 31, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [55776] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1367), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4604), 1, - sym__type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [55898] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - STATE(1368), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4156), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [56020] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1369), 1, - sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(4862), 1, - sym__definition_signature, - STATE(4931), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 12, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1221), 24, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [56100] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1370), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4136), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [56222] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1371), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4571), 1, - sym__type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [56344] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - STATE(1372), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4195), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [56466] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1373), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4108), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [56588] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - STATE(1374), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4210), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [56710] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - aux_sym_type_identifier_token1, - ACTIONS(2464), 1, - sym__escape_identifier, - ACTIONS(2498), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1375), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3171), 1, - sym_type_identifier, - STATE(3309), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3546), 1, - sym__type, - STATE(3919), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4667), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4813), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3433), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [56832] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2500), 1, - anon_sym_LPAREN, - ACTIONS(2502), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(1376), 1, - sym_decorator, - STATE(1447), 1, - sym_variant_parameters, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1240), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [56904] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2504), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1247), 1, - sym__type, - STATE(1377), 1, - sym_decorator, - STATE(1700), 1, - sym_type_identifier, - STATE(1862), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(4051), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4919), 1, - sym_function_type_parameters, - STATE(4927), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2182), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [57026] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(2508), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(1378), 1, - sym_decorator, - STATE(1453), 1, - sym_variant_parameters, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1240), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [57098] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2083), 1, - anon_sym_PIPE, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1379), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3326), 1, - sym__type, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - STATE(5017), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3395), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [57220] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2510), 1, - anon_sym_LPAREN, - STATE(1380), 1, - sym_decorator, - STATE(1497), 1, - sym_variant_arguments, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1585), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1581), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [57288] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2496), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1381), 1, - sym_decorator, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(2036), 1, - sym_type_identifier, - STATE(2097), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(4045), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4753), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4777), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2480), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [57410] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2510), 1, - anon_sym_LPAREN, - STATE(1382), 1, - sym_decorator, - STATE(1504), 1, - sym_variant_arguments, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1589), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1587), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [57478] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2103), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1383), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3419), 1, - sym__type, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4792), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3363), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [57600] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - STATE(1384), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4192), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [57722] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1385), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1335), 15, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_type_identifier_token1, - ACTIONS(1333), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [57786] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1386), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4072), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [57908] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(67), 1, - aux_sym_variant_identifier_token1, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2236), 1, - anon_sym_PIPE, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1387), 1, - sym_decorator, - STATE(1522), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1549), 1, - sym_variant_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(1764), 1, - sym__type, - STATE(3322), 1, - sym_module_identifier, - STATE(3858), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4695), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5004), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1674), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [58030] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1388), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4576), 1, - sym__type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [58152] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(67), 1, - aux_sym_variant_identifier_token1, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2512), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1389), 1, - sym_decorator, - STATE(1522), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1549), 1, - sym_variant_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3819), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5033), 1, - sym_function_type_parameters, - STATE(5072), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1688), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [58274] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1390), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4278), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [58396] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2514), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1185), 1, - sym__type, - STATE(1208), 1, - sym_record_type, - STATE(1391), 1, - sym_decorator, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(1818), 1, - sym_variant_identifier, - STATE(2036), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(4045), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4777), 1, - sym_abstract_type, - STATE(4830), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2399), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [58518] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2103), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1392), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3460), 1, - sym__type, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4792), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3363), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [58640] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2103), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1393), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3374), 1, - sym__type, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4792), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3363), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [58762] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1394), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [58884] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - ACTIONS(2430), 1, - anon_sym_PIPE, - STATE(1155), 1, - sym_function_type, - STATE(1395), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3033), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3295), 1, - sym_record_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3414), 1, - sym__type, - STATE(3861), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4674), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5065), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3292), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [59006] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2103), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1396), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3375), 1, - sym__type, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4792), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3363), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [59128] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1397), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1597), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1595), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_else, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [59192] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2083), 1, - anon_sym_PIPE, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1398), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3460), 1, - sym__type, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - STATE(5017), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3395), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [59314] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2103), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1399), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3122), 1, - sym_variant_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3376), 1, - sym__type, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4792), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3363), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [59436] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2134), 1, - anon_sym_PIPE, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2144), 1, - sym_unit_type, - STATE(1400), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3470), 1, - sym_variant_identifier, - STATE(3517), 1, - sym_record_type, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4289), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4990), 1, - sym_abstract_type, - STATE(5008), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3863), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3504), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [59558] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2518), 1, - anon_sym_DOT, - ACTIONS(2520), 1, - anon_sym_LBRACK, - STATE(1401), 1, - sym_decorator, - STATE(1494), 1, - sym_call_arguments, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1563), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1559), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [59630] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - ACTIONS(2522), 1, - anon_sym_DOT, - ACTIONS(2525), 1, - sym__escape_identifier, - STATE(1402), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1260), 14, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1258), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [59700] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(67), 1, - aux_sym_variant_identifier_token1, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1403), 1, - sym_decorator, - STATE(1412), 1, - sym_type_identifier, - STATE(1442), 1, - sym_variant_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(1764), 1, - sym__type, - STATE(3322), 1, - sym_module_identifier, - STATE(3864), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4791), 1, - sym_abstract_type, - STATE(4824), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1644), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [59822] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1404), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4507), 1, - sym__type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [59944] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2504), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1405), 1, - sym_decorator, - STATE(1700), 1, - sym_type_identifier, - STATE(1862), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(4051), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4919), 1, - sym_function_type_parameters, - STATE(4927), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(2182), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [60066] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2460), 1, - anon_sym_PIPE, - ACTIONS(2462), 1, - aux_sym_type_identifier_token1, - ACTIONS(2464), 1, - sym__escape_identifier, - STATE(1036), 1, - sym_record_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1406), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3171), 1, - sym_type_identifier, - STATE(3220), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3546), 1, - sym__type, - STATE(3919), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4667), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5047), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3384), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [60188] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(67), 1, - aux_sym_variant_identifier_token1, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2512), 1, - anon_sym_PIPE, - STATE(1154), 1, - sym_record_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1407), 1, - sym_decorator, - STATE(1522), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1549), 1, - sym_variant_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(1764), 1, - sym__type, - STATE(3322), 1, - sym_module_identifier, - STATE(3819), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5033), 1, - sym_function_type_parameters, - STATE(5072), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(1688), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1153), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [60310] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2003), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1408), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3109), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4212), 1, - sym__type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4840), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3240), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [60432] = 35, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - aux_sym_type_identifier_token1, - ACTIONS(2464), 1, - sym__escape_identifier, - ACTIONS(2498), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1059), 1, - sym__type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1093), 1, - sym_record_type, - STATE(1409), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3171), 1, - sym_type_identifier, - STATE(3309), 1, - sym_variant_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3919), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4667), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4813), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - STATE(3433), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(1049), 3, - sym__inline_type, - sym_variant_type, - sym_as_aliasing_type, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 8, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [60554] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1410), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1335), 15, - anon_sym_and, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_type_identifier_token1, - ACTIONS(1333), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [60617] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2494), 1, - anon_sym_COLON, - STATE(1411), 1, - sym_decorator, - STATE(1583), 1, - sym_type_annotation, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1252), 16, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1250), 26, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [60684] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - ACTIONS(2522), 1, - anon_sym_DOT, - ACTIONS(2525), 1, - sym__escape_identifier, - STATE(1412), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1260), 14, - anon_sym_and, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1258), 27, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [60753] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1413), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1731), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1729), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [60816] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2527), 1, - anon_sym_else, - STATE(1414), 1, - sym_decorator, - STATE(1525), 1, - aux_sym_if_expression_repeat1, - STATE(1747), 1, - sym_else_if_clause, - STATE(1792), 1, - sym_else_clause, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1312), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1310), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [60887] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2529), 1, - sym_regex_flags, - STATE(1415), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1601), 16, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1599), 27, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [60952] = 6, + }, + [STATE(749)] = { + [sym_decorator] = STATE(749), + [sym__identifier] = ACTIONS(1183), + [sym_line_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_module] = ACTIONS(1183), + [anon_sym_unpack] = ACTIONS(1183), + [anon_sym_EQ_GT] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_async] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_POUND] = ACTIONS(1185), + [anon_sym_try] = ACTIONS(1183), + [anon_sym_as] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1185), + [anon_sym_PIPE_GT] = ACTIONS(1185), + [anon_sym_lazy] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1185), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_PLUS_DOT] = ACTIONS(1183), + [anon_sym_DASH_DOT] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_STAR_DOT] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_STAR_STAR] = ACTIONS(1185), + [anon_sym_SLASH_DOT] = ACTIONS(1185), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT_GT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_COLON_GT] = ACTIONS(1185), + [aux_sym_variant_identifier_token1] = ACTIONS(1185), + [sym__escape_identifier] = ACTIONS(1183), + [sym_number] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1185), + [aux_sym_template_string_token1] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [sym__continuation] = ACTIONS(5), + [sym_block_comment] = ACTIONS(5), + [sym__list_constructor] = ACTIONS(1185), + [sym__dict_constructor] = ACTIONS(1185), + [sym__decorator] = ACTIONS(7), + [sym__decorator_inline] = ACTIONS(9), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1416), 1, + STATE(750), 1, sym_decorator, + STATE(755), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1660), 12, - anon_sym_COLON, + ACTIONS(1247), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1658), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1249), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -147658,52 +89968,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61015] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [79] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1417), 1, + STATE(751), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1863), 12, - anon_sym_COLON, + ACTIONS(1257), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1861), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1259), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -147715,171 +90039,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61078] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1418), 1, - sym_decorator, - ACTIONS(2533), 2, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2531), 15, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_PERCENT, - anon_sym_TILDE_TILDE_TILDE, aux_sym_variant_identifier_token1, sym_number, anon_sym_DQUOTE, aux_sym_template_string_token1, anon_sym_SQUOTE, - ACTIONS(2535), 27, - anon_sym_open, - anon_sym_include, - anon_sym_await, - anon_sym_module, - anon_sym_type, - anon_sym_unpack, - anon_sym_external, - anon_sym_exception, - anon_sym_export, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_let, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_for, - anon_sym_while, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [61143] = 10, + [156] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2500), 1, - anon_sym_LPAREN, - ACTIONS(2537), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(1419), 1, + ACTIONS(1261), 1, + anon_sym_PIPE, + STATE(752), 1, sym_decorator, - STATE(1523), 1, - sym_variant_parameters, + STATE(754), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, + ACTIONS(1193), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [61214] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1420), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1919), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1917), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1195), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -147891,52 +90112,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61277] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [237] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1421), 1, + ACTIONS(1261), 1, + anon_sym_PIPE, + STATE(753), 1, sym_decorator, + STATE(754), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1839), 12, - anon_sym_COLON, + ACTIONS(1199), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1837), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1201), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -147948,52 +90185,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61340] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [318] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1422), 1, + ACTIONS(1263), 1, + anon_sym_PIPE, + STATE(754), 2, sym_decorator, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1811), 12, - anon_sym_COLON, + ACTIONS(1203), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1809), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1205), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148005,52 +90257,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61403] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [397] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1423), 1, + STATE(754), 1, + aux_sym_variant_type_repeat1, + STATE(755), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1652), 12, - anon_sym_COLON, + ACTIONS(1193), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1650), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1195), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148062,52 +90329,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61466] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [476] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1424), 1, + STATE(754), 1, + aux_sym_variant_type_repeat1, + STATE(756), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1843), 12, - anon_sym_COLON, + ACTIONS(1199), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1841), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1201), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148119,52 +90401,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61529] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [555] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1425), 1, + STATE(757), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1923), 12, - anon_sym_COLON, + ACTIONS(1266), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1921), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1268), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148176,52 +90472,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61592] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [632] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1426), 1, + STATE(758), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1927), 12, - anon_sym_COLON, + ACTIONS(1270), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1925), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1272), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148233,52 +90543,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61655] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [709] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1427), 1, + ACTIONS(1152), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym_COLON, + STATE(759), 1, sym_decorator, + STATE(771), 1, + sym_type_annotation, + STATE(818), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1867), 12, - anon_sym_COLON, + ACTIONS(1148), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1150), 27, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148290,52 +90618,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61718] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [794] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1428), 1, + ACTIONS(1240), 1, + anon_sym_EQ_GT, + STATE(760), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1664), 12, - anon_sym_COLON, + ACTIONS(1276), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1662), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1279), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148347,52 +90690,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61781] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [873] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1429), 1, + STATE(761), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1871), 12, - anon_sym_COLON, + ACTIONS(1282), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1869), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1284), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148404,52 +90761,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61844] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [950] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1430), 1, + STATE(762), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1672), 12, - anon_sym_COLON, + ACTIONS(1286), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1670), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1288), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148461,52 +90832,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61907] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [1027] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1431), 1, + STATE(763), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1931), 12, - anon_sym_COLON, + ACTIONS(1290), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1929), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1292), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148518,52 +90903,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [61970] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [1104] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1432), 1, + STATE(764), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1847), 12, - anon_sym_COLON, + ACTIONS(1294), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1845), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1296), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148575,52 +90974,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [62033] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [1181] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1433), 1, + STATE(765), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1851), 12, - anon_sym_COLON, + ACTIONS(1298), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1849), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1300), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148632,52 +91045,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [62096] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [1258] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1434), 1, + STATE(766), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1855), 12, - anon_sym_COLON, + ACTIONS(1302), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1853), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1304), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148689,52 +91116,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [62159] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [1335] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1435), 1, + STATE(767), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1935), 12, - anon_sym_COLON, + ACTIONS(1306), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1933), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1308), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148746,52 +91187,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [62222] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [1412] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1436), 1, + STATE(768), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1939), 12, - anon_sym_COLON, + ACTIONS(1310), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1937), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1312), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148803,168 +91258,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [62285] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [1489] = 38, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1337), 1, - anon_sym_LPAREN, - ACTIONS(2071), 1, - anon_sym_DOT, - STATE(1437), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1301), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1299), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_constraint, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [62352] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1438), 1, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1314), 1, + anon_sym_rec, + ACTIONS(1316), 1, + anon_sym_type, + STATE(769), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3277), 1, + sym_let_binding, + STATE(3509), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1676), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1674), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [62415] = 6, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [1630] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1439), 1, + STATE(770), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1943), 12, - anon_sym_COLON, + ACTIONS(1318), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1941), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1320), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -148976,52 +91432,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [62478] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [1707] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1440), 1, + STATE(771), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1983), 12, - anon_sym_COLON, + ACTIONS(1156), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1981), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1158), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149033,52 +91503,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [62541] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [1784] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1441), 1, + STATE(772), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1875), 12, - anon_sym_COLON, + ACTIONS(1322), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1873), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1324), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149090,56 +91574,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [62604] = 10, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [1861] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(2539), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(1442), 1, + STATE(773), 1, sym_decorator, - STATE(1531), 1, - sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, + ACTIONS(1326), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1328), 30, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149151,52 +91645,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [62675] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [1938] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1443), 1, + STATE(774), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1947), 12, - anon_sym_COLON, + ACTIONS(1330), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1945), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1332), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149208,52 +91716,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [62738] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [2015] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1444), 1, + STATE(775), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1767), 12, - anon_sym_COLON, + ACTIONS(1334), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1765), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1336), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149265,56 +91787,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [62801] = 10, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [2092] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(2541), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(1445), 1, + ACTIONS(1342), 1, + anon_sym_else, + STATE(825), 1, + sym_else_if_clause, + STATE(776), 2, sym_decorator, - STATE(1546), 1, - sym_variant_parameters, + aux_sym_if_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, + ACTIONS(1338), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1340), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149326,54 +91860,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [62872] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [2173] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2543), 1, - anon_sym_PIPE, - STATE(1446), 1, + STATE(777), 1, sym_decorator, - STATE(1449), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, - anon_sym_COLON, + ACTIONS(1345), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 30, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1347), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149385,54 +91931,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [62939] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [2250] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2502), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(1447), 1, + STATE(778), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1203), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 30, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1205), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149444,54 +92002,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63006] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [2327] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2543), 1, - anon_sym_PIPE, - STATE(1448), 1, + STATE(779), 1, sym_decorator, - STATE(1449), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, - anon_sym_COLON, + ACTIONS(1349), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 30, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1351), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149503,53 +92073,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63073] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [2404] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2545), 1, - anon_sym_PIPE, - STATE(1449), 2, + STATE(780), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 12, - anon_sym_COLON, + ACTIONS(1353), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 30, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1355), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149561,52 +92144,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63138] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [2481] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1450), 1, + ACTIONS(1261), 1, + anon_sym_PIPE, + STATE(752), 1, + aux_sym_variant_type_repeat1, + STATE(781), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 12, - anon_sym_COLON, + ACTIONS(1247), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1249), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149618,52 +92217,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63201] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [2562] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1451), 1, + ACTIONS(1261), 1, + anon_sym_PIPE, + STATE(753), 1, + aux_sym_variant_type_repeat1, + STATE(782), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1879), 12, - anon_sym_COLON, + ACTIONS(1193), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1877), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1195), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149675,52 +92290,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63264] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [2643] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1452), 1, + STATE(783), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1887), 12, - anon_sym_COLON, + ACTIONS(1357), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1885), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1359), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149732,54 +92361,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63327] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [2720] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2508), 1, - anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(1453), 1, + STATE(784), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1361), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1363), 30, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149791,52 +92432,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63394] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [2797] = 38, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1454), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1365), 1, + anon_sym_rec, + ACTIONS(1367), 1, + anon_sym_type, + STATE(785), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3207), 1, + sym_let_binding, + STATE(3562), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [2938] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + ACTIONS(1375), 1, + anon_sym_as, + STATE(786), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 12, - anon_sym_COLON, + ACTIONS(1369), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1371), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149848,53 +92608,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63457] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [3019] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1455), 1, + STATE(787), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1428), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - ACTIONS(1613), 12, - anon_sym_COLON, + ACTIONS(1179), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 27, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1177), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_to, - anon_sym_downto, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149906,52 +92679,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63522] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [3096] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1456), 1, + STATE(788), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1987), 12, - anon_sym_COLON, + ACTIONS(1238), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1985), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1240), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -149963,52 +92750,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63585] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [3173] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1457), 1, + STATE(789), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1951), 12, - anon_sym_COLON, + ACTIONS(1369), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1949), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1371), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150020,52 +92821,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63648] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [3250] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1458), 1, + STATE(790), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1955), 12, - anon_sym_COLON, + ACTIONS(1143), 27, + anon_sym_EQ, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1953), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1138), 31, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150077,52 +92892,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63711] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [3327] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1459), 1, + STATE(791), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1640), 12, - anon_sym_COLON, + ACTIONS(1377), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1638), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1379), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150134,52 +92963,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63774] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [3404] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1460), 1, + STATE(792), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1859), 12, - anon_sym_COLON, + ACTIONS(1381), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1383), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150191,52 +93034,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63837] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [3481] = 38, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(207), 1, + anon_sym_exception, + ACTIONS(213), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1189), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1191), 1, + anon_sym_lazy, + STATE(793), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3054), 1, + sym__literal_pattern, + STATE(3254), 1, + sym__pattern, + STATE(3423), 1, + sym_spread_pattern, + STATE(3677), 1, + sym__collection_element_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3171), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [3622] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1461), 1, + ACTIONS(1389), 1, + anon_sym_EQ_GT, + STATE(794), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1815), 12, - anon_sym_COLON, + ACTIONS(1385), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1813), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1387), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150248,52 +93209,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63900] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [3701] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1462), 1, + STATE(795), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1807), 12, - anon_sym_COLON, + ACTIONS(1392), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1394), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150305,52 +93280,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [63963] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [3778] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1463), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1402), 1, + anon_sym_EQ_GT, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + STATE(796), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1895), 12, - anon_sym_COLON, + ACTIONS(1396), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1893), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1398), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150362,52 +93354,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64026] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [3861] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1464), 1, + STATE(797), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1648), 12, - anon_sym_COLON, + ACTIONS(1234), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1646), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1236), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150419,52 +93425,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64089] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [3938] = 38, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1465), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1406), 1, + anon_sym_exception, + ACTIONS(1408), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1410), 1, + anon_sym_QMARK, + ACTIONS(1412), 1, + anon_sym_lazy, + ACTIONS(1414), 1, + anon_sym_SLASH, + STATE(798), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3069), 1, + sym__literal_pattern, + STATE(3414), 1, + sym_variant_type_pattern, + STATE(3415), 1, + sym__pattern, + STATE(3493), 1, + sym_variant_spread_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1899), 12, - anon_sym_COLON, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3272), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [4079] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(799), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1416), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1897), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1418), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150476,52 +93599,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64152] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [4156] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1466), 1, + STATE(800), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1903), 12, - anon_sym_COLON, + ACTIONS(1420), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1901), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1422), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150533,52 +93670,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64215] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [4233] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1467), 1, + STATE(801), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1883), 12, - anon_sym_COLON, + ACTIONS(1424), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1426), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150590,52 +93741,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64278] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [4310] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1468), 1, + STATE(802), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1959), 12, - anon_sym_COLON, + ACTIONS(1428), 27, + anon_sym_EQ, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1957), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1430), 31, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150647,52 +93812,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64341] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [4387] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1469), 1, + STATE(803), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1743), 12, - anon_sym_COLON, + ACTIONS(1432), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1741), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1434), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150704,52 +93883,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64404] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [4464] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1470), 1, + ACTIONS(1375), 1, + anon_sym_as, + ACTIONS(1436), 1, + anon_sym_EQ_GT, + STATE(804), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1632), 12, - anon_sym_COLON, + ACTIONS(1369), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1630), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1371), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150761,52 +93956,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64467] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [4545] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1471), 1, + STATE(805), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1226), 14, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(1276), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1221), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1279), 30, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150818,52 +94027,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64530] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [4622] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1472), 1, + STATE(756), 1, + aux_sym_variant_type_repeat1, + STATE(806), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1819), 12, - anon_sym_COLON, + ACTIONS(1193), 28, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1195), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150875,52 +94099,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64593] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [4701] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1473), 1, + STATE(807), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1907), 12, - anon_sym_COLON, + ACTIONS(1143), 27, + anon_sym_EQ, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1905), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1138), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150932,52 +94169,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64656] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [4777] = 37, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1474), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1439), 1, + anon_sym_RPAREN, + STATE(808), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3387), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + STATE(4039), 1, + sym__variant_pattern_parameter, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [4915] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + STATE(809), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1831), 12, - anon_sym_COLON, + ACTIONS(1396), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1398), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -150989,109 +94342,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64719] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [4995] = 37, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1475), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1441), 1, + anon_sym_RPAREN, + STATE(810), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3387), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + STATE(4039), 1, + sym__variant_pattern_parameter, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1747), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [5133] = 37, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1745), 32, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1105), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [64782] = 6, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1365), 1, + anon_sym_rec, + STATE(811), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3207), 1, + sym_let_binding, + STATE(3562), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [5271] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1476), 1, + ACTIONS(1152), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_COLON, + STATE(771), 1, + sym_type_annotation, + STATE(812), 1, sym_decorator, + STATE(840), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1963), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1961), 32, + ACTIONS(1150), 26, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151103,26 +94590,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64845] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2492), 1, - anon_sym_LPAREN, - ACTIONS(2548), 1, - anon_sym_COLON, - STATE(1477), 1, - sym_decorator, - STATE(1512), 1, - sym_variant_parameters, - STATE(1659), 1, - sym_type_annotation, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1240), 16, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + ACTIONS(1148), 27, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, @@ -151130,86 +94604,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1234), 24, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + sym__identifier, sym__escape_identifier, - [64916] = 6, + sym_true, + sym_false, + [5355] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1478), 1, + STATE(813), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1775), 12, - anon_sym_COLON, + ACTIONS(1445), 27, + anon_sym_EQ, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1447), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151221,52 +94688,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [64979] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [5431] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1479), 1, + STATE(814), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1644), 12, - anon_sym_COLON, + ACTIONS(1449), 27, + anon_sym_EQ, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1642), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1451), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151278,52 +94758,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65042] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [5507] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1480), 1, + STATE(815), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1967), 12, - anon_sym_COLON, + ACTIONS(1453), 27, + anon_sym_EQ, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1965), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1455), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151335,52 +94828,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65105] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [5583] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1481), 1, + STATE(816), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1803), 12, - anon_sym_COLON, + ACTIONS(1457), 27, + anon_sym_EQ, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1459), 30, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151392,52 +94898,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65168] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [5659] = 37, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1482), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1461), 1, + anon_sym_RPAREN, + STATE(817), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3319), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + STATE(4061), 1, + sym_tuple_item_pattern, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1971), 12, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [5797] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1274), 1, anon_sym_COLON, + STATE(780), 1, + sym_type_annotation, + STATE(818), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1156), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1969), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1158), 28, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151449,52 +95071,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65231] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [5877] = 37, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1483), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1463), 1, + anon_sym_RPAREN, + STATE(819), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3387), 1, + sym__pattern, + STATE(3669), 1, + sym__variant_pattern_parameter, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1563), 12, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [6015] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1465), 1, anon_sym_COLON, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + STATE(820), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1385), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1559), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1387), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151506,52 +95244,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65294] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [6095] = 37, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1484), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1314), 1, + anon_sym_rec, + STATE(821), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3277), 1, + sym_let_binding, + STATE(3509), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1771), 12, - anon_sym_COLON, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [6233] = 37, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1469), 1, + anon_sym_RPAREN, + STATE(822), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3319), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + STATE(4061), 1, + sym_tuple_item_pattern, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [6371] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(823), 1, + sym_decorator, + ACTIONS(1174), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1181), 2, + anon_sym_DOT, + aux_sym_type_identifier_token1, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1179), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1769), 32, + sym_true, + sym_false, + anon_sym_SQUOTE, + ACTIONS(1177), 27, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151563,110 +95519,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65357] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + [6451] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1485), 1, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(1471), 1, + anon_sym_DOT, + STATE(824), 1, sym_decorator, - ACTIONS(2550), 2, - anon_sym_RBRACE, - anon_sym_RPAREN, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2531), 15, + ACTIONS(1185), 27, sym__list_constructor, sym__dict_constructor, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_POUND, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_TILDE_TILDE_TILDE, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, aux_sym_variant_identifier_token1, sym_number, anon_sym_DQUOTE, aux_sym_template_string_token1, anon_sym_SQUOTE, - ACTIONS(2535), 27, - anon_sym_open, - anon_sym_include, - anon_sym_await, + ACTIONS(1183), 28, + anon_sym_COLON, anon_sym_module, - anon_sym_type, anon_sym_unpack, - anon_sym_external, - anon_sym_exception, - anon_sym_export, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_let, + anon_sym_GT, + anon_sym_PIPE, anon_sym_async, anon_sym_if, anon_sym_switch, anon_sym_try, - anon_sym_assert, + anon_sym_as, anon_sym_lazy, anon_sym_SLASH, - anon_sym_for, - anon_sym_while, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - aux_sym_value_identifier_token1, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym__identifier, sym__escape_identifier, sym_true, sym_false, - [65422] = 6, + [6531] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1486), 1, + STATE(825), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1751), 12, - anon_sym_COLON, + ACTIONS(1473), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1749), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1475), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151678,52 +95659,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65485] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [6606] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1487), 1, + ACTIONS(1477), 1, + anon_sym_PIPE, + STATE(826), 1, sym_decorator, + STATE(841), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 12, - anon_sym_COLON, + ACTIONS(1193), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1195), 28, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151735,52 +95730,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65548] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [6685] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1488), 1, + STATE(827), 1, sym_decorator, + STATE(846), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1991), 12, - anon_sym_COLON, + ACTIONS(1247), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1249), 28, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151792,52 +95800,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65611] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [6762] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1489), 1, + STATE(828), 1, sym_decorator, + STATE(850), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1827), 12, - anon_sym_COLON, + ACTIONS(1193), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1825), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1195), 28, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [6839] = 10, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1483), 1, + anon_sym_LPAREN, + ACTIONS(1485), 1, + anon_sym_DOT, + ACTIONS(1487), 1, + anon_sym_LBRACK, + STATE(829), 1, + sym_decorator, + STATE(858), 1, + sym_call_arguments, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1479), 25, + anon_sym_module, + anon_sym_unpack, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1481), 27, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151849,52 +95943,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65674] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [6922] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1490), 1, + ACTIONS(1493), 1, + anon_sym_LPAREN, + STATE(830), 1, sym_decorator, + STATE(860), 1, + sym_variant_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1755), 12, - anon_sym_COLON, + ACTIONS(1489), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1491), 28, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151906,56 +96014,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65737] = 10, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [7001] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2527), 1, - anon_sym_else, - STATE(1414), 1, - aux_sym_if_expression_repeat1, - STATE(1491), 1, + ACTIONS(1499), 1, + anon_sym_as, + STATE(831), 1, sym_decorator, - STATE(1747), 1, - sym_else_if_clause, - STATE(1781), 1, - sym_else_clause, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1269), 12, + ACTIONS(1495), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1267), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1497), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -151967,52 +96084,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65808] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [7078] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1492), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(832), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3319), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + STATE(4061), 1, + sym_tuple_item_pattern, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1312), 12, - anon_sym_COLON, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [7213] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1505), 1, + sym_regex_flags, + STATE(833), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1501), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1310), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1503), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + anon_sym_CARET_CARET_CARET, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152024,52 +96253,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65871] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [7290] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1493), 1, + ACTIONS(1402), 1, + anon_sym_EQ_GT, + STATE(834), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1911), 12, - anon_sym_COLON, + ACTIONS(1396), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1909), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1398), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152081,52 +96323,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65934] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [7367] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1494), 1, + ACTIONS(1511), 1, + anon_sym_LPAREN, + STATE(835), 1, sym_decorator, + STATE(880), 1, + sym__extension_expression_payload, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1787), 12, - anon_sym_COLON, + ACTIONS(1507), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1785), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1509), 28, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152138,52 +96394,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [65997] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [7446] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1495), 1, + STATE(836), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1628), 12, - anon_sym_COLON, + ACTIONS(1513), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1626), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1515), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152195,52 +96463,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66060] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [7521] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1496), 1, + ACTIONS(1493), 1, + anon_sym_LPAREN, + STATE(837), 1, sym_decorator, + STATE(859), 1, + sym_variant_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1636), 12, - anon_sym_COLON, + ACTIONS(1517), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1634), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1519), 28, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152252,52 +96534,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66123] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [7600] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1497), 1, + STATE(838), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1791), 12, - anon_sym_COLON, + ACTIONS(1521), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1523), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152309,53 +96603,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66186] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [7675] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1449), 1, - aux_sym_variant_type_repeat1, - STATE(1498), 1, + ACTIONS(1477), 1, + anon_sym_PIPE, + STATE(839), 1, sym_decorator, + STATE(844), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, - anon_sym_COLON, + ACTIONS(1193), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 30, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1195), 28, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152367,53 +96674,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66251] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [7754] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1449), 1, - aux_sym_variant_type_repeat1, - STATE(1499), 1, + ACTIONS(1443), 1, + anon_sym_COLON, + STATE(780), 1, + sym_type_annotation, + STATE(840), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 13, - anon_sym_COLON, + ACTIONS(1156), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 30, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1158), 27, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152425,53 +96745,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66316] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [7833] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1498), 1, - aux_sym_variant_type_repeat1, - STATE(1500), 1, + ACTIONS(1477), 1, + anon_sym_PIPE, + STATE(841), 1, sym_decorator, + STATE(844), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 13, - anon_sym_COLON, + ACTIONS(1199), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 30, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1201), 28, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152483,53 +96816,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66381] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [7912] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1499), 1, - aux_sym_variant_type_repeat1, - STATE(1501), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(842), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3212), 1, + sym_let_binding, + STATE(3562), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, - anon_sym_COLON, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [8047] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(843), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3319), 1, + sym__pattern, + STATE(3668), 1, + sym_tuple_item_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [8182] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1525), 1, + anon_sym_PIPE, + STATE(844), 2, + sym_decorator, + aux_sym_variant_type_repeat1, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1203), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 30, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1205), 28, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152541,54 +97084,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66446] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [8259] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2543), 1, - anon_sym_PIPE, - STATE(1446), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(845), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3279), 1, + sym_let_binding, + STATE(3509), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [8394] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(844), 1, aux_sym_variant_type_repeat1, - STATE(1502), 1, + STATE(846), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, - anon_sym_COLON, + ACTIONS(1193), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 30, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1195), 28, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152600,54 +97253,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66513] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [8471] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2543), 1, - anon_sym_PIPE, - STATE(1448), 1, - aux_sym_variant_type_repeat1, - STATE(1503), 1, + ACTIONS(1483), 1, + anon_sym_LPAREN, + ACTIONS(1485), 1, + anon_sym_DOT, + ACTIONS(1487), 1, + anon_sym_LBRACK, + STATE(847), 1, sym_decorator, + STATE(858), 1, + sym_call_arguments, + ACTIONS(1532), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, - anon_sym_COLON, + ACTIONS(1528), 25, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 30, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1530), 25, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152659,52 +97327,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66580] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [8556] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1504), 1, + STATE(848), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1795), 12, - anon_sym_COLON, + ACTIONS(1534), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1793), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1536), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152716,52 +97396,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66643] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [8631] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1505), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(849), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3202), 1, + sym_let_binding, + STATE(3562), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [8766] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(844), 1, + aux_sym_variant_type_repeat1, + STATE(850), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1915), 12, - anon_sym_COLON, + ACTIONS(1199), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1201), 28, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152773,52 +97565,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66706] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [8843] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1506), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(851), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3212), 1, + sym_let_binding, + STATE(3509), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1975), 12, - anon_sym_COLON, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [8978] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(852), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3387), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + STATE(4039), 1, + sym__variant_pattern_parameter, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [9113] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1477), 1, + anon_sym_PIPE, + STATE(839), 1, + aux_sym_variant_type_repeat1, + STATE(853), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1247), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1973), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1249), 28, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152830,52 +97834,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66769] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [9192] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1507), 1, + STATE(854), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1799), 12, - anon_sym_COLON, + ACTIONS(1538), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1540), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152887,52 +97902,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66832] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [9266] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1508), 1, + STATE(855), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1979), 12, - anon_sym_COLON, + ACTIONS(1542), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1977), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1544), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -152944,52 +97970,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66895] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [9340] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1509), 1, + STATE(856), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1891), 12, - anon_sym_COLON, + ACTIONS(1546), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1889), 32, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1548), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153001,53 +98038,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [66958] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [9414] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2552), 1, - anon_sym_PIPE, - STATE(1510), 1, + STATE(857), 1, sym_decorator, - STATE(1530), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, - anon_sym_COLON, + ACTIONS(1550), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 29, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1552), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153059,50 +98106,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [67024] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [9488] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1511), 1, + STATE(858), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1335), 16, - anon_sym_COLON, + ACTIONS(1554), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_as, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_type_identifier_token1, - ACTIONS(1333), 27, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1556), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153114,53 +98174,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [67086] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [9562] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2548), 1, - anon_sym_COLON, - STATE(1512), 1, + STATE(859), 1, sym_decorator, - STATE(1583), 1, - sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 16, + ACTIONS(1558), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1250), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1560), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153172,53 +98242,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [67152] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [9636] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2554), 1, - anon_sym_PIPE, - STATE(1513), 1, + STATE(860), 1, sym_decorator, - STATE(1537), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 15, + ACTIONS(1562), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1318), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1564), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153230,53 +98310,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [67218] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [9710] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2554), 1, - anon_sym_PIPE, - STATE(1514), 1, + STATE(861), 1, sym_decorator, - STATE(1543), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 15, + ACTIONS(1566), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1254), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1568), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153288,52 +98378,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [67284] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [9784] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1515), 1, + STATE(862), 1, sym_decorator, - STATE(1557), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 16, + ACTIONS(1570), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1318), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1572), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153345,52 +98446,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [67348] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [9858] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1516), 1, + STATE(863), 1, sym_decorator, - STATE(1568), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 16, + ACTIONS(1574), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1254), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1576), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153402,54 +98514,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [67412] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [9932] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2552), 1, - anon_sym_PIPE, - STATE(1517), 1, + STATE(864), 1, sym_decorator, - STATE(1533), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, - anon_sym_COLON, + ACTIONS(1578), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 29, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1580), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153461,52 +98582,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [67478] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [10006] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1518), 1, + STATE(865), 1, sym_decorator, - STATE(1560), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 13, - anon_sym_COLON, + ACTIONS(1582), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 29, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1584), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153518,50 +98650,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [67542] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [10080] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1519), 1, + STATE(866), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1275), 17, - anon_sym_COLON, + ACTIONS(1586), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1273), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1588), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153573,55 +98718,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [67604] = 10, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [10154] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2556), 1, - anon_sym_else, - STATE(1520), 1, + STATE(867), 1, sym_decorator, - STATE(1528), 1, - aux_sym_if_expression_repeat1, - STATE(1886), 1, - sym_else_if_clause, - STATE(2048), 1, - sym_else_clause, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1269), 14, + ACTIONS(1590), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1267), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1592), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153633,53 +98786,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [67674] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [10228] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1521), 1, + STATE(868), 1, sym_decorator, - STATE(1563), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, - anon_sym_COLON, + ACTIONS(1479), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 29, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1481), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153691,54 +98854,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [67738] = 9, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [10302] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - ACTIONS(2522), 1, - anon_sym_DOT, - ACTIONS(2525), 1, - sym__escape_identifier, - STATE(1522), 1, + STATE(869), 1, sym_decorator, + ACTIONS(1532), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 13, + ACTIONS(1528), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1258), 27, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1530), 27, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153750,53 +98923,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [67806] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [10378] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2537), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(1523), 1, + STATE(870), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1528), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 29, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1530), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153808,50 +98991,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [67872] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [10452] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1524), 1, + STATE(871), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1287), 17, - anon_sym_COLON, + ACTIONS(1594), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1285), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1596), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153863,54 +99059,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [10526] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(207), 1, + anon_sym_exception, + ACTIONS(387), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1191), 1, + anon_sym_lazy, + STATE(872), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3242), 1, + sym__literal_pattern, + STATE(3553), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, sym__escape_identifier, - [67934] = 8, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3348), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [10658] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2558), 1, - anon_sym_else, - STATE(1747), 1, - sym_else_if_clause, - STATE(1525), 2, + ACTIONS(1598), 1, + anon_sym_PIPE, + STATE(873), 1, sym_decorator, - aux_sym_if_expression_repeat1, + STATE(980), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1484), 12, + ACTIONS(1247), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1482), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1249), 27, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153922,50 +99226,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [68000] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [10736] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1526), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(874), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3176), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1622), 13, - anon_sym_EQ, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [10868] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(875), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1600), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1620), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1602), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_else, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -153977,59 +99391,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - anon_sym_with, - [68062] = 13, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [10942] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2561), 1, - anon_sym_RBRACE, - ACTIONS(2564), 1, - anon_sym_COLON, - ACTIONS(2567), 1, - anon_sym_EQ_GT, - ACTIONS(2569), 1, - anon_sym_COMMA, - STATE(1527), 1, + STATE(876), 1, sym_decorator, - STATE(4489), 1, - aux_sym_record_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1604), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 25, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1606), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154041,54 +99459,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [68138] = 10, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [11016] = 43, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2556), 1, - anon_sym_else, - STATE(1528), 1, + ACTIONS(127), 1, + anon_sym_module, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1117), 1, + anon_sym_TILDE, + ACTIONS(1166), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1612), 1, + anon_sym_LPAREN, + ACTIONS(1614), 1, + anon_sym_RPAREN, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1618), 1, + anon_sym_DOT, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + STATE(877), 1, + sym_decorator, + STATE(1035), 1, + sym_function_type, + STATE(1057), 1, + sym_uncurry, + STATE(1061), 1, + sym_record_type, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3416), 1, + sym_module_expression, + STATE(3587), 1, + sym__type, + STATE(3809), 1, + sym_function_type_parameter, + STATE(3981), 1, + sym_labeled_parameter, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [11164] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(878), 1, sym_decorator, - STATE(1574), 1, - aux_sym_if_expression_repeat1, - STATE(1886), 1, - sym_else_if_clause, - STATE(1920), 1, - sym_else_clause, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1312), 14, + ACTIONS(1632), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1310), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1634), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154100,60 +99632,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [11238] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(383), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(879), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2764), 1, + sym__pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(2903), 1, + sym__literal_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, sym__escape_identifier, - [68208] = 14, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2951), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [11370] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2575), 1, - anon_sym_COLON, - ACTIONS(2578), 1, - anon_sym_EQ_GT, - ACTIONS(2580), 1, - anon_sym_PIPE, - ACTIONS(2582), 1, - anon_sym_as, - STATE(1529), 1, + STATE(880), 1, sym_decorator, - STATE(3214), 1, - sym_as_aliasing, - ACTIONS(2572), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1636), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 23, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1638), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154165,53 +99797,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [68286] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [11444] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2552), 1, - anon_sym_PIPE, - STATE(1530), 1, + STATE(881), 1, sym_decorator, - STATE(1533), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, - anon_sym_COLON, + ACTIONS(1640), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 29, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1642), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154223,53 +99865,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [68352] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [11518] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2539), 1, - anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(1531), 1, + STATE(882), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1644), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1646), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154281,58 +99933,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [68418] = 13, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [11592] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2588), 1, - anon_sym_LPAREN, - ACTIONS(2590), 1, - anon_sym_COLON, - ACTIONS(2593), 1, - anon_sym_PIPE, - ACTIONS(2595), 1, - anon_sym_as, - STATE(1497), 1, - sym_variant_arguments, - STATE(1532), 1, + STATE(883), 1, sym_decorator, - STATE(3228), 1, - sym__variant_pattern_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2585), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1585), 11, + ACTIONS(1648), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1581), 22, - anon_sym_DOT, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1650), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154344,52 +100001,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [68494] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [11666] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2597), 1, - anon_sym_PIPE, - STATE(1533), 2, + STATE(884), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 12, - anon_sym_COLON, + ACTIONS(1652), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 29, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1654), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154401,54 +100069,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [68558] = 9, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [11740] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1262), 1, - anon_sym_DOT, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - ACTIONS(2525), 1, - sym__escape_identifier, - STATE(1534), 1, + STATE(885), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 14, - anon_sym_COLON, + ACTIONS(1656), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1258), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1658), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154460,53 +100137,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [68626] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [11814] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - STATE(1535), 1, + STATE(886), 1, sym_decorator, - ACTIONS(2522), 2, - anon_sym_DOT, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 16, + ACTIONS(1660), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1258), 24, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1662), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154518,53 +100205,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [68692] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [11888] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2552), 1, - anon_sym_PIPE, - STATE(1517), 1, - aux_sym_variant_type_repeat1, - STATE(1536), 1, + STATE(887), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, - anon_sym_COLON, + ACTIONS(1210), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 29, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1212), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154576,52 +100273,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [68758] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [11962] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2554), 1, - anon_sym_PIPE, - STATE(1537), 1, + STATE(888), 1, sym_decorator, - STATE(1555), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 15, + ACTIONS(1664), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1254), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1666), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154633,53 +100341,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [68824] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [12036] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1538), 1, + ACTIONS(1598), 1, + anon_sym_PIPE, + STATE(889), 1, sym_decorator, - ACTIONS(1337), 2, - anon_sym_LPAREN, - anon_sym_DOT, + STATE(982), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1301), 13, - anon_sym_COLON, + ACTIONS(1193), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1299), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1195), 27, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154691,51 +100411,459 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [68888] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [12114] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1539), 1, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(207), 1, + anon_sym_exception, + ACTIONS(387), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1191), 1, + anon_sym_lazy, + STATE(890), 1, sym_decorator, - ACTIONS(1337), 2, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3242), 1, + sym__literal_pattern, + STATE(3700), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3348), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [12246] = 43, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(127), 1, + anon_sym_module, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1117), 1, + anon_sym_TILDE, + ACTIONS(1166), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1612), 1, anon_sym_LPAREN, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1618), 1, anon_sym_DOT, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1668), 1, + anon_sym_RPAREN, + STATE(891), 1, + sym_decorator, + STATE(1035), 1, + sym_function_type, + STATE(1057), 1, + sym_uncurry, + STATE(1061), 1, + sym_record_type, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3431), 1, + sym_module_expression, + STATE(3598), 1, + sym__type, + STATE(3809), 1, + sym_function_type_parameter, + STATE(3981), 1, + sym_labeled_parameter, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1301), 17, - anon_sym_COLON, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [12394] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(207), 1, + anon_sym_exception, + ACTIONS(213), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1191), 1, + anon_sym_lazy, + STATE(892), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3054), 1, + sym__literal_pattern, + STATE(3452), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3171), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [12526] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(207), 1, + anon_sym_exception, + ACTIONS(213), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1191), 1, + anon_sym_lazy, + STATE(893), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2803), 1, + sym__pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3054), 1, + sym__literal_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3171), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [12658] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(894), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1670), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1299), 24, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1672), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154747,54 +100875,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [68952] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [12732] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2600), 1, - anon_sym_LT, - STATE(1210), 1, - sym_type_arguments, - STATE(1540), 1, + STATE(895), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1305), 11, + ACTIONS(1674), 26, + anon_sym_module, + anon_sym_unpack, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1303), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1676), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154806,50 +100943,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [69018] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [12806] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1541), 1, + STATE(896), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1335), 17, + ACTIONS(1678), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_type_identifier_token1, - aux_sym_value_identifier_token1, - ACTIONS(1333), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1680), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154861,53 +101011,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [69080] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [12880] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2603), 1, - anon_sym_LT, - STATE(1542), 1, + STATE(897), 1, sym_decorator, - STATE(1610), 1, - sym_type_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1305), 15, + ACTIONS(1682), 26, + anon_sym_module, anon_sym_unpack, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1303), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1684), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154919,53 +101079,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [69146] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [12954] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2554), 1, - anon_sym_PIPE, - STATE(1543), 1, + STATE(898), 1, sym_decorator, - STATE(1555), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 15, + ACTIONS(1686), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1322), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1688), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -154977,51 +101147,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [69212] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [13028] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1544), 1, + STATE(899), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1571), 13, - anon_sym_EQ, + ACTIONS(1690), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1569), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1692), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_else, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155033,51 +101215,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - anon_sym_with, - [69274] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [13102] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1545), 1, + STATE(900), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1335), 14, + ACTIONS(1694), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_type_identifier_token1, - ACTIONS(1333), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1696), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155089,54 +101283,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [69336] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [13176] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2541), 1, - anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(1546), 1, + STATE(901), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1698), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1700), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155148,111 +101351,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [69402] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1547), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 16, - sym__list_constructor, - sym__dict_constructor, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_PERCENT, - anon_sym_TILDE_TILDE_TILDE, aux_sym_variant_identifier_token1, sym_number, anon_sym_DQUOTE, aux_sym_template_string_token1, anon_sym_SQUOTE, - ACTIONS(2608), 27, - anon_sym_open, - anon_sym_include, - anon_sym_await, - anon_sym_module, - anon_sym_type, - anon_sym_unpack, - anon_sym_external, - anon_sym_exception, - anon_sym_export, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_let, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_for, - anon_sym_while, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [69464] = 10, + [13250] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2610), 1, - anon_sym_LPAREN, - ACTIONS(2612), 1, - anon_sym_COLON, - STATE(1548), 1, + STATE(902), 1, sym_decorator, - STATE(1599), 1, - sym_variant_parameters, - STATE(1695), 1, - sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 13, + ACTIONS(1702), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 26, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1704), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155264,55 +101419,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [69534] = 10, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [13324] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(2614), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(1549), 1, + STATE(903), 1, sym_decorator, - STATE(1596), 1, - sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, + ACTIONS(1706), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 27, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_DOT, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1708), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155324,53 +101487,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [69604] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [13398] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2616), 1, - anon_sym_PIPE, - STATE(1550), 1, + STATE(904), 1, sym_decorator, - STATE(1552), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1710), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1712), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155382,53 +101555,459 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [69670] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [13472] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1414), 1, + anon_sym_SLASH, + ACTIONS(1714), 1, + anon_sym_exception, + ACTIONS(1716), 1, + anon_sym_QMARK, + ACTIONS(1718), 1, + anon_sym_lazy, + STATE(905), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2764), 1, + sym__pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(2994), 1, + sym__literal_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3141), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [13604] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(207), 1, + anon_sym_exception, + ACTIONS(213), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1191), 1, + anon_sym_lazy, + STATE(906), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2825), 1, + sym__pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3054), 1, + sym__literal_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3171), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [13736] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(907), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3313), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [13868] = 43, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2616), 1, + ACTIONS(127), 1, + anon_sym_module, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1117), 1, + anon_sym_TILDE, + ACTIONS(1166), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1612), 1, + anon_sym_LPAREN, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1618), 1, + anon_sym_DOT, + ACTIONS(1620), 1, anon_sym_PIPE, - STATE(1551), 1, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1720), 1, + anon_sym_RPAREN, + STATE(908), 1, + sym_decorator, + STATE(1035), 1, + sym_function_type, + STATE(1057), 1, + sym_uncurry, + STATE(1061), 1, + sym_record_type, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3416), 1, + sym_module_expression, + STATE(3632), 1, + sym__type, + STATE(3809), 1, + sym_function_type_parameter, + STATE(3981), 1, + sym_labeled_parameter, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [14016] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(909), 1, sym_decorator, - STATE(1552), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1722), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1724), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155440,52 +102019,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [69736] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [14090] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2618), 1, - anon_sym_PIPE, - STATE(1552), 2, + STATE(910), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1726), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1728), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155497,53 +102087,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [69800] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [14164] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2616), 1, - anon_sym_PIPE, - STATE(1550), 1, - aux_sym_variant_type_repeat1, - STATE(1553), 1, + STATE(911), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1730), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1732), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155555,53 +102155,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [69866] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [14238] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2616), 1, - anon_sym_PIPE, - STATE(1551), 1, - aux_sym_variant_type_repeat1, - STATE(1554), 1, + STATE(912), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1734), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1736), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155613,51 +102223,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [69932] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [14312] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2621), 1, - anon_sym_PIPE, - STATE(1555), 2, + STATE(913), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 15, + ACTIONS(1738), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1326), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1740), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155669,51 +102291,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [69996] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [14386] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1556), 1, + STATE(914), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1293), 17, - anon_sym_COLON, + ACTIONS(1742), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1291), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1744), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155725,52 +102359,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [70058] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [14460] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1555), 1, - aux_sym_variant_type_repeat1, - STATE(1557), 1, + STATE(915), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 16, + ACTIONS(1746), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1254), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1748), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155782,59 +102427,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [70122] = 13, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [14534] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2588), 1, - anon_sym_LPAREN, - ACTIONS(2627), 1, - anon_sym_COLON, - ACTIONS(2630), 1, - anon_sym_PIPE, - ACTIONS(2632), 1, - anon_sym_as, - STATE(1504), 1, - sym_variant_arguments, - STATE(1558), 1, + STATE(916), 1, sym_decorator, - STATE(3233), 1, - sym__variant_pattern_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2624), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1589), 11, + ACTIONS(1750), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1587), 22, - anon_sym_DOT, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1752), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155846,50 +102495,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [70198] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [14608] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1559), 1, + STATE(917), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1301), 17, - anon_sym_COLON, + ACTIONS(1754), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1299), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1756), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155901,53 +102563,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [70260] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [14682] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1533), 1, - aux_sym_variant_type_repeat1, - STATE(1560), 1, + STATE(918), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, - anon_sym_COLON, + ACTIONS(1758), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 29, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1760), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -155959,58 +102631,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [70324] = 13, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [14756] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2580), 1, - anon_sym_PIPE, - ACTIONS(2634), 1, - anon_sym_EQ_GT, - ACTIONS(2636), 1, - anon_sym_as, - STATE(1561), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(383), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(919), 1, sym_decorator, - STATE(3214), 1, - sym_as_aliasing, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2803), 1, + sym__pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(2903), 1, + sym__literal_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2572), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1432), 11, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2951), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [14888] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(920), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1762), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 23, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1764), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156022,59 +102796,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [70400] = 14, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [14962] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2575), 1, - anon_sym_COLON, - ACTIONS(2578), 1, - anon_sym_EQ_GT, - ACTIONS(2580), 1, - anon_sym_PIPE, - ACTIONS(2639), 1, - anon_sym_as, - STATE(1562), 1, + STATE(921), 1, sym_decorator, - STATE(3214), 1, - sym_as_aliasing, - ACTIONS(2572), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1766), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 23, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1768), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156086,52 +102864,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [70478] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [15036] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1533), 1, - aux_sym_variant_type_repeat1, - STATE(1563), 1, + STATE(922), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 13, - anon_sym_COLON, + ACTIONS(1770), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 29, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1772), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156143,52 +102932,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [70542] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [15110] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1552), 1, - aux_sym_variant_type_repeat1, - STATE(1564), 1, + STATE(923), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1774), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1776), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156200,52 +103000,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [70606] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [15184] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1552), 1, - aux_sym_variant_type_repeat1, - STATE(1565), 1, + STATE(924), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1778), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1780), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156257,52 +103068,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [70670] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [15258] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1564), 1, - aux_sym_variant_type_repeat1, - STATE(1566), 1, + STATE(925), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, + ACTIONS(1782), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1784), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156314,52 +103136,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [70734] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [15332] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1565), 1, - aux_sym_variant_type_repeat1, - STATE(1567), 1, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(207), 1, + anon_sym_exception, + ACTIONS(387), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1191), 1, + anon_sym_lazy, + STATE(926), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3242), 1, + sym__literal_pattern, + STATE(3528), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3348), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [15464] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(927), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1786), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1788), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156371,51 +103301,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [70798] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [15538] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1555), 1, - aux_sym_variant_type_repeat1, - STATE(1568), 1, + STATE(928), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 16, + ACTIONS(1790), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1322), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1792), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156427,108 +103369,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [70862] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1569), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2531), 16, - sym__list_constructor, - sym__dict_constructor, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_PERCENT, - anon_sym_TILDE_TILDE_TILDE, aux_sym_variant_identifier_token1, sym_number, anon_sym_DQUOTE, aux_sym_template_string_token1, anon_sym_SQUOTE, - ACTIONS(2535), 27, - anon_sym_open, - anon_sym_include, - anon_sym_await, - anon_sym_module, - anon_sym_type, - anon_sym_unpack, - anon_sym_external, - anon_sym_exception, - anon_sym_export, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_let, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_for, - anon_sym_while, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [70924] = 7, + [15612] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1570), 1, + STATE(929), 1, sym_decorator, - STATE(1666), 1, + STATE(984), 1, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, + ACTIONS(1199), 27, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1201), 27, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156540,50 +103438,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [70987] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [15688] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1571), 1, + STATE(930), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1527), 13, - anon_sym_EQ, + ACTIONS(1794), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1796), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156595,54 +103506,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [71048] = 10, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [15762] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2641), 1, - anon_sym_else, - STATE(1572), 1, + STATE(931), 1, sym_decorator, - STATE(1579), 1, - aux_sym_if_expression_repeat1, - STATE(1914), 1, - sym_else_if_clause, - STATE(2156), 1, - sym_else_clause, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1269), 13, - anon_sym_COLON, + ACTIONS(1798), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1267), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1800), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156654,51 +103574,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [71117] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [15836] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2643), 1, - sym_regex_flags, - STATE(1573), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(932), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3354), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [15968] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(933), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1601), 12, - anon_sym_COLON, + ACTIONS(1802), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1599), 29, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1804), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156710,51 +103739,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [71180] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [16042] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2645), 1, - anon_sym_else, - STATE(1886), 1, - sym_else_if_clause, - STATE(1574), 2, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1414), 1, + anon_sym_SLASH, + ACTIONS(1714), 1, + anon_sym_exception, + ACTIONS(1718), 1, + anon_sym_lazy, + ACTIONS(1806), 1, + anon_sym_QMARK, + STATE(934), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2764), 1, + sym__pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(2979), 1, + sym__literal_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3147), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [16174] = 43, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(127), 1, + anon_sym_module, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1117), 1, + anon_sym_TILDE, + ACTIONS(1166), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1612), 1, + anon_sym_LPAREN, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1618), 1, + anon_sym_DOT, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1808), 1, + anon_sym_RPAREN, + STATE(935), 1, + sym_decorator, + STATE(1035), 1, + sym_function_type, + STATE(1057), 1, + sym_uncurry, + STATE(1061), 1, + sym_record_type, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3416), 1, + sym_module_expression, + STATE(3642), 1, + sym__type, + STATE(3809), 1, + sym_function_type_parameter, + STATE(3981), 1, + sym_labeled_parameter, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [16322] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(936), 1, sym_decorator, - aux_sym_if_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1484), 14, + ACTIONS(1810), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1482), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156766,53 +104009,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [71245] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [16396] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1355), 1, - anon_sym_EQ_GT, - ACTIONS(2648), 1, - anon_sym_as, - STATE(1575), 1, + STATE(937), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1353), 12, + ACTIONS(1814), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1351), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1816), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -156824,110 +104077,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [71310] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [16470] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2650), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, anon_sym_LPAREN, - STATE(1576), 1, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1414), 1, + anon_sym_SLASH, + ACTIONS(1714), 1, + anon_sym_exception, + ACTIONS(1716), 1, + anon_sym_QMARK, + ACTIONS(1718), 1, + anon_sym_lazy, + STATE(938), 1, sym_decorator, - STATE(1775), 1, - sym__extension_expression_payload, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2994), 1, + sym__literal_pattern, + STATE(3216), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1609), 13, - anon_sym_EQ, - anon_sym_LT, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3141), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [16602] = 12, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + ACTIONS(1828), 1, + anon_sym_GT_GT, + STATE(939), 1, + sym_decorator, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1826), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1822), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1818), 5, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 18, + anon_sym_module, + anon_sym_unpack, + anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1605), 27, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 23, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [71375] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [16688] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1414), 1, + anon_sym_SLASH, + ACTIONS(1714), 1, + anon_sym_exception, + ACTIONS(1716), 1, + anon_sym_QMARK, + ACTIONS(1718), 1, + anon_sym_lazy, + STATE(940), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2994), 1, + sym__literal_pattern, + STATE(3292), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3141), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [16820] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1577), 1, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + STATE(941), 1, sym_decorator, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1495), 16, + ACTIONS(1822), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 24, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, - anon_sym_SLASH, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1493), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 25, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -156935,110 +104416,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [71436] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [16900] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1578), 1, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + ACTIONS(1828), 1, + anon_sym_GT_GT, + ACTIONS(1836), 1, + anon_sym_QMARK, + ACTIONS(1838), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1840), 1, + anon_sym_AMP_AMP, + ACTIONS(1842), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1844), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1846), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(1850), 1, + anon_sym_COLON_GT, + STATE(942), 1, sym_decorator, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1826), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1391), 12, + ACTIONS(1822), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1834), 4, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1389), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(1848), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_COLON_GT, - [71497] = 10, + ACTIONS(1818), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1830), 12, + anon_sym_module, + anon_sym_unpack, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1832), 14, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [17004] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2641), 1, - anon_sym_else, - STATE(1579), 1, + STATE(943), 1, sym_decorator, - STATE(1768), 1, - aux_sym_if_expression_repeat1, - STATE(1914), 1, - sym_else_if_clause, - STATE(2175), 1, - sym_else_clause, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1312), 13, - anon_sym_COLON, + ACTIONS(1852), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1310), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1854), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -157050,50 +104567,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [71566] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [17078] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1580), 1, + STATE(944), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1636), 13, - anon_sym_COLON, + ACTIONS(1856), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1634), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1858), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -157105,164 +104635,610 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [71627] = 11, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [17152] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2567), 1, - anon_sym_EQ_GT, - ACTIONS(2652), 1, - anon_sym_COLON, - ACTIONS(2654), 1, - anon_sym_COMMA, - STATE(1581), 1, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + ACTIONS(1828), 1, + anon_sym_GT_GT, + ACTIONS(1836), 1, + anon_sym_QMARK, + ACTIONS(1838), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1840), 1, + anon_sym_AMP_AMP, + ACTIONS(1842), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1844), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1846), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(1850), 1, + anon_sym_COLON_GT, + STATE(945), 1, sym_decorator, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1826), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1822), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1834), 4, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 26, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(1848), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_COLON_GT, - [71698] = 6, + ACTIONS(1818), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1860), 12, + anon_sym_module, + anon_sym_unpack, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1862), 14, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [17256] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1582), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1406), 1, + anon_sym_exception, + ACTIONS(1412), 1, + anon_sym_lazy, + ACTIONS(1414), 1, + anon_sym_SLASH, + ACTIONS(1864), 1, + anon_sym_QMARK, + STATE(946), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3084), 1, + sym__literal_pattern, + STATE(3466), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3164), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [17388] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1406), 1, + anon_sym_exception, + ACTIONS(1412), 1, + anon_sym_lazy, + ACTIONS(1414), 1, + anon_sym_SLASH, + ACTIONS(1864), 1, + anon_sym_QMARK, + STATE(947), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2803), 1, + sym__pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3084), 1, + sym__literal_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3164), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [17520] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1414), 1, + anon_sym_SLASH, + ACTIONS(1714), 1, + anon_sym_exception, + ACTIONS(1718), 1, + anon_sym_lazy, + ACTIONS(1806), 1, + anon_sym_QMARK, + STATE(948), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2979), 1, + sym__literal_pattern, + STATE(3118), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 16, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3147), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [17652] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1406), 1, + anon_sym_exception, + ACTIONS(1412), 1, + anon_sym_lazy, + ACTIONS(1414), 1, + anon_sym_SLASH, + ACTIONS(1864), 1, + anon_sym_QMARK, + STATE(949), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2825), 1, + sym__pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3084), 1, + sym__literal_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3164), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [17784] = 14, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + ACTIONS(1828), 1, + anon_sym_GT_GT, + STATE(950), 1, + sym_decorator, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1826), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1822), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1834), 4, anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1848), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1818), 5, anon_sym_PLUS, anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 14, + anon_sym_module, + anon_sym_unpack, + anon_sym_DOT, anon_sym_async, - anon_sym_as, - anon_sym_SLASH, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1326), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 19, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [71759] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [17874] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1583), 1, + STATE(951), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1511), 16, + ACTIONS(1866), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1509), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1868), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -157274,108 +105250,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [71820] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [17948] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1584), 1, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + ACTIONS(1828), 1, + anon_sym_GT_GT, + ACTIONS(1836), 1, + anon_sym_QMARK, + ACTIONS(1838), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1840), 1, + anon_sym_AMP_AMP, + ACTIONS(1842), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1844), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1846), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(1850), 1, + anon_sym_COLON_GT, + STATE(952), 1, sym_decorator, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1826), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1533), 13, - anon_sym_EQ, + ACTIONS(1822), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1834), 4, anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1848), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1818), 5, anon_sym_PLUS, anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1870), 12, + anon_sym_module, + anon_sym_unpack, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1872), 14, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [18052] = 17, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + ACTIONS(1828), 1, + anon_sym_GT_GT, + ACTIONS(1838), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1842), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1846), 1, + anon_sym_CARET_CARET_CARET, + STATE(953), 1, + sym_decorator, + ACTIONS(1820), 2, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(1826), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1822), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1834), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1531), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, + ACTIONS(1848), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1818), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 14, + anon_sym_module, + anon_sym_unpack, anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 16, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, + anon_sym_COLON_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [18148] = 21, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + ACTIONS(1828), 1, + anon_sym_GT_GT, + ACTIONS(1836), 1, + anon_sym_QMARK, + ACTIONS(1838), 1, anon_sym_AMP_AMP_AMP, + ACTIONS(1840), 1, + anon_sym_AMP_AMP, + ACTIONS(1842), 1, anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1844), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1846), 1, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1850), 1, + anon_sym_COLON_GT, + STATE(954), 1, + sym_decorator, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1826), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1822), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(1834), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1848), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_COLON_GT, - [71881] = 8, + ACTIONS(1818), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1874), 12, + anon_sym_module, + anon_sym_unpack, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1876), 14, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [18252] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - STATE(1585), 1, + STATE(955), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 12, + ACTIONS(1878), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1880), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -157387,107 +105563,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [71946] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [18326] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2656), 1, - anon_sym_PIPE, - STATE(1586), 1, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + ACTIONS(1828), 1, + anon_sym_GT_GT, + ACTIONS(1838), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1846), 1, + anon_sym_CARET_CARET_CARET, + STATE(956), 1, sym_decorator, - STATE(1613), 1, - aux_sym_variant_type_repeat1, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1826), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 15, - anon_sym_unpack, + ACTIONS(1822), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1834), 4, anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1848), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1818), 5, anon_sym_PLUS, anon_sym_DASH, - anon_sym_GT, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 14, + anon_sym_module, + anon_sym_unpack, + anon_sym_DOT, anon_sym_async, - anon_sym_as, - anon_sym_SLASH, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1318), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 17, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [72011] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [18420] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1303), 1, - anon_sym_EQ_GT, - STATE(1587), 1, + STATE(957), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1441), 16, + ACTIONS(1882), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1438), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1884), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -157499,110 +105709,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [72074] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [18494] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2658), 1, - anon_sym_LT, - STATE(1588), 1, - sym_decorator, - STATE(1741), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1305), 13, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1303), 27, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + sym__decorator_inline, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + ACTIONS(1828), 1, + anon_sym_GT_GT, + ACTIONS(1838), 1, anon_sym_AMP_AMP_AMP, + ACTIONS(1840), 1, + anon_sym_AMP_AMP, + ACTIONS(1842), 1, anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1846), 1, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + STATE(958), 1, + sym_decorator, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1826), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1822), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(1834), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1848), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + ACTIONS(1818), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 13, + anon_sym_module, + anon_sym_unpack, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + anon_sym_PIPE_PIPE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 16, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_COLON_GT, - [72139] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [18592] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1545), 1, - anon_sym_COLON, - ACTIONS(1547), 1, - anon_sym_EQ_GT, - STATE(1589), 1, + STATE(959), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1423), 12, + ACTIONS(1886), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1888), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -157614,111 +105857,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [72204] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [18666] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2656), 1, - anon_sym_PIPE, - STATE(1590), 1, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + ACTIONS(1828), 1, + anon_sym_GT_GT, + ACTIONS(1838), 1, + anon_sym_AMP_AMP_AMP, + STATE(960), 1, sym_decorator, - STATE(1615), 1, - aux_sym_variant_type_repeat1, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1826), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 15, - anon_sym_unpack, + ACTIONS(1822), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1834), 4, anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1848), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1818), 5, anon_sym_PLUS, anon_sym_DASH, - anon_sym_GT, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 14, + anon_sym_module, + anon_sym_unpack, + anon_sym_DOT, anon_sym_async, - anon_sym_as, - anon_sym_SLASH, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1254), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 18, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [72269] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [18758] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2661), 1, - anon_sym_PIPE, - STATE(1591), 2, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + STATE(961), 1, sym_decorator, - aux_sym_variant_type_repeat1, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 15, + ACTIONS(1822), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 24, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_async, - anon_sym_as, - anon_sym_SLASH, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1326), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 25, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -157726,50 +106005,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [72332] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [18838] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1592), 1, + ACTIONS(1396), 1, + anon_sym_DOT, + STATE(962), 1, sym_decorator, + ACTIONS(1398), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1379), 16, + ACTIONS(1528), 25, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1377), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1530), 27, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -157781,50 +106075,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [72393] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [18916] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1593), 1, + STATE(963), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1226), 15, - anon_sym_EQ, + ACTIONS(1890), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1221), 27, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1892), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -157836,55 +106143,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [72454] = 10, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [18990] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2610), 1, - anon_sym_LPAREN, - ACTIONS(2664), 1, - anon_sym_COLON, - STATE(1594), 1, + STATE(964), 1, sym_decorator, - STATE(1695), 1, - sym_type_annotation, - STATE(1742), 1, - sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 13, + ACTIONS(1894), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 25, - anon_sym_RPAREN, - anon_sym_COMMA, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1896), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -157896,49 +106211,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [72523] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [19064] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1595), 1, + STATE(965), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1383), 15, - anon_sym_EQ, + ACTIONS(1898), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1381), 27, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1900), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -157950,57 +106279,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [72584] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [19138] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2614), 1, - anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(1596), 1, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + STATE(966), 1, sym_decorator, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, - anon_sym_LT, + ACTIONS(1822), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1818), 5, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 19, + anon_sym_module, + anon_sym_unpack, + anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 25, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -158008,104 +106351,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [72649] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [19220] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1597), 1, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + ACTIONS(1828), 1, + anon_sym_GT_GT, + ACTIONS(1836), 1, + anon_sym_QMARK, + ACTIONS(1838), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1840), 1, + anon_sym_AMP_AMP, + ACTIONS(1842), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1844), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1846), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(1850), 1, + anon_sym_COLON_GT, + STATE(967), 1, sym_decorator, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1826), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1387), 16, - anon_sym_unpack, + ACTIONS(1822), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1834), 4, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1385), 26, + ACTIONS(1848), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1818), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1902), 12, + anon_sym_module, + anon_sym_unpack, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1904), 14, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [19324] = 20, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1824), 1, + anon_sym_STAR_STAR, + ACTIONS(1828), 1, + anon_sym_GT_GT, + ACTIONS(1838), 1, anon_sym_AMP_AMP_AMP, + ACTIONS(1840), 1, + anon_sym_AMP_AMP, + ACTIONS(1842), 1, anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1844), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1846), 1, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1850), 1, + anon_sym_COLON_GT, + STATE(968), 1, + sym_decorator, + ACTIONS(1820), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1826), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1822), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(1834), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1848), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(1818), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1906), 12, + anon_sym_module, + anon_sym_unpack, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1908), 15, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_POUND, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [19426] = 43, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(127), 1, + anon_sym_module, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1117), 1, + anon_sym_TILDE, + ACTIONS(1166), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1612), 1, + anon_sym_LPAREN, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1618), 1, + anon_sym_DOT, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1668), 1, + anon_sym_RPAREN, + STATE(969), 1, + sym_decorator, + STATE(1035), 1, + sym_function_type, + STATE(1057), 1, + sym_uncurry, + STATE(1061), 1, + sym_record_type, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3416), 1, + sym_module_expression, + STATE(3598), 1, + sym__type, + STATE(3809), 1, + sym_function_type_parameter, + STATE(3981), 1, + sym_labeled_parameter, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [72710] = 6, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [19574] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1598), 1, + STATE(970), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1503), 16, + ACTIONS(1910), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1501), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1912), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -158117,53 +106689,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [19648] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(207), 1, + anon_sym_exception, + ACTIONS(387), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1191), 1, + anon_sym_lazy, + STATE(971), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3242), 1, + sym__literal_pattern, + STATE(3728), 1, + sym_module_primary_expression, + STATE(3928), 1, + sym__pattern, + ACTIONS(115), 2, + sym__identifier, sym__escape_identifier, - [72771] = 8, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3348), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [19780] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2612), 1, - anon_sym_COLON, - STATE(1599), 1, + STATE(972), 1, sym_decorator, - STATE(1734), 1, - sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 13, + ACTIONS(1914), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 27, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1916), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -158175,51 +106854,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [72836] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [19854] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2666), 1, - anon_sym_as, - STATE(1600), 1, + STATE(973), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1353), 15, + ACTIONS(1918), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1351), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1920), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -158231,50 +106922,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [72901] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [19928] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1601), 1, + STATE(974), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1305), 16, + ACTIONS(1922), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1303), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1924), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -158286,109 +106990,354 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [72962] = 9, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [20002] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2668), 1, - anon_sym_EQ_GT, - STATE(1602), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1414), 1, + anon_sym_SLASH, + ACTIONS(1714), 1, + anon_sym_exception, + ACTIONS(1718), 1, + anon_sym_lazy, + ACTIONS(1806), 1, + anon_sym_QMARK, + STATE(975), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2979), 1, + sym__literal_pattern, + STATE(3294), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 14, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3147), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [20134] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1414), 1, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1428), 25, + ACTIONS(1714), 1, + anon_sym_exception, + ACTIONS(1718), 1, + anon_sym_lazy, + ACTIONS(1806), 1, + anon_sym_QMARK, + STATE(976), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2803), 1, + sym__pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(2979), 1, + sym__literal_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3147), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [20266] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, anon_sym_LBRACE, + ACTIONS(1105), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1414), 1, + anon_sym_SLASH, + ACTIONS(1714), 1, + anon_sym_exception, + ACTIONS(1718), 1, + anon_sym_lazy, + ACTIONS(1806), 1, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + STATE(977), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2825), 1, + sym__pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(2979), 1, + sym__literal_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, sym__escape_identifier, - [73029] = 6, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3147), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [20398] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1603), 1, + STATE(978), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1537), 13, - anon_sym_EQ, + ACTIONS(1926), 26, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1535), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1928), 29, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -158400,108 +107349,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [73090] = 10, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [20472] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2500), 1, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(143), 1, + anon_sym_QMARK, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, anon_sym_LPAREN, - ACTIONS(2670), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(1604), 1, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(979), 1, sym_decorator, - STATE(1679), 1, - sym_variant_parameters, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2764), 1, + sym__pattern, + STATE(2859), 1, + sym__literal_pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 26, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [73159] = 6, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2949), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [20604] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1605), 1, + ACTIONS(1598), 1, + anon_sym_PIPE, + STATE(980), 1, sym_decorator, + STATE(984), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1417), 16, + ACTIONS(1193), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1415), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1195), 27, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -158513,108 +107516,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [73220] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [20682] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1425), 1, - anon_sym_EQ_GT, - STATE(1606), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1423), 16, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_as, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(161), 1, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1421), 25, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(383), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, anon_sym_LBRACE, + ACTIONS(1105), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(981), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2903), 1, + sym__literal_pattern, + STATE(3132), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, sym__escape_identifier, - [73283] = 8, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2951), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [20814] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1355), 1, - anon_sym_EQ_GT, - ACTIONS(2666), 1, - anon_sym_as, - STATE(1607), 1, + ACTIONS(1598), 1, + anon_sym_PIPE, + STATE(982), 1, sym_decorator, + STATE(984), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1353), 15, + ACTIONS(1199), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1351), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1201), 27, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -158626,106 +107683,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [73348] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [20892] = 43, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1608), 1, - sym_decorator, - STATE(1627), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1320), 16, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1318), 25, + ACTIONS(127), 1, + anon_sym_module, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1117), 1, + anon_sym_TILDE, + ACTIONS(1166), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, anon_sym_LBRACE, + ACTIONS(1612), 1, anon_sym_LPAREN, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1618), 1, anon_sym_DOT, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1930), 1, + anon_sym_RPAREN, + STATE(983), 1, + sym_decorator, + STATE(1035), 1, + sym_function_type, + STATE(1057), 1, + sym_uncurry, + STATE(1061), 1, + sym_record_type, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3416), 1, + sym_module_expression, + STATE(3524), 1, + sym__type, + STATE(3809), 1, + sym_function_type_parameter, + STATE(3981), 1, + sym_labeled_parameter, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [73411] = 6, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [21040] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1609), 1, + ACTIONS(1932), 1, + anon_sym_PIPE, + STATE(984), 2, sym_decorator, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1441), 16, + ACTIONS(1203), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1438), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1205), 27, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -158737,105 +107857,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [73472] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [21116] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1610), 1, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(207), 1, + anon_sym_exception, + ACTIONS(387), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + ACTIONS(1191), 1, + anon_sym_lazy, + STATE(985), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3242), 1, + sym__literal_pattern, + STATE(3728), 1, + sym_module_primary_expression, + STATE(3932), 1, + sym__pattern, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1446), 16, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1444), 26, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(3348), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [21248] = 43, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(127), 1, + anon_sym_module, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1117), 1, + anon_sym_TILDE, + ACTIONS(1166), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, anon_sym_LBRACE, + ACTIONS(1612), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1618), 1, anon_sym_DOT, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1935), 1, + anon_sym_RPAREN, + STATE(986), 1, + sym_decorator, + STATE(1035), 1, + sym_function_type, + STATE(1057), 1, + sym_uncurry, + STATE(1061), 1, + sym_record_type, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3416), 1, + sym_module_expression, + STATE(3607), 1, + sym__type, + STATE(3809), 1, + sym_function_type_parameter, + STATE(3981), 1, + sym_labeled_parameter, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [73533] = 6, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [21396] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1611), 1, + STATE(987), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1366), 16, + ACTIONS(1396), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1364), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1398), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -158847,108 +108127,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [73594] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [21470] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1612), 1, - sym_decorator, - STATE(1628), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 16, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_async, - anon_sym_as, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(161), 1, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1254), 25, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(383), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, anon_sym_LBRACE, + ACTIONS(1105), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(988), 1, + sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2903), 1, + sym__literal_pattern, + STATE(2965), 1, + sym__pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, sym__escape_identifier, - [73657] = 8, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2951), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [21602] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2656), 1, - anon_sym_PIPE, - STATE(1591), 1, - aux_sym_variant_type_repeat1, - STATE(1613), 1, + STATE(989), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 15, + ACTIONS(1528), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1254), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1530), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -158960,19 +108292,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [73722] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [21676] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1614), 1, + STATE(990), 1, sym_decorator, + STATE(993), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 16, + ACTIONS(1247), 27, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, @@ -158980,30 +108319,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1258), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1249), 27, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -159015,52 +108361,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [73783] = 8, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [21752] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2656), 1, - anon_sym_PIPE, - STATE(1591), 1, + STATE(929), 1, aux_sym_variant_type_repeat1, - STATE(1615), 1, + STATE(991), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 15, + ACTIONS(1193), 27, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1322), 25, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1195), 27, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -159072,133 +108430,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [73848] = 10, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [21828] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2675), 1, - anon_sym_COLON, - ACTIONS(2680), 1, - anon_sym_PIPE, - STATE(1616), 1, - sym_decorator, - ACTIONS(2678), 2, - anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2672), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1432), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(133), 1, + anon_sym_exception, + ACTIONS(161), 1, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 22, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(383), 1, + anon_sym_QMARK, + ACTIONS(1103), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, anon_sym_LPAREN, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1111), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [73917] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1617), 1, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1115), 1, + anon_sym_POUND, + ACTIONS(1119), 1, + anon_sym_lazy, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1129), 1, + sym__dict_constructor, + STATE(992), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2705), 1, + sym_polyvar_identifier, + STATE(2825), 1, + sym__pattern, + STATE(2891), 1, + sym_module_identifier, + STATE(2903), 1, + sym__literal_pattern, + STATE(3728), 1, + sym_module_primary_expression, + ACTIONS(115), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1125), 2, + sym_true, + sym_false, + STATE(2703), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1541), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1539), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [73978] = 6, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(2814), 7, + sym_variant_pattern, + sym_polyvar_pattern, + sym_record_pattern, + sym_tuple_pattern, + sym_array_pattern, + sym_list_pattern, + sym_dict_pattern, + STATE(2951), 10, + sym_polyvar_type_pattern, + sym_module_pack, + sym_parenthesized_pattern, + sym_range_pattern, + sym_or_pattern, + sym_exception_pattern, + sym__destructuring_pattern, + sym_lazy_pattern, + sym_value_identifier, + sym_unit, + [21960] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1618), 1, + STATE(984), 1, + aux_sym_variant_type_repeat1, + STATE(993), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1480), 16, + ACTIONS(1193), 27, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, @@ -159206,30 +108554,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, anon_sym_as, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1478), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1195), 27, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -159241,50 +108596,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74039] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [22036] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1619), 1, + STATE(994), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1450), 16, + ACTIONS(1937), 26, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1448), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1939), 29, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_STAR_STAR, @@ -159296,27 +108664,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74100] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [22110] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1620), 1, + STATE(995), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1454), 16, - anon_sym_unpack, + ACTIONS(1377), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159324,16 +108696,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1452), 26, + ACTIONS(1379), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -159351,26 +108734,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74161] = 6, + anon_sym_with, + [22182] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1621), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1140), 1, + anon_sym_LPAREN, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(996), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(3888), 1, + sym_formal_parameters, + STATE(4222), 1, + sym__definition_signature, + STATE(4378), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1460), 16, - anon_sym_unpack, + ACTIONS(1143), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -159379,16 +108779,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1458), 26, + ACTIONS(1138), 29, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -159406,38 +108809,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74222] = 13, + [22270] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2580), 1, - anon_sym_PIPE, - ACTIONS(2634), 1, - anon_sym_EQ_GT, - ACTIONS(2682), 1, - anon_sym_as, - STATE(1622), 1, + STATE(997), 1, sym_decorator, - STATE(3214), 1, - sym_as_aliasing, - ACTIONS(2572), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1420), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159445,13 +108835,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 23, + ACTIONS(1422), 38, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -159469,108 +108873,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [74297] = 6, + anon_sym_with, + [22341] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1623), 1, + ACTIONS(1949), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1953), 1, + anon_sym_STAR_STAR, + ACTIONS(1957), 1, + anon_sym_GT_GT, + STATE(998), 1, sym_decorator, + ACTIONS(1947), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1476), 16, - anon_sym_unpack, + ACTIONS(1951), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1943), 4, anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1959), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1945), 5, anon_sym_PLUS, anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 13, + anon_sym_module, + anon_sym_unpack, anon_sym_async, - anon_sym_as, - anon_sym_SLASH, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1474), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, + anon_sym_POUND, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74358] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [22430] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1624), 1, + ACTIONS(1953), 1, + anon_sym_STAR_STAR, + STATE(999), 1, sym_decorator, + ACTIONS(1947), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1353), 16, + ACTIONS(1951), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 23, + anon_sym_module, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_async, - anon_sym_as, - anon_sym_SLASH, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1351), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 23, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -159578,54 +109011,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74419] = 6, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [22507] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1625), 1, + ACTIONS(1953), 1, + anon_sym_STAR_STAR, + STATE(1000), 1, sym_decorator, + ACTIONS(1947), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1523), 16, - anon_sym_unpack, - anon_sym_LT, + ACTIONS(1951), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1945), 5, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 18, + anon_sym_module, + anon_sym_unpack, + anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_async, - anon_sym_as, - anon_sym_SLASH, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1521), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 23, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -159633,25 +109080,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74480] = 9, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [22586] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2684), 1, - anon_sym_EQ_GT, - STATE(1626), 1, + STATE(1001), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 12, + ACTIONS(1286), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -159664,17 +109111,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 27, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1288), 38, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -159692,28 +109149,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [74547] = 7, + anon_sym_with, + [22657] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1591), 1, - aux_sym_variant_type_repeat1, - STATE(1627), 1, + STATE(1002), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 16, - anon_sym_unpack, + ACTIONS(1334), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159721,15 +109176,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1254), 25, + ACTIONS(1336), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -159747,29 +109214,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74610] = 7, + anon_sym_with, + [22728] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1591), 1, - aux_sym_variant_type_repeat1, - STATE(1628), 1, + STATE(1003), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 16, - anon_sym_unpack, + ACTIONS(1381), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159777,15 +109241,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1322), 25, + ACTIONS(1383), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -159803,27 +109279,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74673] = 6, + anon_sym_with, + [22799] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1629), 1, + STATE(1004), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1349), 16, - anon_sym_unpack, + ACTIONS(1322), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159831,16 +109306,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1347), 26, + ACTIONS(1324), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -159858,27 +109344,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74734] = 6, + anon_sym_with, + [22870] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1630), 1, + STATE(1005), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1507), 16, - anon_sym_unpack, + ACTIONS(1294), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159886,16 +109371,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1505), 26, + ACTIONS(1296), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -159913,27 +109409,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74795] = 6, + anon_sym_with, + [22941] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1631), 1, + STATE(1006), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1345), 16, - anon_sym_unpack, + ACTIONS(1349), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159941,16 +109436,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1343), 26, + ACTIONS(1351), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -159968,27 +109474,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74856] = 6, + anon_sym_with, + [23012] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1632), 1, + ACTIONS(1389), 1, + anon_sym_EQ_GT, + STATE(1007), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1491), 16, - anon_sym_unpack, + ACTIONS(1385), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159996,16 +109503,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1489), 26, + ACTIONS(1387), 37, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160023,27 +109540,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74917] = 6, + anon_sym_with, + [23085] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1633), 1, + STATE(1008), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1515), 16, - anon_sym_unpack, + ACTIONS(1318), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160051,16 +109567,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1513), 26, + ACTIONS(1320), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160078,27 +109605,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [74978] = 6, + anon_sym_with, + [23156] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1634), 1, + STATE(1009), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1362), 16, - anon_sym_unpack, + ACTIONS(1392), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160106,16 +109632,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1360), 26, + ACTIONS(1394), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160133,27 +109670,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [75039] = 6, + anon_sym_with, + [23227] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1635), 1, + STATE(1010), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1464), 16, - anon_sym_unpack, + ACTIONS(1156), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160161,16 +109697,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1462), 26, + ACTIONS(1158), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160188,27 +109735,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [75100] = 6, + anon_sym_with, + [23298] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1636), 1, + STATE(1011), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1519), 16, - anon_sym_unpack, + ACTIONS(1230), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160216,16 +109762,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1517), 26, + ACTIONS(1232), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160243,27 +109800,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [75161] = 6, + anon_sym_with, + [23369] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1637), 1, + STATE(1012), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1472), 16, - anon_sym_unpack, + ACTIONS(1302), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160271,16 +109827,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1470), 26, + ACTIONS(1304), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160298,27 +109865,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [75222] = 6, + anon_sym_with, + [23440] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1638), 1, + STATE(1013), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1405), 16, - anon_sym_unpack, + ACTIONS(1326), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160326,16 +109892,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1403), 26, + ACTIONS(1328), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160353,27 +109930,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [75283] = 6, + anon_sym_with, + [23511] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1639), 1, + STATE(1014), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1409), 16, - anon_sym_unpack, + ACTIONS(1238), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160381,16 +109957,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1407), 26, + ACTIONS(1240), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160408,84 +109995,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [75344] = 8, + anon_sym_with, + [23582] = 41, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2686), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1117), 1, + anon_sym_TILDE, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1618), 1, + anon_sym_DOT, + ACTIONS(1620), 1, anon_sym_PIPE, - STATE(1640), 1, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(1963), 1, + anon_sym_RPAREN, + STATE(1015), 1, sym_decorator, - STATE(1642), 1, - aux_sym_variant_type_repeat1, + STATE(1035), 1, + sym_function_type, + STATE(1057), 1, + sym_uncurry, + STATE(1061), 1, + sym_record_type, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3808), 1, + sym__type, + STATE(3978), 1, + sym_function_type_parameter, + STATE(3981), 1, + sym_labeled_parameter, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1254), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [75409] = 8, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [23723] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2686), 1, - anon_sym_PIPE, - STATE(1641), 1, + STATE(1016), 1, sym_decorator, - STATE(1642), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1290), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160493,19 +110122,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1292), 38, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160523,25 +110160,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [75474] = 7, + anon_sym_with, + [23794] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2688), 1, - anon_sym_PIPE, - STATE(1642), 2, + STATE(1017), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1270), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160549,19 +110187,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1272), 38, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160579,40 +110225,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [75537] = 6, + anon_sym_with, + [23865] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1643), 1, + ACTIONS(1965), 1, + anon_sym_else, + STATE(1018), 1, sym_decorator, + STATE(1019), 1, + aux_sym_if_expression_repeat1, + STATE(1083), 1, + sym_else_if_clause, + STATE(1115), 1, + sym_else_clause, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1413), 16, + ACTIONS(1168), 18, + anon_sym_COLON, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_async, - anon_sym_as, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1411), 26, + sym__identifier, + ACTIONS(1170), 30, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -160634,44 +110295,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [75598] = 8, + [23944] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2686), 1, - anon_sym_PIPE, - STATE(1640), 1, - aux_sym_variant_type_repeat1, - STATE(1644), 1, + ACTIONS(1965), 1, + anon_sym_else, + STATE(1019), 1, sym_decorator, + STATE(1050), 1, + aux_sym_if_expression_repeat1, + STATE(1083), 1, + sym_else_if_clause, + STATE(1135), 1, + sym_else_clause, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1210), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1212), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -160691,26 +110363,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [75663] = 6, + sym__escape_identifier, + [24023] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1645), 1, + STATE(1020), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1391), 16, - anon_sym_unpack, + ACTIONS(1345), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160718,16 +110390,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1389), 26, + ACTIONS(1347), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160745,27 +110428,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [75724] = 8, + anon_sym_with, + [24094] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2686), 1, - anon_sym_PIPE, - STATE(1641), 1, - aux_sym_variant_type_repeat1, - STATE(1646), 1, + STATE(1021), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1218), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160773,19 +110455,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1220), 38, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160803,28 +110493,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [75789] = 8, + anon_sym_with, + [24165] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2691), 1, - anon_sym_PIPE, - STATE(1647), 1, + STATE(1022), 1, sym_decorator, - STATE(1649), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, + ACTIONS(1424), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160832,17 +110520,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 27, + ACTIONS(1426), 38, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160860,28 +110558,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [75854] = 8, + anon_sym_with, + [24236] = 41, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2691), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1117), 1, + anon_sym_TILDE, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1618), 1, + anon_sym_DOT, + ACTIONS(1620), 1, anon_sym_PIPE, - STATE(1648), 1, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(1967), 1, + anon_sym_RPAREN, + STATE(1023), 1, + sym_decorator, + STATE(1035), 1, + sym_function_type, + STATE(1057), 1, + sym_uncurry, + STATE(1061), 1, + sym_record_type, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3808), 1, + sym__type, + STATE(3978), 1, + sym_function_type_parameter, + STATE(3981), 1, + sym_labeled_parameter, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [24377] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1024), 1, sym_decorator, - STATE(1649), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 13, + ACTIONS(1330), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160889,17 +110685,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 27, + ACTIONS(1332), 38, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160917,27 +110723,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [75919] = 7, + anon_sym_with, + [24448] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2693), 1, - anon_sym_PIPE, - STATE(1649), 2, + STATE(1025), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 13, + ACTIONS(1361), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160945,17 +110750,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 27, + ACTIONS(1363), 38, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -160973,28 +110788,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [75982] = 8, + anon_sym_with, + [24519] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2691), 1, - anon_sym_PIPE, - STATE(1647), 1, - aux_sym_variant_type_repeat1, - STATE(1650), 1, + STATE(1026), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 13, + ACTIONS(1203), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161002,17 +110815,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 27, + ACTIONS(1205), 38, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161030,28 +110853,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [76047] = 8, + anon_sym_with, + [24590] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2691), 1, - anon_sym_PIPE, - STATE(1648), 1, - aux_sym_variant_type_repeat1, - STATE(1651), 1, + STATE(1027), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, + ACTIONS(1257), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161059,17 +110880,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 27, + ACTIONS(1259), 38, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161087,26 +110918,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [76112] = 7, + anon_sym_with, + [24661] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1649), 1, - aux_sym_variant_type_repeat1, - STATE(1652), 1, + STATE(1028), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 14, + ACTIONS(1298), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -161115,17 +110945,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 27, + ACTIONS(1300), 38, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161143,26 +110983,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [76175] = 7, + anon_sym_with, + [24732] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1649), 1, - aux_sym_variant_type_repeat1, - STATE(1653), 1, + STATE(1029), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 14, + ACTIONS(1416), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -161171,17 +111010,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 27, + ACTIONS(1418), 38, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161199,26 +111048,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [76238] = 8, + anon_sym_with, + [24803] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2696), 1, - anon_sym_PIPE, - STATE(1654), 1, + STATE(1030), 1, sym_decorator, - STATE(1656), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1276), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161226,19 +111075,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1279), 38, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161256,26 +111113,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [76303] = 8, + anon_sym_with, + [24874] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2696), 1, - anon_sym_PIPE, - STATE(1655), 1, + STATE(1031), 1, sym_decorator, - STATE(1656), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1282), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161283,19 +111140,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1284), 38, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161313,25 +111178,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [76368] = 7, + anon_sym_with, + [24945] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2698), 1, - anon_sym_PIPE, - STATE(1656), 2, + STATE(1032), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1353), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161339,19 +111205,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1355), 38, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161369,26 +111243,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [76431] = 8, + anon_sym_with, + [25016] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2696), 1, - anon_sym_PIPE, - STATE(1654), 1, - aux_sym_variant_type_repeat1, - STATE(1657), 1, + ACTIONS(1949), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1953), 1, + anon_sym_STAR_STAR, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(1969), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_AMP_AMP, + ACTIONS(1973), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1975), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1977), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(1979), 1, + anon_sym_COLON_GT, + STATE(1033), 1, + sym_decorator, + ACTIONS(1947), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1951), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1943), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1959), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1945), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1902), 11, + anon_sym_module, + anon_sym_unpack, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1904), 12, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_POUND, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [25117] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1034), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1310), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161396,19 +111350,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1312), 38, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161426,26 +111388,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [76496] = 8, + anon_sym_with, + [25188] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2696), 1, - anon_sym_PIPE, - STATE(1655), 1, - aux_sym_variant_type_repeat1, - STATE(1658), 1, + STATE(1035), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1369), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161453,19 +111415,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1371), 38, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161483,81 +111453,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [76561] = 6, + anon_sym_with, + [25259] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1659), 1, + ACTIONS(1947), 1, + anon_sym_STAR, + ACTIONS(1949), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1953), 1, + anon_sym_STAR_STAR, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(1969), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_AMP_AMP, + ACTIONS(1973), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1975), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1977), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(1979), 1, + anon_sym_COLON_GT, + STATE(1036), 1, sym_decorator, + ACTIONS(1951), 2, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 16, - anon_sym_unpack, - anon_sym_LT, + ACTIONS(1943), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1959), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1945), 5, anon_sym_PLUS, anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1981), 13, + anon_sym_module, + anon_sym_unpack, + anon_sym_LT, anon_sym_async, - anon_sym_as, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1250), 26, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1983), 13, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [25360] = 20, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1949), 1, anon_sym_AMP_AMP_AMP, + ACTIONS(1953), 1, + anon_sym_STAR_STAR, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(1971), 1, + anon_sym_AMP_AMP, + ACTIONS(1973), 1, anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1975), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1977), 1, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1979), 1, + anon_sym_COLON_GT, + STATE(1037), 1, + sym_decorator, + ACTIONS(1947), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1951), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(1943), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1959), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(1945), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1906), 11, + anon_sym_module, + anon_sym_unpack, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + sym__identifier, sym__escape_identifier, - [76622] = 6, + sym_true, + sym_false, + ACTIONS(1908), 13, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_POUND, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [25459] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1660), 1, + STATE(1038), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1335), 16, - anon_sym_unpack, + ACTIONS(1183), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_async, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161565,16 +111639,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1333), 26, + ACTIONS(1185), 38, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161592,132 +111677,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [76683] = 6, + anon_sym_with, + [25530] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1661), 1, + ACTIONS(1953), 1, + anon_sym_STAR_STAR, + ACTIONS(1957), 1, + anon_sym_GT_GT, + STATE(1039), 1, sym_decorator, + ACTIONS(1947), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1335), 12, - anon_sym_LT, + ACTIONS(1951), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1945), 5, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 17, + anon_sym_module, + anon_sym_unpack, + anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1333), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 21, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [76744] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [25613] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1656), 1, - aux_sym_variant_type_repeat1, - STATE(1662), 1, + ACTIONS(1953), 1, + anon_sym_STAR_STAR, + STATE(1040), 1, sym_decorator, + ACTIONS(1947), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1951), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 23, + anon_sym_module, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 23, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [25690] = 14, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1953), 1, anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, + ACTIONS(1957), 1, + anon_sym_GT_GT, + STATE(1041), 1, + sym_decorator, + ACTIONS(1947), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1951), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1943), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1959), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + ACTIONS(1945), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 13, + anon_sym_module, + anon_sym_unpack, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 17, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_POUND, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [76807] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [25777] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1656), 1, - aux_sym_variant_type_repeat1, - STATE(1663), 1, + STATE(1042), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1432), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -161730,19 +111916,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1434), 38, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161760,76 +111954,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [76870] = 7, + anon_sym_with, + [25848] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1662), 1, - aux_sym_variant_type_repeat1, - STATE(1664), 1, + ACTIONS(1949), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1953), 1, + anon_sym_STAR_STAR, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(1973), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1977), 1, + anon_sym_CARET_CARET_CARET, + STATE(1043), 1, sym_decorator, + ACTIONS(1947), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, + ACTIONS(1951), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1943), 4, anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1959), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1945), 5, anon_sym_PLUS, anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 13, + anon_sym_module, + anon_sym_unpack, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 14, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_POUND, + anon_sym_COLON_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [25941] = 16, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1949), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1953), 1, + anon_sym_STAR_STAR, + ACTIONS(1957), 1, anon_sym_GT_GT, + ACTIONS(1977), 1, + anon_sym_CARET_CARET_CARET, + STATE(1044), 1, + sym_decorator, + ACTIONS(1947), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1951), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1943), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1959), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1945), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 13, + anon_sym_module, + anon_sym_unpack, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 15, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_POUND, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [26032] = 18, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1949), 1, anon_sym_AMP_AMP_AMP, + ACTIONS(1953), 1, + anon_sym_STAR_STAR, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(1971), 1, + anon_sym_AMP_AMP, + ACTIONS(1973), 1, anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1977), 1, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + STATE(1045), 1, + sym_decorator, + ACTIONS(1947), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1951), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(1943), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1959), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + ACTIONS(1945), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 12, + anon_sym_module, + anon_sym_unpack, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + anon_sym_PIPE_PIPE, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1812), 14, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_POUND, anon_sym_COLON_GT, - [76933] = 7, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [26127] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1663), 1, - aux_sym_variant_type_repeat1, - STATE(1665), 1, + STATE(1046), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1226), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -161842,19 +112209,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1228), 38, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161872,20 +112247,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [76996] = 7, + anon_sym_with, + [26198] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1642), 1, - aux_sym_variant_type_repeat1, - STATE(1666), 1, + STATE(1047), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1266), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -161898,19 +112274,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1268), 38, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161928,20 +112312,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [77059] = 7, + anon_sym_with, + [26269] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1642), 1, - aux_sym_variant_type_repeat1, - STATE(1667), 1, + STATE(1048), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1357), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -161954,19 +112339,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1359), 38, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -161984,43 +112377,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [77122] = 7, + anon_sym_with, + [26340] = 40, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1667), 1, - aux_sym_variant_type_repeat1, - STATE(1668), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1117), 1, + anon_sym_TILDE, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1618), 1, + anon_sym_DOT, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1049), 1, + sym_decorator, + STATE(1057), 1, + sym_uncurry, + STATE(1061), 1, + sym_record_type, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3808), 1, + sym__type, + STATE(3978), 1, + sym_function_type_parameter, + STATE(3981), 1, + sym_labeled_parameter, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [26478] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1985), 1, + anon_sym_else, + STATE(1083), 1, + sym_else_if_clause, + STATE(1050), 2, sym_decorator, + aux_sym_if_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1338), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1340), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -162040,27 +112541,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [77185] = 8, + sym__escape_identifier, + [26552] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2648), 1, - anon_sym_as, - STATE(1669), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1140), 1, + anon_sym_LPAREN, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1051), 1, sym_decorator, + STATE(1053), 1, + sym__reserved_identifier, + STATE(3888), 1, + sym_formal_parameters, + STATE(4307), 1, + sym__definition_signature, + STATE(4308), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1353), 12, + ACTIONS(1143), 13, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162068,18 +112584,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1351), 28, + ACTIONS(1138), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162097,26 +112614,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [77250] = 7, + [26638] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1652), 1, - aux_sym_variant_type_repeat1, - STATE(1670), 1, + STATE(1052), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 14, + ACTIONS(1143), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -162125,17 +112640,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 27, + ACTIONS(1138), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_in, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162153,26 +112678,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [77313] = 7, + [26708] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1653), 1, - aux_sym_variant_type_repeat1, - STATE(1671), 1, + STATE(1053), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 14, + ACTIONS(1428), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -162181,17 +112704,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 27, + ACTIONS(1430), 37, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_in, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162209,24 +112742,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [77376] = 9, + [26778] = 38, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(127), 1, + anon_sym_module, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1164), 1, + anon_sym_RPAREN, + ACTIONS(1166), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1612), 1, + anon_sym_LPAREN, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + STATE(1035), 1, + sym_function_type, + STATE(1054), 1, + sym_decorator, + STATE(1061), 1, + sym_record_type, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3416), 1, + sym_module_expression, + STATE(3615), 1, + sym__type, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [26911] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2701), 1, - anon_sym_EQ_GT, - STATE(1672), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1140), 1, + anon_sym_LPAREN, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1055), 1, sym_decorator, + STATE(3888), 1, + sym_formal_parameters, + STATE(4074), 1, + sym__definition_signature, + STATE(4075), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1143), 13, + anon_sym_EQ, + anon_sym_and, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -162238,18 +112879,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 28, + ACTIONS(1138), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162267,43 +112908,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [77443] = 6, + [26996] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1673), 1, + STATE(1056), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1468), 16, + ACTIONS(1445), 19, + anon_sym_COLON, + anon_sym_EQ, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_async, - anon_sym_as, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1466), 26, + sym__identifier, + ACTIONS(1447), 31, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162322,100 +112971,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [77504] = 7, + [27065] = 39, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1674), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1117), 1, + anon_sym_TILDE, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1618), 1, + anon_sym_DOT, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1057), 1, sym_decorator, - STATE(1743), 1, - aux_sym_variant_type_repeat1, + STATE(1061), 1, + sym_record_type, + STATE(1291), 1, + sym_uncurry, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3739), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4043), 1, + sym_labeled_parameter, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1318), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [77566] = 10, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [27200] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2500), 1, - anon_sym_LPAREN, - ACTIONS(2703), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(1675), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + STATE(1058), 1, sym_decorator, - STATE(1830), 1, - sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, + ACTIONS(1396), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 25, + sym__identifier, + ACTIONS(1398), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -162435,43 +113131,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [77634] = 6, + sym__escape_identifier, + [27273] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1676), 1, + STATE(1059), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1305), 14, + ACTIONS(1453), 19, anon_sym_COLON, + anon_sym_EQ, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1303), 27, + sym__identifier, + ACTIONS(1455), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162489,43 +113194,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [77694] = 6, + sym__escape_identifier, + [27342] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1677), 1, + STATE(1060), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1503), 14, + ACTIONS(1449), 19, anon_sym_COLON, + anon_sym_EQ, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1501), 27, + sym__identifier, + ACTIONS(1451), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162543,28 +113257,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [77754] = 9, + sym__escape_identifier, + [27411] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2634), 1, + ACTIONS(1240), 1, anon_sym_EQ_GT, - STATE(1678), 1, + STATE(1061), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1276), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162572,17 +113286,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 27, + ACTIONS(1279), 35, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162600,45 +113321,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [77820] = 8, + anon_sym_with, + [27482] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2670), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(1679), 1, + STATE(1062), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1521), 20, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_else, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 27, + anon_sym_with, + sym__identifier, + ACTIONS(1523), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162656,25 +113384,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [77884] = 6, + sym__escape_identifier, + [27551] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1680), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1140), 1, + anon_sym_LPAREN, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1063), 1, sym_decorator, + STATE(3888), 1, + sym_formal_parameters, + STATE(4123), 1, + sym__definition_signature, + STATE(4124), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1353), 14, + ACTIONS(1143), 15, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_PIPE, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162682,17 +113429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1351), 27, - anon_sym_LPAREN, + ACTIONS(1138), 26, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162710,41 +113456,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [77944] = 6, + [27636] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1681), 1, + STATE(1064), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1293), 14, + ACTIONS(1513), 20, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_else, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1291), 27, + anon_sym_with, + sym__identifier, + ACTIONS(1515), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -162764,43 +113518,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78004] = 6, + sym__escape_identifier, + [27705] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1682), 1, + STATE(1065), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1362), 14, + ACTIONS(1457), 19, anon_sym_COLON, + anon_sym_EQ, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1360), 27, + sym__identifier, + ACTIONS(1459), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162818,24 +113581,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78064] = 6, + sym__escape_identifier, + [27774] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1683), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1140), 1, + anon_sym_LPAREN, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1066), 1, sym_decorator, + STATE(3888), 1, + sym_formal_parameters, + STATE(4091), 1, + sym__definition_signature, + STATE(4092), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1464), 14, - anon_sym_COLON, + ACTIONS(1143), 14, + anon_sym_EQ, + anon_sym_and, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -162844,17 +113625,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1462), 27, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1138), 27, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162872,19 +113653,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78124] = 6, + [27859] = 38, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1684), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(1994), 1, + anon_sym_private, + ACTIONS(1996), 1, + anon_sym_DOT_DOT, + ACTIONS(1998), 1, + anon_sym_PIPE, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + STATE(1067), 1, sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2754), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2955), 1, + sym__type, + STATE(3231), 1, + sym_extensible_type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2852), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1656), 13, - anon_sym_COLON, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [27991] = 14, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1140), 1, + anon_sym_LPAREN, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1068), 1, + sym_decorator, + STATE(3888), 1, + sym_formal_parameters, + STATE(4276), 1, + sym__definition_signature, + STATE(4277), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1143), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -162897,18 +113789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1654), 28, + ACTIONS(1138), 27, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162926,24 +113817,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78184] = 6, + [28075] = 38, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1685), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(1996), 1, + anon_sym_DOT_DOT, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2012), 1, + anon_sym_private, + ACTIONS(2014), 1, + anon_sym_PIPE, + STATE(1069), 1, + sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2759), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2913), 1, + sym__type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3231), 1, + sym_extensible_type, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4376), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2895), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [28207] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1070), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1519), 14, + ACTIONS(1550), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -162952,17 +113937,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1517), 27, + ACTIONS(1552), 35, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -162980,24 +113973,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78244] = 6, + [28275] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1686), 1, + STATE(1071), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1472), 14, + ACTIONS(1546), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -163006,17 +113999,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1470), 27, + ACTIONS(1548), 35, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -163034,41 +114035,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78304] = 6, + [28343] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1687), 1, + STATE(1072), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1405), 14, + ACTIONS(1534), 19, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_else, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1403), 27, + sym__identifier, + ACTIONS(1536), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -163088,43 +114096,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78364] = 8, + sym__escape_identifier, + [28411] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2705), 1, - anon_sym_PIPE, - STATE(1688), 1, + ACTIONS(1181), 1, + sym__identifier, + ACTIONS(2016), 1, + anon_sym_DOT, + STATE(1073), 1, sym_decorator, - STATE(1726), 1, - aux_sym_variant_type_repeat1, + ACTIONS(2019), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1179), 17, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_catch, + anon_sym_as, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1177), 28, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -163144,43 +114162,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78428] = 8, + [28485] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2705), 1, - anon_sym_PIPE, - STATE(1689), 1, + ACTIONS(2021), 1, + anon_sym_LPAREN, + STATE(1074), 1, sym_decorator, - STATE(1727), 1, - aux_sym_variant_type_repeat1, + STATE(1089), 1, + sym_variant_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1517), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1519), 29, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -163200,25 +114225,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78492] = 6, + sym__escape_identifier, + [28557] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1690), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1140), 1, + anon_sym_LPAREN, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1075), 1, sym_decorator, + STATE(3888), 1, + sym_formal_parameters, + STATE(4317), 1, + sym__definition_signature, + STATE(4318), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1409), 14, + ACTIONS(1143), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163226,17 +114269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1407), 27, - anon_sym_LPAREN, + ACTIONS(1138), 26, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -163254,24 +114296,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78552] = 6, + [28641] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1691), 1, + STATE(1076), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1413), 14, + ACTIONS(1590), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -163280,17 +114322,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1411), 27, + ACTIONS(1592), 35, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -163308,28 +114358,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78612] = 8, + [28709] = 38, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2707), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(1996), 1, + anon_sym_DOT_DOT, + ACTIONS(1998), 1, anon_sym_PIPE, - STATE(1692), 1, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2023), 1, + anon_sym_private, + STATE(1077), 1, + sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2774), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2948), 1, + sym__type, + STATE(3184), 1, + sym_extensible_type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2852), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [28841] = 38, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(1996), 1, + anon_sym_DOT_DOT, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2014), 1, + anon_sym_PIPE, + ACTIONS(2025), 1, + anon_sym_private, + STATE(1078), 1, + sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2760), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2928), 1, + sym__type, + STATE(3184), 1, + sym_extensible_type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4376), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2895), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [28973] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1079), 1, sym_decorator, - STATE(1694), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, + ACTIONS(1538), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163337,16 +114572,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 26, + ACTIONS(1540), 35, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -163364,43 +114608,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78676] = 8, + [29041] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2707), 1, - anon_sym_PIPE, - STATE(1693), 1, + STATE(1080), 1, sym_decorator, - STATE(1694), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 13, + ACTIONS(1234), 18, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_catch, + anon_sym_as, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 26, + sym__identifier, + ACTIONS(1236), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -163420,27 +114668,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78740] = 7, + aux_sym_type_identifier_token1, + sym__escape_identifier, + [29109] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2709), 1, - anon_sym_PIPE, - STATE(1694), 2, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(2027), 1, + anon_sym_DOT, + STATE(1081), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 13, + ACTIONS(1183), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163448,16 +114700,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 26, - anon_sym_LPAREN, + ACTIONS(1185), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_catch, anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -163475,41 +114733,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78802] = 6, + anon_sym_with, + [29181] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1695), 1, + ACTIONS(2021), 1, + anon_sym_LPAREN, + STATE(1082), 1, sym_decorator, + STATE(1107), 1, + sym_variant_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 14, + ACTIONS(1489), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 27, - anon_sym_LPAREN, + sym__identifier, + ACTIONS(1491), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -163529,42 +114797,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78862] = 7, + sym__escape_identifier, + [29253] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1696), 1, + STATE(1083), 1, sym_decorator, - STATE(1744), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1473), 19, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_else, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1475), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -163584,40 +114859,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78924] = 6, + sym__escape_identifier, + [29321] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1697), 1, + ACTIONS(2029), 1, + anon_sym_LPAREN, + STATE(1084), 1, sym_decorator, + STATE(1098), 1, + sym__extension_expression_payload, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1668), 13, + ACTIONS(1507), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1666), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1509), 29, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -163638,41 +114923,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [78984] = 6, + sym__escape_identifier, + [29393] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1698), 1, + STATE(1085), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1468), 14, + ACTIONS(1554), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1466), 27, + sym__identifier, + ACTIONS(1556), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -163692,43 +114984,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79044] = 8, + sym__escape_identifier, + [29460] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1337), 1, - anon_sym_LPAREN, - ACTIONS(1340), 1, - anon_sym_DOT, - STATE(1699), 1, + STATE(1086), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1301), 13, + ACTIONS(1746), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1299), 26, + sym__identifier, + ACTIONS(1748), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -163748,45 +115045,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79108] = 8, + sym__escape_identifier, + [29527] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - STATE(1700), 1, + STATE(1087), 1, sym_decorator, - ACTIONS(2525), 2, - anon_sym_DOT, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 14, + ACTIONS(1754), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1258), 24, + sym__identifier, + ACTIONS(1756), 30, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -163804,42 +115106,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79172] = 6, + sym__escape_identifier, + [29594] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1701), 1, + STATE(1088), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1226), 15, - anon_sym_EQ, + ACTIONS(1528), 18, + anon_sym_COLON, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1221), 26, + sym__identifier, + ACTIONS(1530), 30, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -163858,41 +115168,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [79232] = 6, + [29661] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1702), 1, + STATE(1089), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1495), 14, + ACTIONS(1558), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1493), 27, + sym__identifier, + ACTIONS(1560), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -163912,44 +115228,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79292] = 10, + sym__escape_identifier, + [29728] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2712), 1, - anon_sym_LPAREN, - ACTIONS(2714), 1, - anon_sym_DOT, - ACTIONS(2716), 1, - anon_sym_LBRACK, - STATE(1703), 1, + STATE(1090), 1, sym_decorator, - STATE(1790), 1, - sym_call_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1563), 12, + ACTIONS(1600), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1559), 25, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1602), 30, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -163970,44 +115289,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79360] = 10, + sym__escape_identifier, + [29795] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2721), 1, - anon_sym_COLON, - ACTIONS(2724), 1, - anon_sym_PIPE, - ACTIONS(2726), 1, - anon_sym_as, - STATE(1704), 1, + STATE(1091), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2718), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1799), 11, + ACTIONS(1758), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 23, + sym__identifier, + ACTIONS(1760), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -164028,44 +115350,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79428] = 10, + sym__escape_identifier, + [29862] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2731), 1, - anon_sym_COLON, - ACTIONS(2734), 1, - anon_sym_PIPE, - ACTIONS(2736), 1, - anon_sym_as, - STATE(1705), 1, + STATE(1092), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2728), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1803), 11, + ACTIONS(1910), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 23, + sym__identifier, + ACTIONS(1912), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -164086,40 +115411,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79496] = 6, + sym__escape_identifier, + [29929] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1706), 1, + STATE(1093), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1927), 13, - anon_sym_EQ, + ACTIONS(1852), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1925), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1854), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -164140,41 +115472,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79556] = 6, + sym__escape_identifier, + [29996] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1707), 1, + STATE(1094), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1476), 14, + ACTIONS(1762), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1474), 27, + sym__identifier, + ACTIONS(1764), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -164194,43 +115533,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79616] = 8, + sym__escape_identifier, + [30063] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2707), 1, - anon_sym_PIPE, - STATE(1692), 1, - aux_sym_variant_type_repeat1, - STATE(1708), 1, + STATE(1095), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 13, + ACTIONS(1766), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 26, + sym__identifier, + ACTIONS(1768), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -164250,43 +115594,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79680] = 8, + sym__escape_identifier, + [30130] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2707), 1, - anon_sym_PIPE, - STATE(1693), 1, - aux_sym_variant_type_repeat1, - STATE(1709), 1, + STATE(1096), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, + ACTIONS(1604), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 26, + sym__identifier, + ACTIONS(1606), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -164306,42 +115655,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79744] = 7, + sym__escape_identifier, + [30197] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1694), 1, - aux_sym_variant_type_repeat1, - STATE(1710), 1, + STATE(1097), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 14, + ACTIONS(1856), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 26, + sym__identifier, + ACTIONS(1858), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -164361,42 +115716,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79806] = 7, + sym__escape_identifier, + [30264] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1694), 1, - aux_sym_variant_type_repeat1, - STATE(1711), 1, + STATE(1098), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 14, + ACTIONS(1636), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 26, + sym__identifier, + ACTIONS(1638), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -164416,45 +115777,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79868] = 11, + sym__escape_identifier, + [30331] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2634), 1, - anon_sym_EQ_GT, - ACTIONS(2741), 1, - anon_sym_as, - STATE(1712), 1, + STATE(1099), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2738), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1432), 11, + ACTIONS(1770), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 23, + sym__identifier, + ACTIONS(1772), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -164475,41 +115838,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [79938] = 7, + sym__escape_identifier, + [30398] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2743), 1, - sym_regex_flags, - STATE(1713), 1, + STATE(1100), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1601), 13, - anon_sym_and, + ACTIONS(1774), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1599), 27, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1776), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -164530,42 +115899,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [80000] = 8, + sym__escape_identifier, + [30465] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2745), 1, - anon_sym_as, - STATE(1714), 1, + STATE(1101), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1353), 14, + ACTIONS(1778), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1351), 25, + sym__identifier, + ACTIONS(1780), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -164586,42 +115960,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [80064] = 7, + sym__escape_identifier, + [30532] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1303), 1, - anon_sym_EQ_GT, - STATE(1715), 1, + STATE(1102), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1441), 14, + ACTIONS(1782), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1438), 26, + sym__identifier, + ACTIONS(1784), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -164641,41 +116021,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [80126] = 6, + sym__escape_identifier, + [30599] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1716), 1, + STATE(1103), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 14, + ACTIONS(1640), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 27, + sym__identifier, + ACTIONS(1642), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -164695,42 +116082,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [80186] = 6, + sym__escape_identifier, + [30666] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1717), 1, + STATE(1104), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1541), 15, - anon_sym_EQ, + ACTIONS(1644), 18, + anon_sym_COLON, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1539), 26, + sym__identifier, + ACTIONS(1646), 30, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -164749,41 +116144,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [80246] = 6, + [30733] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1718), 1, + STATE(1105), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1597), 12, + ACTIONS(1926), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1595), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1928), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_else, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -164803,24 +116204,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [80306] = 6, + sym__escape_identifier, + [30800] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1719), 1, + STATE(1106), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1450), 14, + ACTIONS(1143), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -164829,17 +116231,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1448), 27, + ACTIONS(1138), 34, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -164857,41 +116266,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [80366] = 6, + [30867] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1720), 1, + STATE(1107), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 14, + ACTIONS(1562), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1258), 27, + sym__identifier, + ACTIONS(1564), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -164911,42 +116326,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [80426] = 6, + sym__escape_identifier, + [30934] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1721), 1, + STATE(1108), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1527), 15, - anon_sym_EQ, + ACTIONS(1648), 18, + anon_sym_COLON, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1525), 26, + sym__identifier, + ACTIONS(1650), 30, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -164965,122 +116388,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [80486] = 33, + [31001] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2747), 1, - anon_sym_PIPE, - ACTIONS(2749), 1, - anon_sym_POUND, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1722), 1, + STATE(1109), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3765), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4149), 1, - sym_polyvar_identifier, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4408), 1, - sym_polyvar_declaration, - STATE(4642), 1, - sym__inline_type, - STATE(4704), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5077), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [80600] = 6, + ACTIONS(1652), 18, + anon_sym_COLON, + anon_sym_unpack, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_async, + anon_sym_catch, + anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym__identifier, + ACTIONS(1654), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + sym__escape_identifier, + [31068] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1723), 1, + STATE(1110), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1391), 14, + ACTIONS(1790), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1389), 27, + sym__identifier, + ACTIONS(1792), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -165100,123 +116509,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [80660] = 33, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2749), 1, - anon_sym_POUND, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2753), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1724), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3765), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4149), 1, - sym_polyvar_identifier, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4506), 1, - sym_polyvar_declaration, - STATE(4642), 1, - sym__inline_type, - STATE(4704), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5077), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [80774] = 8, + [31135] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1355), 1, - anon_sym_EQ_GT, - ACTIONS(2745), 1, - anon_sym_as, - STATE(1725), 1, + STATE(1111), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1353), 14, + ACTIONS(1937), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1351), 25, + sym__identifier, + ACTIONS(1939), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -165237,43 +116570,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [80838] = 8, + sym__escape_identifier, + [31202] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2705), 1, - anon_sym_PIPE, - STATE(1726), 1, + STATE(1112), 1, sym_decorator, - STATE(1729), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1866), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1868), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -165293,43 +116631,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [80902] = 8, + sym__escape_identifier, + [31269] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2705), 1, - anon_sym_PIPE, - STATE(1727), 1, + STATE(1113), 1, sym_decorator, - STATE(1729), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1656), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1658), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -165349,41 +116692,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [80966] = 6, + sym__escape_identifier, + [31336] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1728), 1, + STATE(1114), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1441), 14, + ACTIONS(1794), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1438), 27, + sym__identifier, + ACTIONS(1796), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -165403,42 +116753,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [81026] = 7, + sym__escape_identifier, + [31403] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2755), 1, - anon_sym_PIPE, - STATE(1729), 2, + STATE(1115), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1210), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1212), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -165458,47 +116814,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [81088] = 10, + sym__escape_identifier, + [31470] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(2758), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(1730), 1, + STATE(1116), 1, sym_decorator, - STATE(2002), 1, - sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, + ACTIONS(1664), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 25, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1666), 30, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -165516,44 +116875,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [81156] = 10, + sym__escape_identifier, + [31537] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2763), 1, - anon_sym_COLON, - ACTIONS(2766), 1, - anon_sym_PIPE, - ACTIONS(2768), 1, - anon_sym_as, - STATE(1731), 1, + STATE(1117), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2760), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1831), 11, + ACTIONS(1566), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 23, + sym__identifier, + ACTIONS(1568), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -165574,24 +116936,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [81224] = 6, + sym__escape_identifier, + [31604] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1732), 1, + ACTIONS(2031), 1, + anon_sym_LPAREN, + ACTIONS(2033), 1, + anon_sym_COLON, + STATE(1010), 1, + sym_type_annotation, + STATE(1118), 1, sym_decorator, + STATE(1217), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1454), 14, - anon_sym_COLON, + ACTIONS(1148), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -165600,17 +116969,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1452), 27, - anon_sym_LPAREN, + ACTIONS(1150), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -165628,41 +117002,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [81284] = 6, + [31679] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1733), 1, + STATE(1119), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1523), 14, + ACTIONS(1570), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1521), 27, + sym__identifier, + ACTIONS(1572), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -165682,41 +117062,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [81344] = 6, + sym__escape_identifier, + [31746] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1734), 1, + STATE(1120), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1511), 14, + ACTIONS(1786), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1509), 27, + sym__identifier, + ACTIONS(1788), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -165736,42 +117123,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [81404] = 6, + sym__escape_identifier, + [31813] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1735), 1, + STATE(1121), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1533), 15, - anon_sym_EQ, + ACTIONS(1574), 18, + anon_sym_COLON, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1531), 26, + sym__identifier, + ACTIONS(1576), 30, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -165790,42 +117185,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [81464] = 6, + [31880] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1736), 1, + STATE(1122), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1537), 15, - anon_sym_EQ, + ACTIONS(1670), 18, + anon_sym_COLON, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1535), 26, + sym__identifier, + ACTIONS(1672), 30, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -165844,43 +117246,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [81524] = 9, + [31947] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2770), 1, - anon_sym_EQ_GT, - STATE(1737), 1, + STATE(1123), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 13, + ACTIONS(1674), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 25, + sym__identifier, + ACTIONS(1676), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -165901,24 +117306,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [81590] = 6, + sym__escape_identifier, + [32014] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1738), 1, + STATE(1124), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1335), 16, + ACTIONS(1678), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, anon_sym_to, anon_sym_downto, @@ -165928,12 +117336,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_type_identifier_token1, - ACTIONS(1333), 25, + sym__identifier, + ACTIONS(1680), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -165955,43 +117368,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [81650] = 6, + [32081] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1739), 1, + STATE(1125), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1226), 14, + ACTIONS(1682), 18, anon_sym_COLON, - anon_sym_EQ, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1221), 27, + sym__identifier, + ACTIONS(1684), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -166009,41 +117428,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [81710] = 6, + sym__escape_identifier, + [32148] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1740), 1, + STATE(1126), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1460), 14, + ACTIONS(1686), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1458), 27, + sym__identifier, + ACTIONS(1688), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -166063,97 +117489,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [81770] = 6, + sym__escape_identifier, + [32215] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1741), 1, + STATE(1127), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1446), 14, + ACTIONS(1690), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1444), 27, + sym__identifier, + ACTIONS(1692), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [81830] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2664), 1, - anon_sym_COLON, - STATE(1734), 1, - sym_type_annotation, - STATE(1742), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1252), 13, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1250), 26, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -166173,42 +117550,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [81894] = 7, + sym__escape_identifier, + [32282] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1729), 1, - aux_sym_variant_type_repeat1, - STATE(1743), 1, + STATE(1128), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1694), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1696), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -166228,42 +117611,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [81956] = 7, + sym__escape_identifier, + [32349] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1729), 1, - aux_sym_variant_type_repeat1, - STATE(1744), 1, + STATE(1129), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1894), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1896), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -166283,41 +117672,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [82018] = 6, + sym__escape_identifier, + [32416] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1745), 1, + STATE(1130), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1275), 14, + ACTIONS(1898), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1273), 27, + sym__identifier, + ACTIONS(1900), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -166337,41 +117733,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [82078] = 8, + sym__escape_identifier, + [32483] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1545), 1, - anon_sym_COLON, - ACTIONS(1547), 1, - anon_sym_EQ_GT, - STATE(1746), 1, + STATE(1131), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1423), 14, + ACTIONS(1698), 18, + anon_sym_COLON, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1421), 25, + sym__identifier, + ACTIONS(1700), 30, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -166393,41 +117795,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [82142] = 6, + [32550] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1747), 1, + STATE(1132), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1593), 12, + ACTIONS(1882), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1591), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1884), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_else, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -166447,122 +117855,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [82202] = 33, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2749), 1, - anon_sym_POUND, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2772), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1748), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3765), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4149), 1, - sym_polyvar_identifier, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4413), 1, - sym_polyvar_declaration, - STATE(4642), 1, - sym__inline_type, - STATE(4704), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5077), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [82316] = 6, + [32617] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1749), 1, + STATE(1133), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1287), 14, + ACTIONS(1702), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1285), 27, + sym__identifier, + ACTIONS(1704), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -166582,41 +117916,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [82376] = 8, + sym__escape_identifier, + [32684] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - STATE(1750), 1, + STATE(1134), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 14, + ACTIONS(1706), 18, + anon_sym_COLON, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1428), 25, + sym__identifier, + ACTIONS(1708), 30, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -166638,42 +117978,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [82440] = 8, + [32751] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2774), 1, - anon_sym_LPAREN, - STATE(1751), 1, + STATE(1135), 1, sym_decorator, - STATE(1904), 1, - sym_variant_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1585), 12, + ACTIONS(1710), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1581), 27, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1712), 30, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -166694,44 +118038,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [82504] = 10, + sym__escape_identifier, + [32818] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2779), 1, - anon_sym_COLON, - ACTIONS(2782), 1, - anon_sym_PIPE, - ACTIONS(2784), 1, - anon_sym_as, - STATE(1752), 1, + STATE(1136), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2776), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1775), 11, + ACTIONS(1722), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 23, + sym__identifier, + ACTIONS(1724), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -166752,123 +118099,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [82572] = 33, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2749), 1, - anon_sym_POUND, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2786), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1753), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3765), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4149), 1, - sym_polyvar_identifier, - STATE(4273), 1, - sym_polyvar_declaration, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4642), 1, - sym__inline_type, - STATE(4704), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5077), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [82686] = 8, + [32885] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2774), 1, - anon_sym_LPAREN, - STATE(1754), 1, + STATE(1137), 1, sym_decorator, - STATE(1903), 1, - sym_variant_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1589), 12, + ACTIONS(1726), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1587), 27, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1728), 30, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -166889,41 +118160,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [82750] = 6, + sym__escape_identifier, + [32952] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1755), 1, + STATE(1138), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1349), 14, + ACTIONS(1396), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1347), 27, + sym__identifier, + ACTIONS(1398), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -166943,41 +118221,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [82810] = 6, + sym__escape_identifier, + [33019] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1756), 1, + STATE(1139), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1507), 14, + ACTIONS(1528), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1505), 27, + sym__identifier, + ACTIONS(1530), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -166997,41 +118282,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [82870] = 6, + sym__escape_identifier, + [33086] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1757), 1, + STATE(1140), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1345), 14, + ACTIONS(1798), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1343), 27, + sym__identifier, + ACTIONS(1800), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -167051,30 +118343,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [82930] = 9, + sym__escape_identifier, + [33153] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - ACTIONS(2522), 1, - anon_sym_DOT, - ACTIONS(2525), 1, - sym__escape_identifier, - STATE(1758), 1, + STATE(1141), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 15, + ACTIONS(1814), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, anon_sym_to, anon_sym_downto, @@ -167084,10 +118373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1258), 23, + sym__identifier, + ACTIONS(1816), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -167108,43 +118404,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [82996] = 6, + sym__escape_identifier, + [33220] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1759), 1, + STATE(1142), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1383), 14, + ACTIONS(1578), 18, anon_sym_COLON, - anon_sym_EQ, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1381), 27, + sym__identifier, + ACTIONS(1580), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -167162,41 +118465,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [83056] = 6, + sym__escape_identifier, + [33287] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1760), 1, + STATE(1143), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1335), 14, + ACTIONS(1594), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1333), 27, + sym__identifier, + ACTIONS(1596), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -167216,41 +118526,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [83116] = 6, + sym__escape_identifier, + [33354] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1761), 1, + STATE(1144), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1417), 14, + ACTIONS(1632), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1415), 27, + sym__identifier, + ACTIONS(1634), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -167270,42 +118587,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [83176] = 7, + sym__escape_identifier, + [33421] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1425), 1, - anon_sym_EQ_GT, - STATE(1762), 1, + STATE(1145), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1423), 14, + ACTIONS(1542), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 26, + sym__identifier, + ACTIONS(1544), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -167325,41 +118648,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [83238] = 6, + sym__escape_identifier, + [33488] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1763), 1, + STATE(1146), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1480), 14, + ACTIONS(1479), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1478), 27, + sym__identifier, + ACTIONS(1481), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -167379,41 +118709,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [83298] = 7, + sym__escape_identifier, + [33555] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2788), 1, - anon_sym_as, - STATE(1764), 1, + STATE(1147), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1577), 12, + ACTIONS(1582), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1575), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1584), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -167434,43 +118770,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [83360] = 9, + sym__escape_identifier, + [33622] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2790), 1, - anon_sym_EQ_GT, - STATE(1765), 1, + STATE(1148), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 12, + ACTIONS(1918), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 26, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1920), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -167491,42 +118831,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [83426] = 7, + sym__escape_identifier, + [33689] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1710), 1, - aux_sym_variant_type_repeat1, - STATE(1766), 1, + STATE(1149), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 14, + ACTIONS(1922), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 26, + sym__identifier, + ACTIONS(1924), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -167546,42 +118892,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [83488] = 7, + sym__escape_identifier, + [33756] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1711), 1, - aux_sym_variant_type_repeat1, - STATE(1767), 1, + STATE(1150), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 14, + ACTIONS(1586), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 26, + sym__identifier, + ACTIONS(1588), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -167601,42 +118953,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [83550] = 8, + sym__escape_identifier, + [33823] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2792), 1, - anon_sym_else, - STATE(1914), 1, - sym_else_if_clause, - STATE(1768), 2, + STATE(1151), 1, sym_decorator, - aux_sym_if_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1484), 13, + ACTIONS(1660), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1482), 25, + sym__identifier, + ACTIONS(1662), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -167657,122 +119014,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [83614] = 33, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2749), 1, - anon_sym_POUND, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2795), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1769), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3765), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4149), 1, - sym_polyvar_identifier, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4371), 1, - sym_polyvar_declaration, - STATE(4642), 1, - sym__inline_type, - STATE(4704), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5077), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [83728] = 6, + [33890] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1770), 1, + STATE(1152), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1491), 14, + ACTIONS(1802), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 27, + sym__identifier, + ACTIONS(1804), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -167792,122 +119075,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [83788] = 33, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2749), 1, - anon_sym_POUND, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2797), 1, - anon_sym_PIPE, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1771), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3765), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4149), 1, - sym_polyvar_identifier, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4458), 1, - sym_polyvar_declaration, - STATE(4642), 1, - sym__inline_type, - STATE(4704), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5077), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [83902] = 6, + [33957] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1772), 1, + STATE(1153), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1379), 14, + ACTIONS(1878), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1377), 27, + sym__identifier, + ACTIONS(1880), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -167927,47 +119136,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [83962] = 10, + sym__escape_identifier, + [34024] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2500), 1, - anon_sym_LPAREN, - ACTIONS(2799), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(1773), 1, + STATE(1154), 1, sym_decorator, - STATE(1816), 1, - sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, + ACTIONS(1730), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 25, + sym__identifier, + ACTIONS(1732), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -167985,47 +119197,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [84030] = 10, + sym__escape_identifier, + [34091] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2500), 1, - anon_sym_LPAREN, - ACTIONS(2801), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(1774), 1, + STATE(1155), 1, sym_decorator, - STATE(1958), 1, - sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, + ACTIONS(1810), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 25, + sym__identifier, + ACTIONS(1812), 30, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -168043,40 +119258,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [84098] = 6, + sym__escape_identifier, + [34158] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1775), 1, + STATE(1156), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1839), 13, - anon_sym_EQ, + ACTIONS(1886), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1837), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1888), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -168097,43 +119319,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [84158] = 9, + sym__escape_identifier, + [34225] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2567), 1, - anon_sym_EQ_GT, - STATE(1776), 1, + STATE(1157), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1734), 18, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 27, - sym__automatic_semicolon, - anon_sym_SEMI, + sym__identifier, + ACTIONS(1736), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -168154,41 +119380,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [84224] = 6, + sym__escape_identifier, + [34292] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1777), 1, + STATE(1158), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1301), 14, + ACTIONS(1738), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1299), 27, + sym__identifier, + ACTIONS(1740), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -168208,41 +119441,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [84284] = 6, + sym__escape_identifier, + [34359] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1778), 1, + STATE(1159), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1515), 14, + ACTIONS(1742), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1513), 27, + sym__identifier, + ACTIONS(1744), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -168262,41 +119502,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [84344] = 6, + sym__escape_identifier, + [34426] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1779), 1, + STATE(1160), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1366), 14, + ACTIONS(1750), 18, anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_catch, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1364), 27, + sym__identifier, + ACTIONS(1752), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -168316,18 +119563,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [84404] = 6, + sym__escape_identifier, + [34493] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1780), 1, + STATE(1161), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1835), 12, + ACTIONS(1218), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -168340,16 +119590,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1833), 28, + ACTIONS(1220), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -168369,18 +119623,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [84463] = 6, + anon_sym_with, + [34559] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1781), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2041), 1, + anon_sym_GT, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + STATE(1162), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3757), 1, + sym__type, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [34685] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(1994), 1, + anon_sym_private, + ACTIONS(1998), 1, + anon_sym_PIPE, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + STATE(1163), 1, + sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2955), 1, + sym__type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2852), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [34811] = 9, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1254), 1, + anon_sym_COLON, + ACTIONS(2027), 1, + anon_sym_with, + STATE(1164), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1312), 12, + ACTIONS(1251), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + ACTIONS(1183), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -168393,18 +119836,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1310), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1185), 30, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -168422,25 +119867,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [84522] = 6, + [34883] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1782), 1, + ACTIONS(2031), 1, + anon_sym_LPAREN, + ACTIONS(2055), 1, + anon_sym_COLON, + STATE(1010), 1, + sym_type_annotation, + STATE(1165), 1, sym_decorator, + STATE(1319), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1226), 14, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(1148), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168448,16 +119899,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1221), 26, - anon_sym_LPAREN, + ACTIONS(1150), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -168475,18 +119931,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [84581] = 6, + [34957] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1783), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2012), 1, + anon_sym_private, + ACTIONS(2014), 1, + anon_sym_PIPE, + STATE(1166), 1, + sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2913), 1, + sym__type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4376), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2895), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [35083] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2057), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1167), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [35209] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1168), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1863), 12, + ACTIONS(1183), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -168499,16 +120137,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1861), 28, + ACTIONS(1185), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -168528,1842 +120170,2724 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [84640] = 6, + anon_sym_with, + [35275] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2059), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1169), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [35401] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2061), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1170), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [35527] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2063), 1, + anon_sym_GT, + STATE(1171), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3757), 1, + sym__type, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [35653] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(1998), 1, + anon_sym_PIPE, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2065), 1, + anon_sym_private, + STATE(1172), 1, + sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2958), 1, + sym__type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2852), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [35779] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1784), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(1998), 1, + anon_sym_PIPE, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2023), 1, + anon_sym_private, + STATE(1173), 1, sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2948), 1, + sym__type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2852), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1783), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1781), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [84699] = 32, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [35905] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, + ACTIONS(129), 1, anon_sym_type, - ACTIONS(209), 1, + ACTIONS(205), 1, anon_sym_module, - ACTIONS(1993), 1, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1999), 1, + ACTIONS(1616), 1, anon_sym_unpack, - ACTIONS(2007), 1, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, + ACTIONS(1630), 1, sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, - anon_sym_POUND, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, + ACTIONS(2067), 1, + anon_sym_RPAREN, + STATE(1035), 1, sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1785), 1, + STATE(1061), 1, + sym_record_type, + STATE(1174), 1, sym_decorator, - STATE(2895), 1, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, sym_type_identifier_path, - STATE(2914), 1, + STATE(2537), 1, sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, sym_module_identifier, - STATE(3765), 1, + STATE(3270), 1, aux_sym_polymorphic_type_repeat1, - STATE(4149), 1, - sym_polyvar_identifier, - STATE(4326), 1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, sym_module_primary_expression, - STATE(4494), 1, - sym_polyvar_declaration, - STATE(4642), 1, - sym__inline_type, - STATE(4704), 1, + STATE(4231), 1, sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5077), 1, + STATE(4258), 1, sym_function_type_parameters, - ACTIONS(2009), 2, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, anon_sym_LBRACK_GT, anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, sym_module_unpack, sym_parenthesized_module_expression, sym_module_identifier_path, sym_functor_use, - STATE(1047), 9, + STATE(1014), 8, sym_polymorphic_type, sym_tuple_type, sym_polyvar_type, - sym_record_type, sym_object_type, sym_generic_type, sym__as_aliasing_non_function_inline_type, sym_module_pack, sym_unit, - [84810] = 6, + [36031] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1786), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1987), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1985), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, anon_sym_LPAREN, + ACTIONS(2069), 1, anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [84869] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1787), 1, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1175), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1847), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1845), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [84928] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [36157] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1788), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1767), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1765), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, anon_sym_LPAREN, + ACTIONS(2071), 1, anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [84987] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1789), 1, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1176), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1644), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1642), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85046] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [36283] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1790), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1787), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1785), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, anon_sym_LPAREN, + ACTIONS(2073), 1, anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85105] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1791), 1, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1177), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1991), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1989), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85164] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [36409] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1792), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2075), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1178), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1907), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1905), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85223] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [36535] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1793), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2077), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1179), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1951), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1949), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85282] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [36661] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1794), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2079), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1180), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1815), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1813), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85341] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [36787] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1795), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1660), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1658), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85400] = 32, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2081), 1, + anon_sym_GT, + STATE(1181), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3757), 1, + sym__type, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [36913] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, + ACTIONS(129), 1, anon_sym_type, - ACTIONS(209), 1, + ACTIONS(205), 1, anon_sym_module, - ACTIONS(1993), 1, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1999), 1, + ACTIONS(1616), 1, anon_sym_unpack, - ACTIONS(2007), 1, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, + ACTIONS(1630), 1, sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, - anon_sym_POUND, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, + ACTIONS(2083), 1, + anon_sym_RPAREN, + STATE(1035), 1, sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1796), 1, + STATE(1061), 1, + sym_record_type, + STATE(1182), 1, sym_decorator, - STATE(2895), 1, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, sym_type_identifier_path, - STATE(2914), 1, + STATE(2537), 1, sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, sym_module_identifier, - STATE(3765), 1, + STATE(3270), 1, aux_sym_polymorphic_type_repeat1, - STATE(4149), 1, - sym_polyvar_identifier, - STATE(4211), 1, - sym_polyvar_declaration, - STATE(4326), 1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, sym_module_primary_expression, - STATE(4642), 1, - sym__inline_type, - STATE(4704), 1, + STATE(4231), 1, sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5077), 1, + STATE(4258), 1, sym_function_type_parameters, - ACTIONS(2009), 2, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, anon_sym_LBRACK_GT, anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, sym_module_unpack, sym_parenthesized_module_expression, sym_module_identifier_path, sym_functor_use, - STATE(1047), 9, + STATE(1014), 8, sym_polymorphic_type, sym_tuple_type, sym_polyvar_type, - sym_record_type, sym_object_type, sym_generic_type, sym__as_aliasing_non_function_inline_type, sym_module_pack, sym_unit, - [85511] = 10, + [37039] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2500), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, anon_sym_LPAREN, - ACTIONS(2803), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(1797), 1, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2085), 1, + anon_sym_GT, + STATE(1183), 1, sym_decorator, - STATE(1946), 1, - sym_variant_parameters, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3757), 1, + sym__type, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 24, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85578] = 6, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [37165] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1798), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1955), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1953), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, anon_sym_LPAREN, + ACTIONS(2087), 1, anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85637] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1799), 1, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1184), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1819), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1817), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85696] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [37291] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1800), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2014), 1, + anon_sym_PIPE, + ACTIONS(2089), 1, + anon_sym_private, + STATE(1185), 1, sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2922), 1, + sym__type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4376), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2895), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85755] = 6, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [37417] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1801), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2091), 1, + anon_sym_GT, + STATE(1186), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3757), 1, + sym__type, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1799), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1797), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85814] = 6, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [37543] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1802), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1664), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1662), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, anon_sym_LPAREN, + ACTIONS(2093), 1, anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85873] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2701), 1, - anon_sym_EQ_GT, - STATE(1803), 1, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1187), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85934] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [37669] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1804), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2095), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1188), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1823), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1821), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [85993] = 7, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [37795] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2805), 1, - sym_regex_flags, - STATE(1805), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2014), 1, + anon_sym_PIPE, + ACTIONS(2025), 1, + anon_sym_private, + STATE(1189), 1, sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2928), 1, + sym__type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4376), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2895), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1601), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1599), 27, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [86054] = 10, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [37921] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2506), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2807), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(1806), 1, + ACTIONS(2097), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1190), 1, sym_decorator, - STATE(2148), 1, - sym_variant_parameters, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [86121] = 10, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [38047] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2809), 1, - anon_sym_LPAREN, - ACTIONS(2811), 1, - anon_sym_DOT, - ACTIONS(2813), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, anon_sym_LBRACK, - STATE(1807), 1, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2099), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1191), 1, sym_decorator, - STATE(1935), 1, - sym_call_arguments, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1563), 14, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1559), 22, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [86188] = 32, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [38173] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, + ACTIONS(129), 1, anon_sym_type, - ACTIONS(209), 1, + ACTIONS(205), 1, anon_sym_module, - ACTIONS(1993), 1, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1999), 1, + ACTIONS(1616), 1, anon_sym_unpack, - ACTIONS(2007), 1, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, + ACTIONS(1630), 1, sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, - anon_sym_POUND, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, + ACTIONS(2101), 1, + anon_sym_RPAREN, + STATE(1035), 1, sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1808), 1, + STATE(1061), 1, + sym_record_type, + STATE(1192), 1, sym_decorator, - STATE(2895), 1, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, sym_type_identifier_path, - STATE(2914), 1, + STATE(2537), 1, sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, sym_module_identifier, - STATE(3765), 1, + STATE(3270), 1, aux_sym_polymorphic_type_repeat1, - STATE(4149), 1, - sym_polyvar_identifier, - STATE(4326), 1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, sym_module_primary_expression, - STATE(4542), 1, - sym_polyvar_declaration, - STATE(4642), 1, - sym__inline_type, - STATE(4704), 1, + STATE(4231), 1, sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5077), 1, + STATE(4258), 1, sym_function_type_parameters, - ACTIONS(2009), 2, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, anon_sym_LBRACK_GT, anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, sym_module_unpack, sym_parenthesized_module_expression, sym_module_identifier_path, sym_functor_use, - STATE(1047), 9, + STATE(1014), 8, sym_polymorphic_type, sym_tuple_type, sym_polyvar_type, - sym_record_type, sym_object_type, sym_generic_type, sym__as_aliasing_non_function_inline_type, sym_module_pack, sym_unit, - [86299] = 7, + [38299] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2815), 1, - anon_sym_as, - STATE(1809), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2103), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1193), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1577), 14, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1575), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [86360] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [38425] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1810), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2105), 1, + anon_sym_GT, + STATE(1194), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3757), 1, + sym__type, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1895), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1893), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [86419] = 8, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [38551] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2817), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, anon_sym_LPAREN, - STATE(1811), 1, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2107), 1, + anon_sym_GT, + STATE(1195), 1, sym_decorator, - STATE(1951), 1, - sym_variant_arguments, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3757), 1, + sym__type, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1585), 14, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1581), 24, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [86482] = 32, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [38677] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, + ACTIONS(129), 1, anon_sym_type, - ACTIONS(209), 1, + ACTIONS(205), 1, anon_sym_module, - ACTIONS(1993), 1, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1999), 1, + ACTIONS(1616), 1, anon_sym_unpack, - ACTIONS(2007), 1, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, + ACTIONS(1630), 1, sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, - anon_sym_POUND, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, + ACTIONS(2109), 1, + anon_sym_RPAREN, + STATE(1035), 1, sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1812), 1, + STATE(1061), 1, + sym_record_type, + STATE(1196), 1, sym_decorator, - STATE(2895), 1, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, sym_type_identifier_path, - STATE(2914), 1, + STATE(2537), 1, sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, sym_module_identifier, - STATE(3765), 1, + STATE(3270), 1, aux_sym_polymorphic_type_repeat1, - STATE(4149), 1, - sym_polyvar_identifier, - STATE(4326), 1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, sym_module_primary_expression, - STATE(4486), 1, - sym_polyvar_declaration, - STATE(4642), 1, - sym__inline_type, - STATE(4704), 1, + STATE(4231), 1, sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5077), 1, + STATE(4258), 1, sym_function_type_parameters, - ACTIONS(2009), 2, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, anon_sym_LBRACK_GT, anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, sym_module_unpack, sym_parenthesized_module_expression, sym_module_identifier_path, sym_functor_use, - STATE(1047), 9, + STATE(1014), 8, sym_polymorphic_type, sym_tuple_type, sym_polyvar_type, - sym_record_type, sym_object_type, sym_generic_type, sym__as_aliasing_non_function_inline_type, sym_module_pack, sym_unit, - [86593] = 6, + [38803] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1813), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1755), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1753), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [86652] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2817), 1, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, anon_sym_LPAREN, - STATE(1814), 1, + ACTIONS(2111), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1197), 1, sym_decorator, - STATE(1964), 1, - sym_variant_arguments, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1589), 14, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1587), 24, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [86715] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [38929] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1815), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2113), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1198), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1571), 15, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_else, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1569), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [86774] = 8, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [39055] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2799), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(1816), 1, + ACTIONS(2115), 1, + anon_sym_LT, + STATE(1009), 1, + sym_type_arguments, + STATE(1199), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, - anon_sym_LT, + ACTIONS(1238), 12, + anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, @@ -170375,11 +122899,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 26, + ACTIONS(1240), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -170402,231 +122933,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [86837] = 6, + [39125] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1817), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1335), 15, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_catch, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_type_identifier_token1, - ACTIONS(1333), 25, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [86896] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(2819), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(1818), 1, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2118), 1, + anon_sym_GT, + STATE(1200), 1, sym_decorator, - STATE(2159), 1, - sym_variant_parameters, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3757), 1, + sym__type, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [86963] = 32, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [39251] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, + ACTIONS(129), 1, anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, - anon_sym_POUND, - ACTIONS(2751), 1, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1819), 1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2120), 1, + anon_sym_GT, + STATE(1201), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, + STATE(2490), 1, sym_type_identifier, - STATE(3322), 1, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, sym_module_identifier, - STATE(3765), 1, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, aux_sym_polymorphic_type_repeat1, - STATE(4149), 1, - sym_polyvar_identifier, - STATE(4309), 1, - sym_polyvar_declaration, - STATE(4326), 1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, sym_module_primary_expression, - STATE(4642), 1, - sym__inline_type, - STATE(4704), 1, + STATE(3757), 1, + sym__type, + STATE(4185), 1, sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5077), 1, + STATE(4218), 1, sym_function_type_parameters, - ACTIONS(2009), 2, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, anon_sym_LBRACK_GT, anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, sym_module_unpack, sym_parenthesized_module_expression, sym_module_identifier_path, sym_functor_use, - STATE(1047), 9, + STATE(3059), 8, sym_polymorphic_type, sym_tuple_type, sym_polyvar_type, - sym_record_type, sym_object_type, sym_generic_type, sym__as_aliasing_non_function_inline_type, sym_module_pack, sym_unit, - [87074] = 6, + [39377] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1820), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1140), 1, + anon_sym_LPAREN, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1202), 1, sym_decorator, + STATE(3888), 1, + sym_formal_parameters, + STATE(4186), 1, + sym__definition_signature, + STATE(4187), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1751), 12, + ACTIONS(1143), 14, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1749), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, + ACTIONS(1138), 24, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -170644,25 +123181,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87133] = 6, + [39459] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1821), 1, + STATE(1203), 1, sym_decorator, + STATE(1222), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1527), 14, + ACTIONS(1193), 13, anon_sym_COLON, - anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170670,16 +123208,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 26, + ACTIONS(1195), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -170697,18 +123242,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87192] = 6, + [39527] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1822), 1, + STATE(1204), 1, sym_decorator, + STATE(1222), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1807), 12, + ACTIONS(1199), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -170721,18 +123269,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1201), 33, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -170750,27 +123303,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87251] = 8, + [39595] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1547), 1, - anon_sym_EQ_GT, - ACTIONS(2821), 1, - anon_sym_COLON, - STATE(1823), 1, + ACTIONS(2122), 1, + anon_sym_PIPE, + STATE(1205), 1, sym_decorator, + STATE(1222), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1423), 12, + ACTIONS(1193), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170778,16 +123331,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 26, + ACTIONS(1195), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -170805,18 +123365,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87314] = 6, + [39665] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1824), 1, + STATE(1203), 1, + aux_sym_variant_type_repeat1, + STATE(1206), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1959), 12, + ACTIONS(1247), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -170829,18 +123392,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1957), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1249), 33, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -170858,32 +123426,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87373] = 10, + [39733] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2580), 1, - anon_sym_PIPE, - ACTIONS(2636), 1, - anon_sym_as, - STATE(1825), 1, + STATE(1204), 1, + aux_sym_variant_type_repeat1, + STATE(1207), 1, sym_decorator, - STATE(3214), 1, - sym_as_aliasing, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2572), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1432), 11, + ACTIONS(1193), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170891,13 +123453,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 23, + ACTIONS(1195), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -170915,18 +123487,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87440] = 6, + [39801] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1826), 1, + STATE(1208), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1851), 12, + ACTIONS(1230), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -170939,16 +123513,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1849), 28, + ACTIONS(1232), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -170968,23 +123546,568 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87499] = 6, + anon_sym_with, + [39867] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1827), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1209), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [39993] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2126), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1210), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [40119] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2128), 1, + anon_sym_GT, + STATE(1211), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3757), 1, + sym__type, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [40245] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2130), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1212), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [40371] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2132), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1213), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [40497] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2134), 1, + anon_sym_GT, + STATE(1214), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3757), 1, + sym__type, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [40623] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2122), 1, + anon_sym_PIPE, + STATE(1205), 1, + aux_sym_variant_type_repeat1, + STATE(1215), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1963), 12, + ACTIONS(1247), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170992,18 +124115,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1961), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1249), 33, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -171021,23 +124149,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87558] = 6, + [40693] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1828), 1, + ACTIONS(2122), 1, + anon_sym_PIPE, + STATE(1216), 1, sym_decorator, + STATE(1221), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1743), 12, + ACTIONS(1193), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171045,18 +124177,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1741), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1195), 33, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -171074,18 +124211,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87617] = 6, + [40763] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1829), 1, + ACTIONS(2033), 1, + anon_sym_COLON, + STATE(1032), 1, + sym_type_annotation, + STATE(1217), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1672), 12, + ACTIONS(1156), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -171098,18 +124239,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1670), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1158), 33, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -171127,27 +124273,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87676] = 8, + [40833] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2703), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(1830), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2136), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1218), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [40959] = 14, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1140), 1, + anon_sym_LPAREN, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1219), 1, sym_decorator, + STATE(3888), 1, + sym_formal_parameters, + STATE(4126), 1, + sym__definition_signature, + STATE(4132), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1143), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171155,16 +124404,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 26, - anon_sym_LPAREN, + ACTIONS(1138), 26, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -171182,23 +124431,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87739] = 6, + [41041] = 36, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1831), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2138), 1, + anon_sym_GT, + STATE(1220), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3757), 1, + sym__type, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [41167] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2122), 1, + anon_sym_PIPE, + STATE(1221), 1, sym_decorator, + STATE(1222), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1967), 12, + ACTIONS(1199), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171206,18 +124549,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1965), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1201), 33, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -171235,23 +124583,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87798] = 6, + [41237] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1832), 1, + ACTIONS(2140), 1, + anon_sym_PIPE, + STATE(1222), 2, sym_decorator, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1676), 12, + ACTIONS(1203), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171259,18 +124610,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1205), 33, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -171288,26 +124644,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87857] = 8, + [41305] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2824), 1, - anon_sym_PIPE, - STATE(1833), 1, + STATE(1223), 1, sym_decorator, - STATE(1835), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1226), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171315,17 +124670,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 27, + ACTIONS(1228), 33, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -171343,26 +124703,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87920] = 8, + anon_sym_with, + [41371] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2014), 1, + anon_sym_PIPE, + ACTIONS(2143), 1, + anon_sym_private, + STATE(1224), 1, + sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2932), 1, + sym__type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4376), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2895), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [41497] = 36, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(1998), 1, + anon_sym_PIPE, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2145), 1, + anon_sym_private, + STATE(1225), 1, + sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2935), 1, + sym__type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2852), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [41623] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2824), 1, - anon_sym_PIPE, - STATE(1834), 1, + STATE(1226), 1, sym_decorator, - STATE(1835), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1318), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171370,17 +124909,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 27, + ACTIONS(1320), 33, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -171398,25 +124942,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [87983] = 7, + anon_sym_with, + [41688] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2826), 1, + ACTIONS(69), 1, + aux_sym_variant_identifier_token1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2149), 1, anon_sym_PIPE, - STATE(1835), 2, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + STATE(1227), 1, + sym_decorator, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(1412), 1, + sym_type_identifier, + STATE(1427), 1, + sym_variant_identifier, + STATE(1443), 1, + sym__type_identifier, + STATE(1563), 1, + sym__non_function_inline_type, + STATE(1652), 1, + sym__type, + STATE(2891), 1, + sym_module_identifier, + STATE(3290), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4343), 1, + sym_abstract_type, + STATE(4369), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1550), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [41811] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1228), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1890), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171424,12 +125056,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 27, + ACTIONS(1892), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -171452,75 +125090,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88044] = 6, + [41876] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1836), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + STATE(1229), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3628), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1622), 15, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_else, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1620), 25, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [41999] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, anon_sym_LPAREN, - anon_sym_DOT, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1230), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4033), 1, + sym__type, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [42122] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_PIPE, + STATE(1022), 1, + sym__type, + STATE(1030), 1, + sym_record_type, + STATE(1035), 1, + sym_function_type, + STATE(1231), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2513), 1, + sym_variant_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2584), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4306), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [88103] = 6, + STATE(2560), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [42245] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1837), 1, + STATE(1232), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1971), 12, + ACTIONS(1918), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -171529,16 +125381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1969), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1920), 31, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -171558,18 +125413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88162] = 6, + [42310] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1838), 1, + STATE(1233), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1563), 12, + ACTIONS(1286), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -171582,16 +125438,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1559), 28, + ACTIONS(1288), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -171611,18 +125471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88221] = 6, + anon_sym_with, + [42375] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1839), 1, + STATE(1234), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1903), 12, + ACTIONS(1326), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -171635,16 +125497,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1901), 28, + ACTIONS(1328), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -171664,31 +125530,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88280] = 9, + anon_sym_with, + [42440] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1235), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3751), 1, + sym__type, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, aux_sym_type_identifier_token1, - ACTIONS(2522), 1, - anon_sym_DOT, - ACTIONS(2525), 1, sym__escape_identifier, - STATE(1840), 1, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [42563] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1236), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 14, + ACTIONS(1310), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_catch, - anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171696,11 +125644,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1258), 23, + ACTIONS(1312), 33, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -171720,18 +125677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88345] = 6, + anon_sym_with, + [42628] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1841), 1, + STATE(1237), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1919), 12, + ACTIONS(1330), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -171744,16 +125703,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1917), 28, + ACTIONS(1332), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -171773,18 +125736,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88404] = 6, + anon_sym_with, + [42693] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1842), 1, + STATE(1238), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1811), 12, + ACTIONS(1290), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -171797,16 +125762,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1809), 28, + ACTIONS(1292), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -171826,23 +125795,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88463] = 6, + anon_sym_with, + [42758] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1843), 1, + ACTIONS(2157), 1, + anon_sym_PIPE, + STATE(1239), 1, sym_decorator, + STATE(1311), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1867), 12, + ACTIONS(1247), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171850,18 +125824,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1249), 32, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -171879,23 +125857,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88522] = 6, + [42827] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1844), 1, + ACTIONS(2157), 1, + anon_sym_PIPE, + STATE(1240), 1, sym_decorator, + STATE(1407), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1652), 12, + ACTIONS(1193), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -171903,18 +125885,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1650), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1195), 32, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -171932,18 +125918,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88581] = 6, + [42896] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1845), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2161), 1, + anon_sym_PIPE, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + STATE(1022), 1, + sym__type, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1199), 1, + sym__type_identifier, + STATE(1241), 1, + sym_decorator, + STATE(1295), 1, + sym__non_function_inline_type, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1411), 1, + sym_type_identifier, + STATE(1471), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3251), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4235), 1, + sym_abstract_type, + STATE(4331), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1612), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [43019] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1242), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1923), 12, + ACTIONS(1294), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -171956,16 +126031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1921), 28, + ACTIONS(1296), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -171985,18 +126064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88640] = 6, + anon_sym_with, + [43084] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1846), 1, + STATE(1243), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1747), 12, + ACTIONS(1357), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -172009,16 +126090,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 28, + ACTIONS(1359), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -172038,72 +126123,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88699] = 7, + anon_sym_with, + [43149] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2668), 1, - anon_sym_EQ_GT, - STATE(1847), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1244), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3604), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 14, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1428), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [88760] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [43272] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1848), 1, + STATE(1245), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1931), 12, + ACTIONS(1345), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -172116,16 +126237,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1929), 28, + ACTIONS(1347), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -172145,18 +126270,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88819] = 6, + anon_sym_with, + [43337] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1849), 1, + STATE(1246), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1935), 12, + ACTIONS(1361), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -172169,16 +126296,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1933), 28, + ACTIONS(1363), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -172198,18 +126329,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88878] = 6, + anon_sym_with, + [43402] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1850), 1, + STATE(1247), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1939), 12, + ACTIONS(1203), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -172222,16 +126355,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1937), 28, + ACTIONS(1205), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -172251,483 +126388,988 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [88937] = 6, + anon_sym_with, + [43467] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1851), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2167), 1, + anon_sym_PIPE, + STATE(1022), 1, + sym__type, + STATE(1030), 1, + sym_record_type, + STATE(1035), 1, + sym_function_type, + STATE(1199), 1, + sym__type_identifier, + STATE(1248), 1, sym_decorator, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1360), 1, + sym__non_function_inline_type, + STATE(1411), 1, + sym_type_identifier, + STATE(1432), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3251), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4141), 1, + sym_function_type_parameters, + STATE(4235), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1560), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1943), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [43590] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(1998), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1941), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + STATE(1249), 1, + sym_decorator, + STATE(1400), 1, + sym__type, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2852), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [43713] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(69), 1, + aux_sym_variant_identifier_token1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + ACTIONS(2002), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [88996] = 6, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2169), 1, + anon_sym_PIPE, + STATE(1250), 1, + sym_decorator, + STATE(1300), 1, + sym_record_type, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1400), 1, + sym__type, + STATE(1405), 1, + sym_function_type, + STATE(1412), 1, + sym_type_identifier, + STATE(1413), 1, + sym_variant_identifier, + STATE(1443), 1, + sym__type_identifier, + STATE(1518), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3290), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4081), 1, + sym_function_type_parameters, + STATE(4343), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1474), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [43836] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(367), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2171), 1, + anon_sym_PIPE, + STATE(1022), 1, + sym__type, + STATE(1030), 1, + sym_record_type, + STATE(1035), 1, + sym_function_type, + STATE(1073), 1, + sym_type_identifier, + STATE(1118), 1, + sym_variant_identifier, + STATE(1199), 1, + sym__type_identifier, + STATE(1251), 1, + sym_decorator, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1360), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3255), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4262), 1, + sym_abstract_type, + STATE(4390), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1206), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [43959] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1852), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2173), 1, + anon_sym_PIPE, + STATE(1252), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2918), 1, + sym_variant_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3079), 1, + sym__type, + STATE(3100), 1, + sym_function_type, + STATE(3124), 1, + sym_record_type, + STATE(3256), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3405), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4099), 1, + sym_function_type_parameters, + STATE(4267), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3228), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1871), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1869), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [89055] = 7, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [44082] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2684), 1, - anon_sym_EQ_GT, - STATE(1853), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2175), 1, + sym__identifier, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2179), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2181), 1, + aux_sym_variant_identifier_token1, + STATE(1253), 1, sym_decorator, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2841), 1, + sym_type_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2911), 1, + sym_variant_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3079), 1, + sym__type, + STATE(3100), 1, + sym_function_type, + STATE(3211), 1, + sym__non_function_inline_type, + STATE(3257), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3856), 1, + sym_module_primary_expression, + STATE(4106), 1, + sym_function_type_parameters, + STATE(4272), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2183), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(3262), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 27, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [89116] = 32, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [44205] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, + ACTIONS(129), 1, anon_sym_type, - ACTIONS(209), 1, + ACTIONS(401), 1, anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, + ACTIONS(1616), 1, anon_sym_unpack, - ACTIONS(2007), 1, + ACTIONS(2181), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2195), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, + ACTIONS(2201), 1, sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2749), 1, - anon_sym_POUND, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1854), 1, + STATE(1254), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, + STATE(1499), 1, sym__type_identifier, - STATE(2935), 1, + STATE(1601), 1, + sym__non_function_inline_type, + STATE(1602), 1, + sym_record_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1662), 1, + sym__type, + STATE(1677), 1, + sym_function_type, + STATE(1777), 1, sym_type_identifier, - STATE(3322), 1, + STATE(1856), 1, + sym_variant_identifier, + STATE(2891), 1, sym_module_identifier, - STATE(3765), 1, + STATE(3261), 1, aux_sym_polymorphic_type_repeat1, - STATE(4149), 1, - sym_polyvar_identifier, - STATE(4326), 1, + STATE(3854), 1, sym_module_primary_expression, - STATE(4565), 1, - sym_polyvar_declaration, - STATE(4642), 1, - sym__inline_type, - STATE(4704), 1, + STATE(4113), 1, + sym_function_type_parameters, + STATE(4274), 1, sym_abstract_type, - STATE(4759), 1, + STATE(4392), 1, sym__function_type_parameter_list, - STATE(5077), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, + ACTIONS(2197), 2, anon_sym_LBRACK_GT, anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2118), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, + STATE(1668), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, sym_module_unpack, sym_parenthesized_module_expression, sym_module_identifier_path, sym_functor_use, - STATE(1047), 9, + STATE(1667), 8, sym_polymorphic_type, sym_tuple_type, sym_polyvar_type, - sym_record_type, sym_object_type, sym_generic_type, sym__as_aliasing_non_function_inline_type, sym_module_pack, sym_unit, - [89227] = 11, + [44328] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2575), 1, - anon_sym_COLON, - ACTIONS(2580), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2209), 1, anon_sym_PIPE, - ACTIONS(2639), 1, - anon_sym_as, - STATE(1855), 1, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2217), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2221), 1, + sym_unit_type, + STATE(743), 1, + sym__type_identifier, + STATE(759), 1, + sym_variant_identifier, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(801), 1, + sym__type, + STATE(804), 1, + sym__non_function_inline_type, + STATE(805), 1, + sym_record_type, + STATE(823), 1, + sym_type_identifier, + STATE(1255), 1, sym_decorator, - STATE(3214), 1, - sym_as_aliasing, - ACTIONS(2572), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(2891), 1, + sym_module_identifier, + STATE(3265), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4146), 1, + sym_function_type_parameters, + STATE(4279), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(827), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 23, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [89296] = 10, + STATE(758), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [44451] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2561), 1, - anon_sym_RBRACE, - ACTIONS(2564), 1, - anon_sym_COLON, - ACTIONS(2569), 1, - anon_sym_COMMA, - STATE(1856), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(435), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2223), 1, + anon_sym_PIPE, + STATE(1256), 1, sym_decorator, - STATE(4489), 1, - aux_sym_record_pattern_repeat1, + STATE(1430), 1, + sym_type_identifier, + STATE(1458), 1, + sym_variant_identifier, + STATE(1499), 1, + sym__type_identifier, + STATE(1601), 1, + sym__non_function_inline_type, + STATE(1602), 1, + sym_record_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1662), 1, + sym__type, + STATE(1677), 1, + sym_function_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3266), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4169), 1, + sym_function_type_parameters, + STATE(4281), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1580), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 25, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [89363] = 6, + STATE(1668), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [44574] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1857), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(713), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2225), 1, + anon_sym_PIPE, + STATE(718), 1, + sym_variant_identifier, + STATE(724), 1, + sym_type_identifier, + STATE(743), 1, + sym__type_identifier, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(801), 1, + sym__type, + STATE(804), 1, + sym__non_function_inline_type, + STATE(805), 1, + sym_record_type, + STATE(1257), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3268), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4214), 1, + sym_function_type_parameters, + STATE(4283), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(747), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1803), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1801), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [89422] = 11, + STATE(758), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [44697] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2712), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(769), 1, + anon_sym_module, + ACTIONS(785), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2227), 1, + sym__identifier, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2231), 1, anon_sym_LPAREN, - ACTIONS(2714), 1, - anon_sym_DOT, - ACTIONS(2716), 1, + ACTIONS(2233), 1, + anon_sym_PIPE, + ACTIONS(2235), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2237), 1, anon_sym_LBRACK, - STATE(1790), 1, - sym_call_arguments, - STATE(1858), 1, + ACTIONS(2243), 1, + sym_unit_type, + STATE(1258), 1, sym_decorator, - ACTIONS(2829), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + STATE(1417), 1, + sym_variant_identifier, + STATE(1437), 1, + sym__type_identifier, + STATE(1457), 1, + sym_type_identifier, + STATE(1488), 1, + sym_type_identifier_path, + STATE(1512), 1, + sym__type, + STATE(1521), 1, + sym__non_function_inline_type, + STATE(1523), 1, + sym_record_type, + STATE(1555), 1, + sym_function_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3271), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3833), 1, + sym_module_primary_expression, + STATE(4289), 1, + sym_abstract_type, + STATE(4295), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2239), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2241), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1464), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1611), 22, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [89491] = 6, + STATE(1553), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1577), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [44820] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1859), 1, + STATE(1259), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1628), 12, + ACTIONS(1381), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -172740,16 +127382,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1626), 28, + ACTIONS(1383), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -172769,189 +127415,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [89550] = 7, + anon_sym_with, + [44885] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2831), 1, - sym_regex_flags, - STATE(1860), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1601), 14, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1599), 25, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, anon_sym_LBRACE, + ACTIONS(1992), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [89611] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1861), 1, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2245), 1, + anon_sym_PIPE, + STATE(1260), 1, sym_decorator, + STATE(1300), 1, + sym_record_type, + STATE(1400), 1, + sym__type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2552), 1, + sym_variant_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2772), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4336), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2663), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1533), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1531), 26, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [89670] = 10, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [45008] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2500), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, anon_sym_LPAREN, - ACTIONS(2833), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(1862), 1, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2247), 1, + anon_sym_PIPE, + STATE(1261), 1, sym_decorator, - STATE(2272), 1, - sym_variant_parameters, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2712), 1, + sym_variant_identifier, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2872), 1, + sym_record_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3022), 1, + sym__type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4358), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2862), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 24, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [45131] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(69), 1, + aux_sym_variant_identifier_token1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [89737] = 6, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2149), 1, + anon_sym_PIPE, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + STATE(1262), 1, + sym_decorator, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1400), 1, + sym__type, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(1412), 1, + sym_type_identifier, + STATE(1427), 1, + sym_variant_identifier, + STATE(1443), 1, + sym__type_identifier, + STATE(1563), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3290), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4343), 1, + sym_abstract_type, + STATE(4369), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1550), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [45254] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1863), 1, + ACTIONS(1389), 1, + anon_sym_EQ_GT, + STATE(1263), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1541), 14, - anon_sym_COLON, + ACTIONS(1385), 13, anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172959,16 +127707,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1539), 26, + ACTIONS(1387), 32, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_PLUS_EQ, + anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -172986,18 +127739,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [89796] = 6, + anon_sym_with, + [45321] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1864), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(367), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2249), 1, + anon_sym_PIPE, + STATE(1022), 1, + sym__type, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1073), 1, + sym_type_identifier, + STATE(1165), 1, + sym_variant_identifier, + STATE(1199), 1, + sym__type_identifier, + STATE(1264), 1, sym_decorator, + STATE(1295), 1, + sym__non_function_inline_type, + STATE(1339), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(3255), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4262), 1, + sym_abstract_type, + STATE(4383), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1286), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [45444] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1265), 1, + sym_decorator, + STATE(1331), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1875), 12, + ACTIONS(1193), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -173010,18 +127855,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1873), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1195), 32, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -173039,71 +127888,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [89855] = 6, + [45511] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1865), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2251), 1, + anon_sym_PIPE, + STATE(1266), 1, sym_decorator, + STATE(1300), 1, + sym_record_type, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1400), 1, + sym__type, + STATE(1405), 1, + sym_function_type, + STATE(1443), 1, + sym__type_identifier, + STATE(1518), 1, + sym__non_function_inline_type, + STATE(1619), 1, + sym_type_identifier, + STATE(1664), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3226), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4107), 1, + sym_abstract_type, + STATE(4120), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2014), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [45634] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2217), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2253), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1611), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + STATE(743), 1, + sym__type_identifier, + STATE(760), 1, + sym_record_type, + STATE(786), 1, + sym__non_function_inline_type, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(812), 1, + sym_variant_identifier, + STATE(823), 1, + sym_type_identifier, + STATE(831), 1, + sym__type, + STATE(1267), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3174), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4170), 1, + sym_abstract_type, + STATE(4313), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(873), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(758), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [45757] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(769), 1, + anon_sym_module, + ACTIONS(785), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2227), 1, + sym__identifier, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2231), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + ACTIONS(2235), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2237), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [89914] = 6, + ACTIONS(2243), 1, + sym_unit_type, + ACTIONS(2255), 1, + anon_sym_PIPE, + STATE(1268), 1, + sym_decorator, + STATE(1426), 1, + sym_variant_identifier, + STATE(1437), 1, + sym__type_identifier, + STATE(1457), 1, + sym_type_identifier, + STATE(1488), 1, + sym_type_identifier_path, + STATE(1498), 1, + sym_record_type, + STATE(1512), 1, + sym__type, + STATE(1517), 1, + sym__non_function_inline_type, + STATE(1555), 1, + sym_function_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3223), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3833), 1, + sym_module_primary_expression, + STATE(4264), 1, + sym_function_type_parameters, + STATE(4285), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2239), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2241), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1497), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1553), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1577), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [45880] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1866), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2257), 1, + anon_sym_PIPE, + STATE(1269), 1, + sym_decorator, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1400), 1, + sym__type, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(1443), 1, + sym__type_identifier, + STATE(1563), 1, + sym__non_function_inline_type, + STATE(1619), 1, + sym_type_identifier, + STATE(1732), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3226), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4107), 1, + sym_abstract_type, + STATE(4360), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2100), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [46003] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1270), 1, sym_decorator, + STATE(1331), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1855), 12, + ACTIONS(1199), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -173116,18 +128267,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1853), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1201), 32, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -173145,71 +128300,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [89973] = 6, + [46070] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1867), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + STATE(1271), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3585), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1537), 14, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1535), 26, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [46193] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2045), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [90032] = 6, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2259), 1, + anon_sym_PIPE, + STATE(1272), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3079), 1, + sym__type, + STATE(3100), 1, + sym_function_type, + STATE(3256), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4267), 1, + sym_abstract_type, + STATE(4386), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3402), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [46316] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1868), 1, + STATE(1273), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1775), 12, + ACTIONS(1392), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -173222,16 +128501,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 28, + ACTIONS(1394), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -173251,22 +128534,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [90091] = 6, + anon_sym_with, + [46381] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1869), 1, + STATE(1274), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1879), 12, + ACTIONS(1922), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -173275,16 +128562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1877), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1924), 31, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -173304,73 +128594,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [90150] = 8, + [46446] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2835), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, anon_sym_LPAREN, - STATE(1870), 1, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2175), 1, + sym__identifier, + ACTIONS(2179), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2181), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2261), 1, + anon_sym_PIPE, + STATE(1275), 1, sym_decorator, - STATE(1948), 1, - sym__extension_expression_payload, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2841), 1, + sym_type_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2902), 1, + sym_variant_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3079), 1, + sym__type, + STATE(3100), 1, + sym_function_type, + STATE(3124), 1, + sym_record_type, + STATE(3214), 1, + sym__non_function_inline_type, + STATE(3232), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3856), 1, + sym_module_primary_expression, + STATE(4244), 1, + sym_abstract_type, + STATE(4389), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2183), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(3135), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1609), 14, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1605), 24, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [90213] = 6, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [46569] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1871), 1, + STATE(1276), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 12, + ACTIONS(1156), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -173383,16 +128707,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 28, + ACTIONS(1158), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -173412,318 +128740,724 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [90272] = 8, + anon_sym_with, + [46634] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2181), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2263), 1, + anon_sym_PIPE, + STATE(1277), 1, + sym_decorator, + STATE(1499), 1, + sym__type_identifier, + STATE(1585), 1, + sym__non_function_inline_type, + STATE(1586), 1, + sym_record_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1662), 1, + sym__type, + STATE(1677), 1, + sym_function_type, + STATE(1777), 1, + sym_type_identifier, + STATE(1999), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3261), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4274), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4396), 1, + sym_function_type_parameters, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2158), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1668), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [46757] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2217), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2265), 1, + anon_sym_PIPE, + STATE(743), 1, + sym__type_identifier, + STATE(760), 1, + sym_record_type, + STATE(786), 1, + sym__non_function_inline_type, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(801), 1, + sym__type, + STATE(812), 1, + sym_variant_identifier, + STATE(823), 1, + sym_type_identifier, + STATE(1278), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3265), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4181), 1, + sym_function_type_parameters, + STATE(4279), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, aux_sym_type_identifier_token1, - STATE(1872), 1, + sym__escape_identifier, + STATE(990), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(758), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [46880] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1279), 1, sym_decorator, - ACTIONS(2525), 2, - anon_sym_DOT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3565), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 14, - anon_sym_and, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [47003] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2257), 1, anon_sym_PIPE, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1258), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [90335] = 8, + STATE(1280), 1, + sym_decorator, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(1443), 1, + sym__type_identifier, + STATE(1563), 1, + sym__non_function_inline_type, + STATE(1619), 1, + sym_type_identifier, + STATE(1652), 1, + sym__type, + STATE(1732), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3226), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4107), 1, + sym_abstract_type, + STATE(4360), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2100), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [47126] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - STATE(1873), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(435), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2267), 1, + anon_sym_PIPE, + STATE(1281), 1, sym_decorator, + STATE(1430), 1, + sym_type_identifier, + STATE(1499), 1, + sym__type_identifier, + STATE(1502), 1, + sym_variant_identifier, + STATE(1585), 1, + sym__non_function_inline_type, + STATE(1586), 1, + sym_record_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1662), 1, + sym__type, + STATE(1677), 1, + sym_function_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3266), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4209), 1, + sym_function_type_parameters, + STATE(4281), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1673), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 13, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [90398] = 32, + STATE(1668), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [47249] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, + ACTIONS(129), 1, anon_sym_type, - ACTIONS(209), 1, + ACTIONS(205), 1, anon_sym_module, - ACTIONS(1993), 1, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(1999), 1, + ACTIONS(1616), 1, anon_sym_unpack, - ACTIONS(2007), 1, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, + ACTIONS(1630), 1, sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(1961), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, - anon_sym_POUND, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, + STATE(1035), 1, sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1874), 1, + STATE(1061), 1, + sym_record_type, + STATE(1282), 1, sym_decorator, - STATE(2895), 1, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, sym_type_identifier_path, - STATE(2914), 1, + STATE(2537), 1, sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, sym_module_identifier, - STATE(3765), 1, + STATE(3270), 1, aux_sym_polymorphic_type_repeat1, - STATE(4149), 1, - sym_polyvar_identifier, - STATE(4326), 1, + STATE(3742), 1, sym_module_primary_expression, - STATE(4463), 1, - sym_polyvar_declaration, - STATE(4642), 1, - sym__inline_type, - STATE(4704), 1, + STATE(4044), 1, + sym__type, + STATE(4231), 1, sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5077), 1, + STATE(4258), 1, sym_function_type_parameters, - ACTIONS(2009), 2, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, anon_sym_LBRACK_GT, anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, sym_module_unpack, sym_parenthesized_module_expression, sym_module_identifier_path, sym_functor_use, - STATE(1047), 9, + STATE(1014), 8, sym_polymorphic_type, sym_tuple_type, sym_polyvar_type, - sym_record_type, sym_object_type, sym_generic_type, sym__as_aliasing_non_function_inline_type, sym_module_pack, sym_unit, - [90509] = 11, + [47372] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2575), 1, - anon_sym_COLON, - ACTIONS(2580), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(713), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2269), 1, anon_sym_PIPE, - ACTIONS(2582), 1, - anon_sym_as, - STATE(1875), 1, + STATE(720), 1, + sym_variant_identifier, + STATE(724), 1, + sym_type_identifier, + STATE(743), 1, + sym__type_identifier, + STATE(760), 1, + sym_record_type, + STATE(786), 1, + sym__non_function_inline_type, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(801), 1, + sym__type, + STATE(1283), 1, sym_decorator, - STATE(3214), 1, - sym_as_aliasing, - ACTIONS(2572), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(2891), 1, + sym_module_identifier, + STATE(3268), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4283), 1, + sym_abstract_type, + STATE(4374), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(750), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 23, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [90578] = 6, + STATE(758), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [47495] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1876), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + STATE(1284), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3491), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1771), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1769), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [90637] = 6, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [47618] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1877), 1, + STATE(1285), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1827), 12, + ACTIONS(1416), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -173736,16 +129470,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1825), 28, + ACTIONS(1418), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -173765,18 +129503,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [90696] = 6, + anon_sym_with, + [47683] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1878), 1, + STATE(1265), 1, + aux_sym_variant_type_repeat1, + STATE(1286), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1632), 12, + ACTIONS(1247), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -173789,18 +129531,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1630), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1249), 32, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -173818,182 +129564,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [90755] = 11, + [47750] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2809), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, anon_sym_LPAREN, - ACTIONS(2811), 1, - anon_sym_DOT, - ACTIONS(2813), 1, + ACTIONS(1998), 1, + anon_sym_PIPE, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, anon_sym_LBRACK, - STATE(1879), 1, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + STATE(1287), 1, sym_decorator, - STATE(1935), 1, - sym_call_arguments, - ACTIONS(2837), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3004), 1, + sym__type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2852), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 14, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1611), 20, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [90824] = 6, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [47873] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1880), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1947), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1945), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(769), 1, + anon_sym_module, + ACTIONS(785), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2227), 1, + sym__identifier, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2231), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + ACTIONS(2235), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2237), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [90883] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1881), 1, + ACTIONS(2243), 1, + sym_unit_type, + ACTIONS(2271), 1, + anon_sym_PIPE, + STATE(1288), 1, sym_decorator, + STATE(1426), 1, + sym_variant_identifier, + STATE(1437), 1, + sym__type_identifier, + STATE(1457), 1, + sym_type_identifier, + STATE(1488), 1, + sym_type_identifier_path, + STATE(1498), 1, + sym_record_type, + STATE(1512), 1, + sym__type, + STATE(1517), 1, + sym__non_function_inline_type, + STATE(1555), 1, + sym_function_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3271), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3833), 1, + sym_module_primary_expression, + STATE(4155), 1, + sym_function_type_parameters, + STATE(4289), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2239), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2241), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1522), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1983), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1981), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [90942] = 6, + STATE(1553), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1577), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [47996] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1882), 1, + STATE(1270), 1, + aux_sym_variant_type_repeat1, + STATE(1289), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1883), 12, + ACTIONS(1193), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -174006,18 +129767,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1195), 32, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -174035,184 +129800,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [91001] = 6, + [48063] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1883), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2014), 1, + anon_sym_PIPE, + STATE(1290), 1, sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2910), 1, + sym__type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4376), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2895), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1831), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1829), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [91060] = 6, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [48186] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1884), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1291), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3948), 1, + sym__type, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1887), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1885), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [91119] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [48309] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1885), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(1998), 1, + anon_sym_PIPE, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + STATE(1292), 1, sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2958), 1, + sym__type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2852), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1911), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1909), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [91178] = 6, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [48432] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1886), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1140), 1, + anon_sym_LPAREN, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1293), 1, sym_decorator, + STATE(3888), 1, + sym_formal_parameters, + STATE(4190), 1, + sym__definition_signature, + STATE(4191), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1593), 15, - anon_sym_unpack, + ACTIONS(1143), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, - anon_sym_else, + anon_sym_catch, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174220,15 +130106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1591), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(1138), 24, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -174246,19 +130131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [91237] = 6, + [48513] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1887), 1, + STATE(1294), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1779), 12, + ACTIONS(1266), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -174271,16 +130156,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 28, + ACTIONS(1268), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -174300,18 +130189,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [91296] = 6, + anon_sym_with, + [48578] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1888), 1, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + ACTIONS(2273), 1, + anon_sym_as, + STATE(1295), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1915), 12, + ACTIONS(1369), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -174324,18 +130219,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1371), 31, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -174353,18 +130251,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [91355] = 6, + [48647] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1889), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + STATE(1296), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3497), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1640), 12, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [48770] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2014), 1, + anon_sym_PIPE, + STATE(1297), 1, + sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2932), 1, + sym__type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4376), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2895), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [48893] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1298), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1322), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -174377,16 +130452,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1638), 28, + ACTIONS(1324), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -174406,24 +130485,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [91414] = 7, + anon_sym_with, + [48958] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1835), 1, - aux_sym_variant_type_repeat1, - STATE(1890), 1, + STATE(1299), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1878), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -174432,17 +130513,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 27, + ACTIONS(1880), 31, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -174460,20 +130545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [91475] = 7, + [49023] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1835), 1, - aux_sym_variant_type_repeat1, - STATE(1891), 1, + STATE(1300), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1276), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -174486,17 +130570,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 27, + ACTIONS(1279), 33, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -174514,20 +130603,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [91536] = 7, + anon_sym_with, + [49088] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1890), 1, - aux_sym_variant_type_repeat1, - STATE(1892), 1, + STATE(1301), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, + ACTIONS(1377), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -174540,12 +130629,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 27, + ACTIONS(1379), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -174568,20 +130663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [91597] = 7, + [49153] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1891), 1, - aux_sym_variant_type_repeat1, - STATE(1893), 1, + STATE(1302), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1334), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -174594,17 +130688,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 27, + ACTIONS(1336), 33, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -174622,26 +130721,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [91658] = 8, + anon_sym_with, + [49218] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2824), 1, - anon_sym_PIPE, - STATE(1833), 1, - aux_sym_variant_type_repeat1, - STATE(1894), 1, + STATE(1303), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1914), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174649,12 +130747,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 27, + ACTIONS(1916), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -174677,26 +130781,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [91721] = 8, + [49283] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2824), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, anon_sym_PIPE, - STATE(1834), 1, - aux_sym_variant_type_repeat1, - STATE(1895), 1, + STATE(1022), 1, + sym__type, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1304), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4189), 1, + sym_abstract_type, + STATE(4354), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2637), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [49406] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2247), 1, + anon_sym_PIPE, + STATE(1305), 1, + sym_decorator, + STATE(1400), 1, + sym__type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2712), 1, + sym_variant_identifier, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2872), 1, + sym_record_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4358), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2862), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [49529] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2175), 1, + sym__identifier, + ACTIONS(2179), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2181), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2277), 1, + anon_sym_PIPE, + STATE(1306), 1, + sym_decorator, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2841), 1, + sym_type_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2902), 1, + sym_variant_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3079), 1, + sym__type, + STATE(3100), 1, + sym_function_type, + STATE(3124), 1, + sym_record_type, + STATE(3214), 1, + sym__non_function_inline_type, + STATE(3257), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3856), 1, + sym_module_primary_expression, + STATE(4254), 1, + sym_function_type_parameters, + STATE(4272), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2183), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(3138), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [49652] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1307), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3621), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [49775] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1308), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1282), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174704,17 +131158,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 27, + ACTIONS(1284), 33, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -174732,23 +131191,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [91784] = 6, + anon_sym_with, + [49840] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1896), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2014), 1, + anon_sym_PIPE, + STATE(1309), 1, sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3004), 1, + sym__type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4376), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2895), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1648), 12, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [49963] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + STATE(1310), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3492), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [50086] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2157), 1, + anon_sym_PIPE, + STATE(1311), 1, + sym_decorator, + STATE(1331), 1, + aux_sym_variant_type_repeat1, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1193), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174756,18 +131396,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1646), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1195), 32, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -174785,18 +131429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [91843] = 6, + [50155] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1897), 1, + STATE(1312), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1899), 12, + ACTIONS(1306), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -174809,18 +131454,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1897), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1308), 33, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -174838,18 +131488,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [91902] = 6, + [50220] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(435), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2279), 1, + anon_sym_PIPE, + STATE(1313), 1, + sym_decorator, + STATE(1430), 1, + sym_type_identifier, + STATE(1499), 1, + sym__type_identifier, + STATE(1502), 1, + sym_variant_identifier, + STATE(1585), 1, + sym__non_function_inline_type, + STATE(1586), 1, + sym_record_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1677), 1, + sym_function_type, + STATE(1819), 1, + sym__type, + STATE(2891), 1, + sym_module_identifier, + STATE(3188), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4219), 1, + sym_abstract_type, + STATE(4377), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1631), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1668), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [50343] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2014), 1, + anon_sym_PIPE, + STATE(1314), 1, + sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2922), 1, + sym__type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4376), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2895), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [50466] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2247), 1, + anon_sym_PIPE, + STATE(1315), 1, + sym_decorator, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2712), 1, + sym_variant_identifier, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2872), 1, + sym_record_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2920), 1, + sym__type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4358), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2862), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [50589] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1316), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3942), 1, + sym__type, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [50712] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1898), 1, + STATE(1317), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1843), 12, + ACTIONS(1377), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -174862,16 +131865,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1841), 28, + ACTIONS(1379), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -174891,76 +131898,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [91961] = 11, + anon_sym_with, + [50777] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2575), 1, - anon_sym_COLON, - ACTIONS(2580), 1, + ACTIONS(69), 1, + aux_sym_variant_identifier_token1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2281), 1, anon_sym_PIPE, - ACTIONS(2639), 1, - anon_sym_as, - STATE(1899), 1, + STATE(1300), 1, + sym_record_type, + STATE(1318), 1, sym_decorator, - STATE(3214), 1, - sym_as_aliasing, - ACTIONS(2839), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1400), 1, + sym__type, + STATE(1405), 1, + sym_function_type, + STATE(1412), 1, + sym_type_identifier, + STATE(1413), 1, + sym_variant_identifier, + STATE(1443), 1, + sym__type_identifier, + STATE(1518), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3288), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4122), 1, + sym_abstract_type, + STATE(4365), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1472), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 23, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [92030] = 6, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [50900] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1900), 1, + ACTIONS(2055), 1, + anon_sym_COLON, + STATE(1032), 1, + sym_type_annotation, + STATE(1319), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1859), 12, + ACTIONS(1156), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -174973,18 +132015,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1158), 32, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -175002,18 +132048,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [92089] = 6, + [50969] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1901), 1, + STATE(1320), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 12, + ACTIONS(1349), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -175026,16 +132073,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 28, + ACTIONS(1351), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -175055,24 +132106,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [92148] = 7, + anon_sym_with, + [51034] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1902), 1, + STATE(1321), 1, sym_decorator, + ACTIONS(1251), 2, + anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1428), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - ACTIONS(1613), 12, + ACTIONS(1183), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -175085,13 +132135,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 23, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1185), 31, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -175109,458 +132167,818 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [92209] = 6, + [51101] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1903), 1, + ACTIONS(69), 1, + aux_sym_variant_identifier_token1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2283), 1, + anon_sym_PIPE, + STATE(1322), 1, sym_decorator, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1400), 1, + sym__type, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(1412), 1, + sym_type_identifier, + STATE(1427), 1, + sym_variant_identifier, + STATE(1443), 1, + sym__type_identifier, + STATE(1563), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3288), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4122), 1, + sym_abstract_type, + STATE(4224), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1547), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1795), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1793), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [92268] = 6, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [51224] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1904), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2181), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2285), 1, + anon_sym_PIPE, + STATE(1323), 1, sym_decorator, + STATE(1499), 1, + sym__type_identifier, + STATE(1585), 1, + sym__non_function_inline_type, + STATE(1586), 1, + sym_record_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1677), 1, + sym_function_type, + STATE(1777), 1, + sym_type_identifier, + STATE(1819), 1, + sym__type, + STATE(1999), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3269), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4109), 1, + sym_abstract_type, + STATE(4282), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2129), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1791), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1789), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [92327] = 11, + STATE(1668), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [51347] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2712), 1, - anon_sym_LPAREN, - ACTIONS(2714), 1, - anon_sym_DOT, - ACTIONS(2716), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, anon_sym_LBRACK, - STATE(1790), 1, - sym_call_arguments, - STATE(1905), 1, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1324), 1, sym_decorator, - ACTIONS(2843), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3633), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1611), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [92396] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [51470] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1906), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + STATE(1325), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3582), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1975), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1973), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [92455] = 9, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [51593] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2578), 1, - anon_sym_EQ_GT, - STATE(1907), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(1998), 1, + anon_sym_PIPE, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + STATE(1326), 1, sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2935), 1, + sym__type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2852), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [92520] = 6, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [51716] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1908), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2287), 1, + anon_sym_PIPE, + STATE(1022), 1, + sym__type, + STATE(1030), 1, + sym_record_type, + STATE(1035), 1, + sym_function_type, + STATE(1327), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2513), 1, + sym_variant_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2584), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4189), 1, + sym_abstract_type, + STATE(4372), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2559), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1891), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1889), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [92579] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [51839] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1909), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2289), 1, + anon_sym_PIPE, + STATE(1300), 1, + sym_record_type, + STATE(1328), 1, sym_decorator, + STATE(1400), 1, + sym__type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2552), 1, + sym_variant_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2772), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4071), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2678), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1979), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1977), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [92638] = 6, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [51962] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1910), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(367), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2291), 1, + anon_sym_PIPE, + STATE(1022), 1, + sym__type, + STATE(1030), 1, + sym_record_type, + STATE(1035), 1, + sym_function_type, + STATE(1073), 1, + sym_type_identifier, + STATE(1118), 1, + sym_variant_identifier, + STATE(1199), 1, + sym__type_identifier, + STATE(1329), 1, sym_decorator, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1360), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3275), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4260), 1, + sym_abstract_type, + STATE(4382), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1215), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1597), 15, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_else, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1595), 25, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [52085] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1330), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3892), 1, + sym__type, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [92697] = 7, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [52208] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1911), 1, + ACTIONS(2293), 1, + anon_sym_PIPE, + STATE(1331), 2, sym_decorator, - STATE(1960), 1, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, + ACTIONS(1203), 12, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175568,15 +132986,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 25, + ACTIONS(1205), 32, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -175594,488 +133019,640 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [92757] = 22, + [52275] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2849), 1, - anon_sym_QMARK, - ACTIONS(2853), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2855), 1, - anon_sym_AMP_AMP, - ACTIONS(2857), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2861), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - ACTIONS(2871), 1, - anon_sym_GT_GT, - ACTIONS(2875), 1, - anon_sym_COLON_GT, - STATE(1912), 1, - sym_decorator, - ACTIONS(2847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2869), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1718), 3, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(713), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, anon_sym_unpack, - anon_sym_async, - aux_sym_value_identifier_token1, - ACTIONS(2863), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2865), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2873), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1716), 7, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, anon_sym_LBRACE, + ACTIONS(2207), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2213), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [92847] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2790), 1, - anon_sym_EQ_GT, - STATE(1913), 1, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2296), 1, + anon_sym_PIPE, + STATE(720), 1, + sym_variant_identifier, + STATE(724), 1, + sym_type_identifier, + STATE(743), 1, + sym__type_identifier, + STATE(760), 1, + sym_record_type, + STATE(786), 1, + sym__non_function_inline_type, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(831), 1, + sym__type, + STATE(1332), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3190), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4253), 1, + sym_abstract_type, + STATE(4381), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(781), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1428), 26, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [92907] = 6, + STATE(758), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [52398] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1914), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_PIPE, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1333), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2757), 1, + sym__type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4189), 1, + sym_abstract_type, + STATE(4354), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2637), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1593), 13, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1591), 26, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [92965] = 22, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [52521] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2849), 1, - anon_sym_QMARK, - ACTIONS(2853), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2855), 1, - anon_sym_AMP_AMP, - ACTIONS(2857), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2861), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - ACTIONS(2871), 1, - anon_sym_GT_GT, - ACTIONS(2875), 1, - anon_sym_COLON_GT, - STATE(1915), 1, - sym_decorator, - ACTIONS(2847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2869), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1722), 3, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, anon_sym_unpack, - anon_sym_async, - aux_sym_value_identifier_token1, - ACTIONS(2863), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2865), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2873), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1720), 7, + ACTIONS(2035), 1, anon_sym_LBRACE, + ACTIONS(2037), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [93055] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1916), 1, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2298), 1, + anon_sym_PIPE, + STATE(1334), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2918), 1, + sym_variant_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3079), 1, + sym__type, + STATE(3100), 1, + sym_function_type, + STATE(3124), 1, + sym_record_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3405), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4185), 1, + sym_abstract_type, + STATE(4385), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3220), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1891), 14, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1889), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [93113] = 6, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [52644] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1917), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2175), 1, + sym__identifier, + ACTIONS(2179), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2181), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2300), 1, + anon_sym_PIPE, + STATE(1335), 1, sym_decorator, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2841), 1, + sym_type_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2911), 1, + sym_variant_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3079), 1, + sym__type, + STATE(3100), 1, + sym_function_type, + STATE(3211), 1, + sym__non_function_inline_type, + STATE(3232), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3856), 1, + sym_module_primary_expression, + STATE(4244), 1, + sym_abstract_type, + STATE(4387), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2183), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(3259), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1597), 13, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1595), 26, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [93171] = 21, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [52767] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2851), 1, - anon_sym_STAR, - ACTIONS(2853), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2855), 1, - anon_sym_AMP_AMP, - ACTIONS(2857), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2861), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - ACTIONS(2871), 1, - anon_sym_GT_GT, - ACTIONS(2875), 1, - anon_sym_COLON_GT, - STATE(1918), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2287), 1, + anon_sym_PIPE, + STATE(1030), 1, + sym_record_type, + STATE(1035), 1, + sym_function_type, + STATE(1336), 1, sym_decorator, - ACTIONS(2847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2869), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2513), 1, + sym_variant_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2584), 1, + sym__non_function_inline_type, + STATE(2757), 1, + sym__type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4189), 1, + sym_abstract_type, + STATE(4372), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2559), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2845), 3, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2863), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2865), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2873), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1991), 5, - anon_sym_unpack, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1989), 8, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [93259] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [52890] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1919), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2302), 1, + anon_sym_PIPE, + STATE(1337), 1, sym_decorator, + STATE(1400), 1, + sym__type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2712), 1, + sym_variant_identifier, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2872), 1, + sym_record_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4102), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2875), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1883), 14, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [53013] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1881), 25, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, anon_sym_LBRACE, + ACTIONS(1992), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(1998), 1, + anon_sym_PIPE, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + STATE(1338), 1, + sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2955), 1, + sym__type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [93317] = 6, + STATE(2852), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [53136] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1920), 1, + STATE(1339), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1907), 14, - anon_sym_unpack, + ACTIONS(1179), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176083,15 +133660,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1905), 25, + ACTIONS(1177), 33, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -176109,139 +133694,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [93375] = 16, + [53201] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2883), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - ACTIONS(2893), 1, - anon_sym_GT_GT, - STATE(1921), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1340), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2891), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2757), 1, + sym__type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2885), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2877), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2895), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 14, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [93453] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [53324] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1922), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2304), 1, + anon_sym_PIPE, + STATE(1022), 1, + sym__type, + STATE(1030), 1, + sym_record_type, + STATE(1035), 1, + sym_function_type, + STATE(1199), 1, + sym__type_identifier, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1341), 1, sym_decorator, + STATE(1360), 1, + sym__non_function_inline_type, + STATE(1411), 1, + sym_type_identifier, + STATE(1432), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3273), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4237), 1, + sym_abstract_type, + STATE(4326), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1566), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1867), 14, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1865), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [93511] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [53447] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1923), 1, + STATE(1342), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1919), 14, - anon_sym_unpack, + ACTIONS(1890), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176249,13 +133897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1917), 25, - anon_sym_LBRACE, + ACTIONS(1892), 31, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -176275,25 +133929,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [93569] = 7, + [53512] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2567), 1, - anon_sym_EQ_GT, - STATE(1924), 1, + STATE(1343), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1894), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176301,15 +133956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 27, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1896), 31, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -176329,46 +133988,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [93629] = 9, + [53577] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - STATE(1925), 1, + STATE(1344), 1, sym_decorator, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1898), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 24, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1900), 31, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -176377,6 +134036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -176384,76 +134047,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [93693] = 6, + [53642] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1926), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1923), 14, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(769), 1, + anon_sym_module, + ACTIONS(785), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1921), 25, + ACTIONS(2227), 1, + sym__identifier, + ACTIONS(2229), 1, anon_sym_LBRACE, + ACTIONS(2231), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2235), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2237), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(2243), 1, + sym_unit_type, + ACTIONS(2255), 1, + anon_sym_PIPE, + STATE(1345), 1, + sym_decorator, + STATE(1426), 1, + sym_variant_identifier, + STATE(1437), 1, + sym__type_identifier, + STATE(1457), 1, + sym_type_identifier, + STATE(1488), 1, + sym_type_identifier_path, + STATE(1498), 1, + sym_record_type, + STATE(1517), 1, + sym__non_function_inline_type, + STATE(1555), 1, + sym_function_type, + STATE(1679), 1, + sym__type, + STATE(2891), 1, + sym_module_identifier, + STATE(3223), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3833), 1, + sym_module_primary_expression, + STATE(4264), 1, + sym_function_type_parameters, + STATE(4285), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2239), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2241), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [93751] = 6, + STATE(1497), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1553), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1577), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [53765] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1927), 1, + STATE(1346), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1911), 14, - anon_sym_unpack, + ACTIONS(1420), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176461,13 +134160,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1909), 25, - anon_sym_LBRACE, + ACTIONS(1422), 33, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -176487,25 +134193,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, + anon_sym_with, + [53830] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1347), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3805), 1, + sym__type, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [93809] = 6, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [53953] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1928), 1, + STATE(1348), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1571), 13, - anon_sym_COLON, + ACTIONS(1432), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176513,14 +134307,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1569), 26, + ACTIONS(1434), 33, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_else, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -176540,304 +134340,817 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [93867] = 6, + anon_sym_with, + [54018] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1929), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2014), 1, + anon_sym_PIPE, + STATE(1349), 1, sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2920), 1, + sym__type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4376), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2895), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1927), 14, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [54141] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1925), 25, + ACTIONS(2181), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, anon_sym_LBRACE, + ACTIONS(2189), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2195), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2306), 1, + anon_sym_PIPE, + STATE(1350), 1, + sym_decorator, + STATE(1499), 1, + sym__type_identifier, + STATE(1601), 1, + sym__non_function_inline_type, + STATE(1602), 1, + sym_record_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1662), 1, + sym__type, + STATE(1677), 1, + sym_function_type, + STATE(1777), 1, + sym_type_identifier, + STATE(1856), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3269), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4109), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4395), 1, + sym_function_type_parameters, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [93925] = 6, + STATE(2097), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1668), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [54264] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1930), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_PIPE, + STATE(1030), 1, + sym_record_type, + STATE(1035), 1, + sym_function_type, + STATE(1351), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2513), 1, + sym_variant_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2584), 1, + sym__non_function_inline_type, + STATE(2757), 1, + sym__type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4306), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2560), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1827), 14, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [54387] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1825), 25, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, anon_sym_LBRACE, + ACTIONS(1992), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2302), 1, + anon_sym_PIPE, + STATE(1352), 1, + sym_decorator, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2712), 1, + sym_variant_identifier, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2872), 1, + sym_record_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3022), 1, + sym__type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4102), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [93983] = 6, + STATE(2875), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [54510] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1931), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2217), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2308), 1, + anon_sym_PIPE, + STATE(743), 1, + sym__type_identifier, + STATE(759), 1, + sym_variant_identifier, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(801), 1, + sym__type, + STATE(804), 1, + sym__non_function_inline_type, + STATE(805), 1, + sym_record_type, + STATE(823), 1, + sym_type_identifier, + STATE(1353), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3174), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4170), 1, + sym_abstract_type, + STATE(4172), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(853), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1622), 13, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1620), 26, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_else, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [94041] = 11, + STATE(758), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [54633] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - STATE(1932), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2310), 1, + anon_sym_PIPE, + STATE(1354), 1, sym_decorator, - ACTIONS(2879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(1443), 1, + sym__type_identifier, + STATE(1563), 1, + sym__non_function_inline_type, + STATE(1619), 1, + sym_type_identifier, + STATE(1652), 1, + sym__type, + STATE(1732), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3280), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4284), 1, + sym_abstract_type, + STATE(4340), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2092), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2885), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1729), 21, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [54756] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(435), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2195), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [94109] = 21, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2312), 1, + anon_sym_PIPE, + STATE(1355), 1, + sym_decorator, + STATE(1430), 1, + sym_type_identifier, + STATE(1458), 1, + sym_variant_identifier, + STATE(1499), 1, + sym__type_identifier, + STATE(1601), 1, + sym__non_function_inline_type, + STATE(1602), 1, + sym_record_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1662), 1, + sym__type, + STATE(1677), 1, + sym_function_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3188), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4135), 1, + sym_function_type_parameters, + STATE(4219), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1573), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1668), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [54879] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2883), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - ACTIONS(2893), 1, - anon_sym_GT_GT, - ACTIONS(2897), 1, - anon_sym_QMARK, - ACTIONS(2899), 1, - anon_sym_AMP_AMP, - ACTIONS(2901), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2905), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2907), 1, - anon_sym_COLON_GT, - STATE(1933), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1022), 1, + sym__type, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1356), 1, sym_decorator, - ACTIONS(2879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2891), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2885), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2877), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2895), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1733), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [55002] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [94197] = 6, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_PIPE, + STATE(1030), 1, + sym_record_type, + STATE(1035), 1, + sym_function_type, + STATE(1357), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2513), 1, + sym_variant_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2584), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3120), 1, + sym__type, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4306), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2560), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [55125] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1934), 1, + STATE(1358), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 14, - anon_sym_unpack, + ACTIONS(1353), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176845,13 +135158,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1611), 25, - anon_sym_LBRACE, + ACTIONS(1355), 33, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -176871,25 +135191,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, + anon_sym_with, + [55190] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1359), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4001), 1, + sym__type, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [94255] = 6, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [55313] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1935), 1, + ACTIONS(1436), 1, + anon_sym_EQ_GT, + ACTIONS(2273), 1, + anon_sym_as, + STATE(1360), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1787), 14, - anon_sym_unpack, + ACTIONS(1369), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176897,15 +135309,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1785), 25, + ACTIONS(1371), 31, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -176923,129 +135341,640 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [94313] = 6, + [55382] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1936), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2314), 1, + anon_sym_PIPE, + STATE(1300), 1, + sym_record_type, + STATE(1361), 1, sym_decorator, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1400), 1, + sym__type, + STATE(1405), 1, + sym_function_type, + STATE(1443), 1, + sym__type_identifier, + STATE(1518), 1, + sym__non_function_inline_type, + STATE(1619), 1, + sym_type_identifier, + STATE(1664), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3280), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4200), 1, + sym_function_type_parameters, + STATE(4284), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2031), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1831), 14, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [55505] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1829), 25, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, anon_sym_LBRACE, + ACTIONS(1992), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2014), 1, + anon_sym_PIPE, + STATE(1362), 1, + sym_decorator, + STATE(1400), 1, + sym__type, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4376), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [94371] = 6, + STATE(2895), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [55628] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1937), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2304), 1, + anon_sym_PIPE, + STATE(1030), 1, + sym_record_type, + STATE(1035), 1, + sym_function_type, + STATE(1199), 1, + sym__type_identifier, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1360), 1, + sym__non_function_inline_type, + STATE(1363), 1, sym_decorator, + STATE(1411), 1, + sym_type_identifier, + STATE(1415), 1, + sym__type, + STATE(1432), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3273), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4237), 1, + sym_abstract_type, + STATE(4326), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1566), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1823), 14, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [55751] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(713), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1821), 25, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, anon_sym_LBRACE, + ACTIONS(2207), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2213), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2316), 1, + anon_sym_PIPE, + STATE(718), 1, + sym_variant_identifier, + STATE(724), 1, + sym_type_identifier, + STATE(743), 1, + sym__type_identifier, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(801), 1, + sym__type, + STATE(804), 1, + sym__non_function_inline_type, + STATE(805), 1, + sym_record_type, + STATE(1364), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3190), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4253), 1, + sym_abstract_type, + STATE(4357), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [94429] = 6, + STATE(745), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(758), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [55874] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1938), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(769), 1, + anon_sym_module, + ACTIONS(785), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2227), 1, + sym__identifier, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2231), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2237), 1, + anon_sym_LBRACK, + ACTIONS(2243), 1, + sym_unit_type, + ACTIONS(2318), 1, + anon_sym_PIPE, + STATE(1365), 1, + sym_decorator, + STATE(1417), 1, + sym_variant_identifier, + STATE(1437), 1, + sym__type_identifier, + STATE(1457), 1, + sym_type_identifier, + STATE(1488), 1, + sym_type_identifier_path, + STATE(1512), 1, + sym__type, + STATE(1521), 1, + sym__non_function_inline_type, + STATE(1523), 1, + sym_record_type, + STATE(1555), 1, + sym_function_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3223), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3833), 1, + sym_module_primary_expression, + STATE(4152), 1, + sym_function_type_parameters, + STATE(4285), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2239), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2241), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1462), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1553), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1577), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [55997] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(367), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2291), 1, + anon_sym_PIPE, + STATE(1030), 1, + sym_record_type, + STATE(1035), 1, + sym_function_type, + STATE(1073), 1, + sym_type_identifier, + STATE(1118), 1, + sym_variant_identifier, + STATE(1199), 1, + sym__type_identifier, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1360), 1, + sym__non_function_inline_type, + STATE(1366), 1, sym_decorator, + STATE(1415), 1, + sym__type, + STATE(2891), 1, + sym_module_identifier, + STATE(3275), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4260), 1, + sym_abstract_type, + STATE(4382), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1215), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1628), 14, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [56120] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2320), 1, + anon_sym_PIPE, + STATE(1022), 1, + sym__type, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1199), 1, + sym__type_identifier, + STATE(1295), 1, + sym__non_function_inline_type, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1367), 1, + sym_decorator, + STATE(1411), 1, + sym_type_identifier, + STATE(1471), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3273), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4217), 1, + sym_function_type_parameters, + STATE(4237), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1650), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [56243] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1368), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1302), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177053,13 +135982,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1626), 25, - anon_sym_LBRACE, + ACTIONS(1304), 33, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -177079,25 +136015,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, + anon_sym_with, + [56308] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2014), 1, + anon_sym_PIPE, + STATE(1369), 1, + sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2913), 1, + sym__type, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4376), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [94487] = 6, + STATE(2895), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [56431] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1939), 1, + STATE(1370), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1975), 14, - anon_sym_unpack, + ACTIONS(1914), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177105,13 +136131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1973), 25, - anon_sym_LBRACE, + ACTIONS(1916), 31, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_if, + anon_sym_when, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -177131,251 +136163,643 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, + [56496] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(1998), 1, + anon_sym_PIPE, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + STATE(1371), 1, + sym_decorator, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2920), 1, + sym__type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2852), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [56619] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1372), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3670), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [56742] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1373), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3966), 1, + sym__type, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [56865] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1374), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3647), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [94545] = 8, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [56988] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2909), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(1998), 1, anon_sym_PIPE, - STATE(1940), 1, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + STATE(1375), 1, sym_decorator, - STATE(1945), 1, - aux_sym_variant_type_repeat1, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2636), 1, + sym_variant_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2915), 1, + sym__type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2852), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1254), 26, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [94607] = 20, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [57111] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2883), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - ACTIONS(2893), 1, - anon_sym_GT_GT, - ACTIONS(2899), 1, - anon_sym_AMP_AMP, - ACTIONS(2901), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2905), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2907), 1, - anon_sym_COLON_GT, - STATE(1941), 1, + ACTIONS(69), 1, + aux_sym_variant_identifier_token1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2283), 1, + anon_sym_PIPE, + STATE(1376), 1, sym_decorator, - ACTIONS(2879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2891), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(1412), 1, + sym_type_identifier, + STATE(1427), 1, + sym_variant_identifier, + STATE(1443), 1, + sym__type_identifier, + STATE(1563), 1, + sym__non_function_inline_type, + STATE(1652), 1, + sym__type, + STATE(2891), 1, + sym_module_identifier, + STATE(3288), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4122), 1, + sym_abstract_type, + STATE(4224), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1547), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2885), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2877), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2895), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1737), 11, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [94693] = 6, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [57234] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1942), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1660), 14, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1658), 25, + ACTIONS(2035), 1, anon_sym_LBRACE, + ACTIONS(2037), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [94751] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1943), 1, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + STATE(1377), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3757), 1, + sym__type, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1835), 14, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1833), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [94809] = 8, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [57357] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2909), 1, - anon_sym_PIPE, - STATE(1944), 1, + ACTIONS(1465), 1, + anon_sym_COLON, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + STATE(1378), 1, sym_decorator, - STATE(1945), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1385), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177383,11 +136807,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 26, + ACTIONS(1387), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -177410,183 +136840,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [94871] = 7, + [57426] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2911), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(367), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2322), 1, anon_sym_PIPE, - STATE(1945), 2, + STATE(1022), 1, + sym__type, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1073), 1, + sym_type_identifier, + STATE(1165), 1, + sym_variant_identifier, + STATE(1199), 1, + sym__type_identifier, + STATE(1295), 1, + sym__non_function_inline_type, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1379), 1, sym_decorator, - aux_sym_variant_type_repeat1, + STATE(2891), 1, + sym_module_identifier, + STATE(3275), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4168), 1, + sym_function_type_parameters, + STATE(4260), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1239), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1326), 26, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [94931] = 8, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [57549] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2803), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(1946), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(367), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2322), 1, + anon_sym_PIPE, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1073), 1, + sym_type_identifier, + STATE(1165), 1, + sym_variant_identifier, + STATE(1199), 1, + sym__type_identifier, + STATE(1295), 1, + sym__non_function_inline_type, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1380), 1, sym_decorator, + STATE(1415), 1, + sym__type, + STATE(2891), 1, + sym_module_identifier, + STATE(3275), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4168), 1, + sym_function_type_parameters, + STATE(4260), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1239), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1250), 25, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [94993] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [57672] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1947), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1381), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3120), 1, + sym__type, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1664), 14, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1662), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [95051] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [57795] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1948), 1, + STATE(1382), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1839), 14, - anon_sym_unpack, + ACTIONS(1179), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177594,13 +137129,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1837), 25, - anon_sym_LBRACE, + ACTIONS(1177), 33, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -177620,185 +137162,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [95109] = 10, + anon_sym_with, + [57860] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2914), 1, - anon_sym_LPAREN, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, anon_sym_LBRACK, - STATE(1949), 1, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2320), 1, + anon_sym_PIPE, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1199), 1, + sym__type_identifier, + STATE(1295), 1, + sym__non_function_inline_type, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1383), 1, sym_decorator, - STATE(2273), 1, - sym_call_arguments, + STATE(1411), 1, + sym_type_identifier, + STATE(1415), 1, + sym__type, + STATE(1471), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3273), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4217), 1, + sym_function_type_parameters, + STATE(4237), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1650), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1563), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1559), 23, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [95175] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [57983] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1950), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1656), 14, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1654), 25, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, anon_sym_LBRACE, + ACTIONS(1992), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2002), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2302), 1, + anon_sym_PIPE, + STATE(1384), 1, + sym_decorator, + STATE(1405), 1, + sym_function_type, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2712), 1, + sym_variant_identifier, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2872), 1, + sym_record_type, + STATE(2891), 1, + sym_module_identifier, + STATE(2920), 1, + sym__type, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4102), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [95233] = 6, + STATE(2875), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [58106] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1951), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1385), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3648), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1791), 14, - anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1789), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [95291] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [58229] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1952), 1, + STATE(1386), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1931), 14, - anon_sym_unpack, + ACTIONS(1257), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177806,13 +137452,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1929), 25, - anon_sym_LBRACE, + ACTIONS(1259), 33, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -177832,25 +137485,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [95349] = 6, + anon_sym_with, + [58294] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1953), 1, + ACTIONS(1135), 1, + sym__identifier, + ACTIONS(1140), 1, + anon_sym_LPAREN, + ACTIONS(2324), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1387), 1, sym_decorator, + STATE(3888), 1, + sym_formal_parameters, + STATE(4153), 1, + sym__definition_signature, + STATE(4154), 1, + sym_value_identifier, + ACTIONS(1145), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1935), 14, - anon_sym_unpack, + ACTIONS(1143), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177858,15 +137527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1933), 25, + ACTIONS(1138), 25, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -177884,22 +137553,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, + [58375] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(713), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2296), 1, + anon_sym_PIPE, + STATE(720), 1, + sym_variant_identifier, + STATE(724), 1, + sym_type_identifier, + STATE(743), 1, + sym__type_identifier, + STATE(760), 1, + sym_record_type, + STATE(786), 1, + sym__non_function_inline_type, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(801), 1, + sym__type, + STATE(1388), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3190), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4253), 1, + sym_abstract_type, + STATE(4381), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [95407] = 7, + STATE(781), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(758), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [58498] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1954), 1, + STATE(1389), 1, sym_decorator, - ACTIONS(2829), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 12, + ACTIONS(1298), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -177912,15 +137666,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 25, + ACTIONS(1300), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -177938,78 +137699,377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [95467] = 6, + anon_sym_with, + [58563] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1955), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2043), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2051), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2053), 1, + sym_unit_type, + STATE(1390), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(2976), 1, + sym_variant_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3079), 1, + sym__type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4185), 1, + sym_abstract_type, + STATE(4218), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + STATE(3454), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1979), 14, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [58686] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, anon_sym_unpack, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_async, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1977), 25, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1391), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3778), 1, + sym__type, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [58809] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, anon_sym_LPAREN, - anon_sym_DOT, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1392), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3956), 1, + sym__type, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [58932] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, + ACTIONS(2006), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2310), 1, + anon_sym_PIPE, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1393), 1, + sym_decorator, + STATE(1400), 1, + sym__type, + STATE(1402), 1, + sym_record_type, + STATE(1405), 1, + sym_function_type, + STATE(1443), 1, + sym__type_identifier, + STATE(1563), 1, + sym__non_function_inline_type, + STATE(1619), 1, + sym_type_identifier, + STATE(1732), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3280), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4284), 1, + sym_abstract_type, + STATE(4340), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [95525] = 8, + STATE(2092), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1397), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [59055] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2652), 1, - anon_sym_COLON, - ACTIONS(2654), 1, - anon_sym_COMMA, - STATE(1956), 1, + STATE(1394), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1238), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178017,14 +138077,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 26, + ACTIONS(1240), 33, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -178044,76 +138110,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [95587] = 8, + anon_sym_with, + [59120] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2920), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, anon_sym_PIPE, - STATE(1957), 1, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1395), 1, sym_decorator, - STATE(1960), 1, - aux_sym_variant_type_repeat1, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3573), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1254), 25, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [59243] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [95649] = 8, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2175), 1, + sym__identifier, + ACTIONS(2179), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2181), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2300), 1, + anon_sym_PIPE, + STATE(1396), 1, + sym_decorator, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2841), 1, + sym_type_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2911), 1, + sym_variant_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3036), 1, + sym_record_type, + STATE(3100), 1, + sym_function_type, + STATE(3211), 1, + sym__non_function_inline_type, + STATE(3232), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3620), 1, + sym__type, + STATE(3856), 1, + sym_module_primary_expression, + STATE(4244), 1, + sym_abstract_type, + STATE(4387), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2183), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(3259), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(3030), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [59366] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2801), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(1958), 1, + STATE(1397), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1270), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -178126,15 +138312,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 25, - anon_sym_LBRACE, + ACTIONS(1272), 33, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DOT, + anon_sym_constraint, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -178152,27 +138345,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [95711] = 8, + anon_sym_with, + [59431] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2181), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2285), 1, + anon_sym_PIPE, + STATE(1398), 1, + sym_decorator, + STATE(1499), 1, + sym__type_identifier, + STATE(1585), 1, + sym__non_function_inline_type, + STATE(1586), 1, + sym_record_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1662), 1, + sym__type, + STATE(1677), 1, + sym_function_type, + STATE(1777), 1, + sym_type_identifier, + STATE(1999), 1, + sym_variant_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3269), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4109), 1, + sym_abstract_type, + STATE(4282), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2129), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1668), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [59554] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2920), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, anon_sym_PIPE, - STATE(1959), 1, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1399), 1, sym_decorator, - STATE(1960), 1, - aux_sym_variant_type_repeat1, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3729), 1, + sym__type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, - anon_sym_COLON, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [59677] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1400), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1424), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178180,15 +138547,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 25, - anon_sym_LBRACE, + ACTIONS(1426), 33, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DOT, + anon_sym_constraint, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -178206,26 +138580,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [95773] = 7, + anon_sym_with, + [59742] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2922), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2217), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2253), 1, anon_sym_PIPE, - STATE(1960), 2, + STATE(743), 1, + sym__type_identifier, + STATE(760), 1, + sym_record_type, + STATE(786), 1, + sym__non_function_inline_type, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(801), 1, + sym__type, + STATE(812), 1, + sym_variant_identifier, + STATE(823), 1, + sym_type_identifier, + STATE(1401), 1, sym_decorator, - aux_sym_variant_type_repeat1, + STATE(2891), 1, + sym_module_identifier, + STATE(3174), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4170), 1, + sym_abstract_type, + STATE(4313), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(873), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 12, - anon_sym_COLON, + STATE(758), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [59865] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1238), 1, + anon_sym_EQ, + STATE(1402), 1, + sym_decorator, + ACTIONS(1240), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1276), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178233,15 +138698,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 25, - anon_sym_LBRACE, + ACTIONS(1279), 31, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_and, + anon_sym_DOT, + anon_sym_constraint, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -178259,24 +138729,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [95833] = 6, + anon_sym_with, + [59934] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, + anon_sym_PIPE, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1403), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3921), 1, + sym__type, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [60057] = 35, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(435), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2279), 1, + anon_sym_PIPE, + STATE(1404), 1, + sym_decorator, + STATE(1430), 1, + sym_type_identifier, + STATE(1499), 1, + sym__type_identifier, + STATE(1502), 1, + sym_variant_identifier, + STATE(1585), 1, + sym__non_function_inline_type, + STATE(1586), 1, + sym_record_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1662), 1, + sym__type, + STATE(1677), 1, + sym_function_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3188), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4219), 1, + sym_abstract_type, + STATE(4377), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1631), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(1668), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [60180] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1961), 1, + STATE(1405), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1939), 14, - anon_sym_unpack, + ACTIONS(1369), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178284,13 +138931,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1937), 25, - anon_sym_LBRACE, + ACTIONS(1371), 33, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_DOT, + anon_sym_constraint, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -178310,147 +138964,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [95891] = 8, + anon_sym_with, + [60245] = 35, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2525), 1, - sym__escape_identifier, - STATE(1962), 1, - sym_decorator, - ACTIONS(1265), 2, - anon_sym_DOT, - aux_sym_type_identifier_token1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1260), 14, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1620), 1, anon_sym_PIPE, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1258), 22, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, + ACTIONS(1622), 1, anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [95953] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2849), 1, - anon_sym_QMARK, - ACTIONS(2853), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2855), 1, - anon_sym_AMP_AMP, - ACTIONS(2857), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2861), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - ACTIONS(2871), 1, - anon_sym_GT_GT, - ACTIONS(2875), 1, - anon_sym_COLON_GT, - STATE(1963), 1, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + STATE(1035), 1, + sym_function_type, + STATE(1061), 1, + sym_record_type, + STATE(1406), 1, sym_decorator, - ACTIONS(2847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2869), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2613), 1, + sym_variant_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4059), 1, + sym__type, + STATE(4231), 1, + sym_abstract_type, + STATE(4258), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1735), 3, - anon_sym_unpack, - anon_sym_async, - aux_sym_value_identifier_token1, - ACTIONS(2863), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2865), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2873), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1733), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [96043] = 6, + STATE(1017), 3, + sym__inline_type, + sym_variant_type, + sym_as_aliasing_type, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 8, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [60368] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1964), 1, + ACTIONS(2157), 1, + anon_sym_PIPE, + STATE(1331), 1, + aux_sym_variant_type_repeat1, + STATE(1407), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1795), 14, - anon_sym_unpack, + ACTIONS(1199), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178458,15 +139081,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1793), 25, + ACTIONS(1201), 32, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -178484,25 +139114,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [96101] = 6, + [60437] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1965), 1, + STATE(1408), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1843), 14, - anon_sym_unpack, + ACTIONS(1428), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178510,15 +139140,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1841), 25, - anon_sym_LBRACE, + ACTIONS(1430), 31, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -178536,122 +139172,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [96159] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2853), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2855), 1, - anon_sym_AMP_AMP, - ACTIONS(2857), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2861), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - ACTIONS(2871), 1, - anon_sym_GT_GT, - ACTIONS(2875), 1, - anon_sym_COLON_GT, - STATE(1966), 1, - sym_decorator, - ACTIONS(2847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2869), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1739), 3, - anon_sym_unpack, - anon_sym_async, - aux_sym_value_identifier_token1, - ACTIONS(2863), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2865), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2873), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1737), 8, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [96247] = 9, + [60501] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - STATE(1967), 1, + STATE(1409), 1, sym_decorator, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1143), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 24, + ACTIONS(1138), 31, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -178659,24 +139230,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [96311] = 6, + [60565] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1968), 1, + STATE(1410), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1767), 14, - anon_sym_unpack, + ACTIONS(1234), 15, + anon_sym_and, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178684,10 +139256,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1765), 25, - anon_sym_LBRACE, + sym__identifier, + ACTIONS(1236), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -178710,41 +139286,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, + aux_sym_type_identifier_token1, sym__escape_identifier, - [96369] = 6, + [60629] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1969), 1, + ACTIONS(1181), 1, + sym__identifier, + STATE(1411), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1622), 14, - anon_sym_unpack, + ACTIONS(2019), 3, + anon_sym_DOT, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(1179), 17, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, + anon_sym_catch, + anon_sym_as, anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1620), 25, + ACTIONS(1177), 24, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -178762,25 +139348,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [96427] = 6, + [60697] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1970), 1, + ACTIONS(1181), 1, + sym__identifier, + ACTIONS(2016), 1, + anon_sym_DOT, + STATE(1412), 1, sym_decorator, + ACTIONS(2019), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1847), 14, - anon_sym_unpack, + ACTIONS(1179), 14, + anon_sym_and, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178788,11 +139381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1845), 25, - anon_sym_LBRACE, + ACTIONS(1177), 27, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -178814,99 +139409,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [96485] = 21, + [60767] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2883), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - ACTIONS(2893), 1, - anon_sym_GT_GT, - ACTIONS(2897), 1, - anon_sym_QMARK, - ACTIONS(2899), 1, - anon_sym_AMP_AMP, - ACTIONS(2901), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2905), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2907), 1, - anon_sym_COLON_GT, - STATE(1971), 1, - sym_decorator, - ACTIONS(2879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2891), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2885), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2877), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2895), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1678), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(2327), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [96573] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2580), 1, - anon_sym_PIPE, - ACTIONS(2682), 1, - anon_sym_as, - STATE(1972), 1, + ACTIONS(2329), 1, + anon_sym_COLON, + STATE(1276), 1, + sym_type_annotation, + STATE(1413), 1, sym_decorator, - STATE(3214), 1, - sym_as_aliasing, - ACTIONS(2572), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + STATE(1431), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1148), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178914,11 +139441,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 23, - anon_sym_LPAREN, + ACTIONS(1150), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -178938,29 +139471,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [96639] = 11, + [60839] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2712), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1140), 1, anon_sym_LPAREN, - ACTIONS(2714), 1, - anon_sym_DOT, - ACTIONS(2716), 1, - anon_sym_LBRACK, - STATE(1790), 1, - sym_call_arguments, - STATE(1973), 1, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1414), 1, sym_decorator, - ACTIONS(2925), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + STATE(3888), 1, + sym_formal_parameters, + STATE(4246), 1, + sym__definition_signature, + STATE(4296), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 11, + ACTIONS(1143), 12, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -178972,12 +139512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 22, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1138), 24, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -178995,31 +139537,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [96707] = 10, + [60919] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2610), 1, - anon_sym_LPAREN, - ACTIONS(2927), 1, - anon_sym_COLON, - STATE(1695), 1, - sym_type_annotation, - STATE(1974), 1, + ACTIONS(2331), 1, + anon_sym_as, + STATE(1415), 1, sym_decorator, - STATE(2405), 1, - sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, + ACTIONS(1495), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179027,13 +139563,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 23, + ACTIONS(1497), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -179051,24 +139596,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [96773] = 6, + [60985] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1975), 1, + ACTIONS(2333), 1, + anon_sym_LPAREN, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_LBRACK, + STATE(1085), 1, + sym_call_arguments, + STATE(1416), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1632), 14, - anon_sym_unpack, + ACTIONS(1479), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179076,15 +139628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1630), 25, + ACTIONS(1481), 29, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -179102,86 +139658,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [96831] = 15, + [61057] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - ACTIONS(2893), 1, - anon_sym_GT_GT, - STATE(1976), 1, - sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2891), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2885), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2877), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2895), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 15, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(2339), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [96907] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1977), 1, + ACTIONS(2341), 1, + anon_sym_COLON, + STATE(1417), 1, sym_decorator, + STATE(1428), 1, + sym_variant_parameters, + STATE(1532), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1851), 14, + ACTIONS(1148), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179189,10 +139693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1849), 25, + sym__identifier, + ACTIONS(1150), 25, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -179216,101 +139720,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [96965] = 13, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - ACTIONS(2941), 1, - anon_sym_GT_GT, - STATE(1978), 1, - sym_decorator, - ACTIONS(2929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2931), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2939), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2933), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2935), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1729), 18, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [97037] = 9, + [61129] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - STATE(1979), 1, + ACTIONS(2343), 1, + anon_sym_else, + STATE(1418), 1, sym_decorator, - ACTIONS(2931), 2, - anon_sym_SLASH, - anon_sym_STAR, + STATE(1425), 1, + aux_sym_if_expression_repeat1, + STATE(1613), 1, + sym_else_if_clause, + STATE(1738), 1, + sym_else_clause, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2935), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 10, + ACTIONS(1168), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 23, + ACTIONS(1170), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, @@ -179323,6 +139770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -179330,369 +139781,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [97101] = 15, + [61200] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - ACTIONS(2941), 1, - anon_sym_GT_GT, - STATE(1980), 1, + ACTIONS(2345), 1, + sym_regex_flags, + STATE(1419), 1, sym_decorator, - ACTIONS(2929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2931), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2939), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2933), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2935), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2943), 4, + ACTIONS(1501), 16, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2945), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 14, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [97177] = 18, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - ACTIONS(2941), 1, - anon_sym_GT_GT, - ACTIONS(2947), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2949), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2951), 1, - anon_sym_CARET_CARET_CARET, - STATE(1981), 1, - sym_decorator, - ACTIONS(2929), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2931), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2939), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1731), 3, + anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, + anon_sym_as, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2933), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2935), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2943), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2945), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 11, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1503), 27, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_GT, - [97259] = 17, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - ACTIONS(2941), 1, - anon_sym_GT_GT, - ACTIONS(2947), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(2951), 1, + anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - STATE(1982), 1, - sym_decorator, - ACTIONS(2929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2931), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2939), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1731), 3, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2933), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2935), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(2943), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2945), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 12, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, anon_sym_COLON_GT, - [97339] = 19, + [61265] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - ACTIONS(2941), 1, - anon_sym_GT_GT, - ACTIONS(2947), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2949), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2951), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2953), 1, - anon_sym_AMP_AMP, - STATE(1983), 1, + STATE(1420), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_PIPE, - anon_sym_PIPE_PIPE, - ACTIONS(2929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2931), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2939), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2351), 2, + anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2933), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2935), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2943), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2945), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 11, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(2349), 15, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_LT, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_GT, - [97423] = 16, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - ACTIONS(2941), 1, - anon_sym_GT_GT, - ACTIONS(2947), 1, - anon_sym_AMP_AMP_AMP, - STATE(1984), 1, - sym_decorator, - ACTIONS(2929), 2, + anon_sym_POUND, + anon_sym_PERCENT, + anon_sym_TILDE_TILDE_TILDE, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + ACTIONS(2347), 27, + anon_sym_open, + anon_sym_include, + anon_sym_await, + anon_sym_module, + anon_sym_type, + anon_sym_unpack, + anon_sym_external, + anon_sym_exception, + anon_sym_export, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2931), 2, + anon_sym_let, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_assert, + anon_sym_lazy, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2939), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1731), 3, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2933), 3, - anon_sym_PLUS_PLUS, + anon_sym_for, + anon_sym_while, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2935), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2943), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2945), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 13, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [97501] = 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + [61330] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - STATE(1985), 1, + STATE(1421), 1, sym_decorator, - ACTIONS(2931), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2935), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 10, + ACTIONS(1143), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 23, + ACTIONS(1138), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_and, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -179700,81 +139954,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [97565] = 11, + [61393] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - STATE(1986), 1, + STATE(1422), 1, sym_decorator, - ACTIONS(2929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2931), 2, - anon_sym_SLASH, - anon_sym_STAR, + ACTIONS(2353), 2, + anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2933), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2935), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1729), 20, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(2349), 15, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_LT, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [97633] = 6, + anon_sym_POUND, + anon_sym_PERCENT, + anon_sym_TILDE_TILDE_TILDE, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + ACTIONS(2347), 27, + anon_sym_open, + anon_sym_include, + anon_sym_await, + anon_sym_module, + anon_sym_type, + anon_sym_unpack, + anon_sym_external, + anon_sym_exception, + anon_sym_export, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_let, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_assert, + anon_sym_lazy, + anon_sym_SLASH, + anon_sym_for, + anon_sym_while, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + [61458] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1987), 1, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(2027), 1, + anon_sym_DOT, + STATE(1423), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1887), 14, - anon_sym_unpack, + ACTIONS(1183), 14, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179782,15 +140042,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1885), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(1185), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_constraint, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -179808,25 +140070,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [97691] = 6, + anon_sym_with, + [61525] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1988), 1, + STATE(1424), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1668), 14, - anon_sym_unpack, + ACTIONS(1398), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + ACTIONS(1528), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179834,15 +140101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1666), 25, + ACTIONS(1530), 27, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_catch, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -179860,27 +140129,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [97749] = 7, + [61590] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2955), 1, - sym_regex_flags, - STATE(1989), 1, + ACTIONS(2343), 1, + anon_sym_else, + STATE(1425), 1, sym_decorator, + STATE(1470), 1, + aux_sym_if_expression_repeat1, + STATE(1613), 1, + sym_else_if_clause, + STATE(1761), 1, + sym_else_clause, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1601), 13, - anon_sym_COLON, + ACTIONS(1210), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179888,11 +140161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1599), 25, + ACTIONS(1212), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -179914,24 +140190,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [97809] = 6, + [61661] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1990), 1, + ACTIONS(2339), 1, + anon_sym_LPAREN, + ACTIONS(2355), 1, + anon_sym_COLON, + STATE(1426), 1, sym_decorator, + STATE(1439), 1, + sym_variant_parameters, + STATE(1532), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1855), 14, + ACTIONS(1148), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179939,10 +140225,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1853), 25, + sym__identifier, + ACTIONS(1150), 24, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -179966,24 +140251,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [97867] = 6, + [61732] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1991), 1, + ACTIONS(2327), 1, + anon_sym_LPAREN, + ACTIONS(2357), 1, + anon_sym_COLON, + STATE(1276), 1, + sym_type_annotation, + STATE(1427), 1, sym_decorator, + STATE(1442), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1943), 14, - anon_sym_unpack, + ACTIONS(1148), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179991,13 +140283,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1941), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(1150), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -180017,25 +140312,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [97925] = 6, + [61803] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1992), 1, + ACTIONS(2341), 1, + anon_sym_COLON, + STATE(1428), 1, sym_decorator, + STATE(1479), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1775), 14, + ACTIONS(1156), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180043,10 +140343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1773), 25, + sym__identifier, + ACTIONS(1158), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -180070,34 +140371,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [97983] = 11, + [61870] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2914), 1, - anon_sym_LPAREN, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK, - STATE(1993), 1, + STATE(1429), 1, sym_decorator, - STATE(2273), 1, - sym_call_arguments, - ACTIONS(2957), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 12, + ACTIONS(1234), 16, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180105,11 +140398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 21, + sym__identifier, + ACTIONS(1236), 28, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -180127,24 +140426,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [98051] = 6, + aux_sym_type_identifier_token1, + sym__escape_identifier, + [61933] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1994), 1, + ACTIONS(1174), 1, + anon_sym_DOT, + ACTIONS(1181), 1, + sym__identifier, + STATE(1430), 1, sym_decorator, + ACTIONS(2019), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1771), 14, - anon_sym_unpack, + ACTIONS(1179), 14, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180152,11 +140461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1769), 25, - anon_sym_LBRACE, + ACTIONS(1177), 26, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -180178,25 +140488,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [98109] = 6, + [62002] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1995), 1, + ACTIONS(2329), 1, + anon_sym_COLON, + STATE(1358), 1, + sym_type_annotation, + STATE(1431), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1636), 14, - anon_sym_unpack, + ACTIONS(1156), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180204,13 +140516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1634), 25, - anon_sym_LBRACE, + ACTIONS(1158), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -180230,92 +140547,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [98167] = 21, + [62069] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2883), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - ACTIONS(2893), 1, - anon_sym_GT_GT, - ACTIONS(2897), 1, - anon_sym_QMARK, - ACTIONS(2899), 1, - anon_sym_AMP_AMP, - ACTIONS(2901), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2905), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2907), 1, - anon_sym_COLON_GT, - STATE(1996), 1, + ACTIONS(2031), 1, + anon_sym_LPAREN, + ACTIONS(2359), 1, + anon_sym_COLON, + STATE(1010), 1, + sym_type_annotation, + STATE(1432), 1, sym_decorator, - ACTIONS(2879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2891), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(1535), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2885), 3, + ACTIONS(1148), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1150), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2887), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(2877), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2895), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1712), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [98255] = 6, + anon_sym_COLON_GT, + [62140] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1997), 1, + ACTIONS(2361), 1, + anon_sym_PIPE, + STATE(1433), 1, sym_decorator, + STATE(1444), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1755), 14, + ACTIONS(1199), 15, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180323,10 +140638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1753), 25, + sym__identifier, + ACTIONS(1201), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -180350,24 +140666,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [98313] = 6, + [62206] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1998), 1, + ACTIONS(2366), 1, + anon_sym_LPAREN, + ACTIONS(2368), 1, + anon_sym_COLON, + ACTIONS(2371), 1, + anon_sym_PIPE, + ACTIONS(2373), 1, + anon_sym_as, + STATE(1107), 1, + sym_variant_arguments, + STATE(1434), 1, sym_decorator, + STATE(2798), 1, + sym__variant_pattern_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1947), 14, - anon_sym_unpack, + ACTIONS(2363), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1489), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180375,10 +140706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1945), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(1491), 22, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -180401,25 +140729,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [98371] = 6, + [62282] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1999), 1, + STATE(1435), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1640), 14, + ACTIONS(2375), 16, + sym__list_constructor, + sym__dict_constructor, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_PERCENT, + anon_sym_TILDE_TILDE_TILDE, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + ACTIONS(2377), 27, + anon_sym_open, + anon_sym_include, + anon_sym_await, + anon_sym_module, + anon_sym_type, anon_sym_unpack, + anon_sym_external, + anon_sym_exception, + anon_sym_export, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_let, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_assert, + anon_sym_lazy, + anon_sym_SLASH, + anon_sym_for, + anon_sym_while, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + [62344] = 13, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2382), 1, + anon_sym_EQ_GT, + ACTIONS(2384), 1, + anon_sym_PIPE, + ACTIONS(2386), 1, + anon_sym_as, + STATE(1436), 1, + sym_decorator, + STATE(2784), 1, + sym_as_aliasing, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2379), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180427,9 +140824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1638), 25, - anon_sym_LBRACE, + ACTIONS(1398), 23, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, @@ -180453,25 +140848,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [98429] = 6, + [62420] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2000), 1, + ACTIONS(2389), 1, + anon_sym_LT, + STATE(1437), 1, sym_decorator, + STATE(1540), 1, + sym_type_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1672), 14, + ACTIONS(1238), 15, anon_sym_unpack, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180479,10 +140878,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1670), 25, + sym__identifier, + ACTIONS(1240), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -180506,24 +140906,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [98487] = 6, + [62486] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2001), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2384), 1, + anon_sym_PIPE, + ACTIONS(2392), 1, + anon_sym_COLON, + ACTIONS(2395), 1, + anon_sym_EQ_GT, + ACTIONS(2397), 1, + anon_sym_as, + STATE(1438), 1, sym_decorator, + STATE(2784), 1, + sym_as_aliasing, + ACTIONS(2379), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1676), 14, - anon_sym_unpack, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180531,9 +140946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1674), 25, - anon_sym_LBRACE, + ACTIONS(1398), 23, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, @@ -180557,28 +140970,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [98545] = 8, + [62564] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2758), 1, + ACTIONS(2355), 1, anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(2002), 1, + STATE(1439), 1, sym_decorator, + STATE(1479), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1156), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180586,15 +141001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 25, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, + sym__identifier, + ACTIONS(1158), 25, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -180612,92 +141027,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [98607] = 18, + sym__escape_identifier, + [62630] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2883), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - ACTIONS(2893), 1, - anon_sym_GT_GT, - ACTIONS(2901), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2905), 1, - anon_sym_CARET_CARET_CARET, - STATE(2003), 1, - sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2891), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2885), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2877), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2895), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 12, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2399), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_GT, - [98689] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2959), 1, - anon_sym_LPAREN, - STATE(2004), 1, + ACTIONS(2402), 1, + anon_sym_COLON, + ACTIONS(2405), 1, + anon_sym_EQ_GT, + ACTIONS(2407), 1, + anon_sym_COMMA, + STATE(1440), 1, sym_decorator, - STATE(2278), 1, - sym_variant_arguments, + STATE(3876), 1, + aux_sym_record_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1585), 13, - anon_sym_COLON, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180705,10 +141065,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1581), 24, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(1398), 25, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -180730,28 +141091,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [98751] = 8, + [62706] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2959), 1, - anon_sym_LPAREN, - STATE(2005), 1, + STATE(1441), 1, sym_decorator, - STATE(2282), 1, - sym_variant_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1589), 13, - anon_sym_COLON, + ACTIONS(1513), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180759,12 +141116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1587), 24, + ACTIONS(1515), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_else, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -180784,24 +141146,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [98813] = 6, + anon_sym_with, + [62768] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2006), 1, + ACTIONS(2357), 1, + anon_sym_COLON, + STATE(1358), 1, + sym_type_annotation, + STATE(1442), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1915), 14, - anon_sym_unpack, + ACTIONS(1156), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180809,13 +141175,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1913), 25, - anon_sym_LBRACE, + ACTIONS(1158), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -180835,92 +141205,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [98871] = 21, + [62834] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2883), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - ACTIONS(2893), 1, - anon_sym_GT_GT, - ACTIONS(2897), 1, - anon_sym_QMARK, - ACTIONS(2899), 1, - anon_sym_AMP_AMP, - ACTIONS(2901), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2905), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2907), 1, - anon_sym_COLON_GT, - STATE(2007), 1, - sym_decorator, - ACTIONS(2879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2891), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2885), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2877), 4, + ACTIONS(2410), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2895), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1716), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [98959] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2008), 1, + STATE(1273), 1, + sym_type_arguments, + STATE(1443), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1955), 14, - anon_sym_unpack, - anon_sym_LT, + ACTIONS(1238), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180928,13 +141232,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1953), 25, - anon_sym_LBRACE, + ACTIONS(1240), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -180954,25 +141263,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [99017] = 7, + [62900] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2634), 1, - anon_sym_EQ_GT, - STATE(2009), 1, + ACTIONS(2413), 1, + anon_sym_PIPE, + STATE(1444), 2, sym_decorator, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1203), 15, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180980,14 +141292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 27, + sym__identifier, + ACTIONS(1205), 26, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -181008,26 +141319,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [99077] = 7, + sym__escape_identifier, + [62964] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2961), 1, - anon_sym_as, - STATE(2010), 1, + ACTIONS(2361), 1, + anon_sym_PIPE, + STATE(1444), 1, + aux_sym_variant_type_repeat1, + STATE(1445), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1577), 13, - anon_sym_COLON, + ACTIONS(1193), 15, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181035,11 +141350,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1575), 25, + sym__identifier, + ACTIONS(1195), 26, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -181061,86 +141377,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [99137] = 19, + sym__escape_identifier, + [63030] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2883), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - ACTIONS(2893), 1, - anon_sym_GT_GT, - ACTIONS(2899), 1, - anon_sym_AMP_AMP, - ACTIONS(2901), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2905), 1, - anon_sym_CARET_CARET_CARET, - STATE(2011), 1, + STATE(1446), 1, sym_decorator, - ACTIONS(2879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2891), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2885), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2877), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2895), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 12, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_GT, - [99221] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(1911), 1, + STATE(1460), 1, aux_sym_variant_type_repeat1, - STATE(2012), 1, - sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 13, - anon_sym_COLON, + ACTIONS(1193), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -181153,15 +141404,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 25, - anon_sym_LBRACE, + ACTIONS(1195), 30, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -181179,26 +141435,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [99281] = 7, + [63094] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2013), 1, - sym_decorator, - STATE(2100), 1, + STATE(1444), 1, aux_sym_variant_type_repeat1, + STATE(1447), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, - anon_sym_COLON, + ACTIONS(1193), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181206,15 +141464,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 25, + sym__identifier, + ACTIONS(1195), 26, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -181232,94 +141491,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [99341] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2883), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - ACTIONS(2893), 1, - anon_sym_GT_GT, - ACTIONS(2897), 1, - anon_sym_QMARK, - ACTIONS(2899), 1, - anon_sym_AMP_AMP, - ACTIONS(2901), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2903), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2905), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2907), 1, - anon_sym_COLON_GT, - STATE(2014), 1, - sym_decorator, - ACTIONS(2879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2891), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2885), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2877), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2895), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1720), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [99429] = 7, + sym__escape_identifier, + [63158] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2015), 1, + STATE(1444), 1, + aux_sym_variant_type_repeat1, + STATE(1448), 1, sym_decorator, - ACTIONS(2837), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 14, + ACTIONS(1199), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181327,13 +141521,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1611), 23, + sym__identifier, + ACTIONS(1201), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -181352,26 +141549,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [99489] = 8, + [63222] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2963), 1, - anon_sym_PIPE, - STATE(2016), 1, + STATE(1449), 1, sym_decorator, - STATE(2022), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1218), 17, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181379,14 +141577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 26, + sym__identifier, + ACTIONS(1220), 26, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -181406,27 +141604,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [99551] = 7, + sym__escape_identifier, + [63284] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2017), 1, + STATE(1450), 1, sym_decorator, - ACTIONS(1337), 2, - anon_sym_LPAREN, - anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1301), 14, + ACTIONS(1234), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181434,9 +141632,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1299), 23, + sym__identifier, + ACTIONS(1236), 27, anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -181458,47 +141659,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, + aux_sym_type_identifier_token1, sym__escape_identifier, - [99611] = 13, + [63346] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - ACTIONS(2893), 1, - anon_sym_GT_GT, - STATE(2018), 1, + STATE(1451), 1, sym_decorator, - ACTIONS(2879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2891), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2885), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 6, + ACTIONS(1521), 13, + anon_sym_EQ, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 19, + ACTIONS(1523), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, @@ -181508,32 +141696,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_else, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [99683] = 8, + anon_sym_with, + [63408] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2963), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - STATE(2019), 1, + STATE(1452), 1, sym_decorator, - STATE(2022), 1, + STATE(1455), 1, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1193), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -181545,13 +141744,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 26, + ACTIONS(1195), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -181572,24 +141775,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [99745] = 6, + [63474] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2020), 1, + ACTIONS(2366), 1, + anon_sym_LPAREN, + ACTIONS(2421), 1, + anon_sym_COLON, + ACTIONS(2424), 1, + anon_sym_PIPE, + ACTIONS(2426), 1, + anon_sym_as, + STATE(1089), 1, + sym_variant_arguments, + STATE(1453), 1, sym_decorator, + STATE(2816), 1, + sym__variant_pattern_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 14, - anon_sym_unpack, + ACTIONS(2418), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1517), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181597,10 +141815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1611), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(1519), 22, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -181623,25 +141838,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [99803] = 6, + [63550] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2021), 1, + ACTIONS(2416), 1, + anon_sym_PIPE, + STATE(1454), 1, sym_decorator, + STATE(1455), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1644), 14, - anon_sym_unpack, + ACTIONS(1199), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181649,13 +141865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1642), 25, - anon_sym_LBRACE, + ACTIONS(1201), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -181675,22 +141896,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [99861] = 7, + [63616] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2965), 1, + ACTIONS(2428), 1, anon_sym_PIPE, - STATE(2022), 2, + STATE(1455), 2, sym_decorator, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1203), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -181702,13 +141922,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 26, + ACTIONS(1205), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -181729,24 +141953,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [99921] = 6, + [63680] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2023), 1, + STATE(1456), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1779), 14, + ACTIONS(1230), 17, + anon_sym_COLON, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181754,10 +141981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1777), 25, + sym__identifier, + ACTIONS(1232), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -181781,24 +142009,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [99979] = 6, + [63742] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2024), 1, + ACTIONS(1174), 1, + sym__identifier, + ACTIONS(2019), 1, + aux_sym_type_identifier_token1, + STATE(1457), 1, sym_decorator, + ACTIONS(2016), 2, + anon_sym_DOT, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1983), 14, + ACTIONS(1179), 15, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181806,11 +142043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1981), 25, + ACTIONS(1177), 24, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -181832,25 +142068,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [100037] = 6, + [63810] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2025), 1, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(2433), 1, + anon_sym_COLON, + STATE(1458), 1, sym_decorator, + STATE(1539), 1, + sym_variant_parameters, + STATE(1637), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1563), 14, - anon_sym_unpack, + ACTIONS(1148), 13, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181858,13 +142101,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1559), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(1150), 26, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -181884,25 +142128,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [100095] = 6, + [63880] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2026), 1, + STATE(1455), 1, + aux_sym_variant_type_repeat1, + STATE(1459), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1799), 14, - anon_sym_unpack, + ACTIONS(1193), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181910,13 +142154,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1797), 25, - anon_sym_LBRACE, + ACTIONS(1195), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -181936,25 +142185,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [100153] = 6, + [63944] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2027), 1, + STATE(1455), 1, + aux_sym_variant_type_repeat1, + STATE(1460), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1648), 14, - anon_sym_unpack, + ACTIONS(1199), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181962,13 +142211,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1646), 25, - anon_sym_LBRACE, + ACTIONS(1201), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -181988,25 +142242,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [100211] = 6, + [64008] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2028), 1, + STATE(1461), 1, sym_decorator, + ACTIONS(1251), 2, + anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1743), 14, + ACTIONS(1183), 17, + anon_sym_COLON, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182014,11 +142273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1741), 25, + sym__identifier, + ACTIONS(1185), 24, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -182041,27 +142299,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [100269] = 8, + [64072] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1547), 1, - anon_sym_EQ_GT, - ACTIONS(2821), 1, - anon_sym_COLON, - STATE(2029), 1, + ACTIONS(2361), 1, + anon_sym_PIPE, + STATE(1445), 1, + aux_sym_variant_type_repeat1, + STATE(1462), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1423), 12, + ACTIONS(1247), 15, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182069,11 +142329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 25, + sym__identifier, + ACTIONS(1249), 26, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -182095,24 +142356,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [100331] = 6, + sym__escape_identifier, + [64138] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2030), 1, + ACTIONS(2361), 1, + anon_sym_PIPE, + STATE(1433), 1, + aux_sym_variant_type_repeat1, + STATE(1463), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1747), 14, + ACTIONS(1193), 15, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182120,10 +142387,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1745), 25, + sym__identifier, + ACTIONS(1195), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -182147,24 +142415,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [100389] = 6, + [64204] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2031), 1, + STATE(1447), 1, + aux_sym_variant_type_repeat1, + STATE(1464), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1859), 14, + ACTIONS(1247), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182172,10 +142444,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1857), 25, + sym__identifier, + ACTIONS(1249), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -182199,24 +142472,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [100447] = 6, + [64268] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2032), 1, + STATE(1448), 1, + aux_sym_variant_type_repeat1, + STATE(1465), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1803), 14, + ACTIONS(1193), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182224,10 +142501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1801), 25, + sym__identifier, + ACTIONS(1195), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -182251,87 +142529,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [100505] = 17, + [64332] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2883), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2889), 1, - anon_sym_STAR_STAR, - ACTIONS(2893), 1, - anon_sym_GT_GT, - ACTIONS(2905), 1, - anon_sym_CARET_CARET_CARET, - STATE(2033), 1, + STATE(1466), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2881), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2891), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2885), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2887), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2877), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2895), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 13, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(2349), 16, + sym__list_constructor, + sym__dict_constructor, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_DOT, + anon_sym_LT, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - [100585] = 6, + anon_sym_POUND, + anon_sym_PERCENT, + anon_sym_TILDE_TILDE_TILDE, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + ACTIONS(2347), 27, + anon_sym_open, + anon_sym_include, + anon_sym_await, + anon_sym_module, + anon_sym_type, + anon_sym_unpack, + anon_sym_external, + anon_sym_exception, + anon_sym_export, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_let, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_assert, + anon_sym_lazy, + anon_sym_SLASH, + anon_sym_for, + anon_sym_while, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + [64394] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2034), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2384), 1, + anon_sym_PIPE, + ACTIONS(2392), 1, + anon_sym_COLON, + ACTIONS(2395), 1, + anon_sym_EQ_GT, + ACTIONS(2435), 1, + anon_sym_as, + STATE(1467), 1, sym_decorator, + STATE(2784), 1, + sym_as_aliasing, + ACTIONS(2379), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1871), 14, - anon_sym_unpack, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182339,9 +142625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1869), 25, - anon_sym_LBRACE, + ACTIONS(1398), 23, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, @@ -182365,25 +142649,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [100643] = 6, + [64472] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2035), 1, + STATE(1468), 1, sym_decorator, + ACTIONS(1251), 2, + anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1875), 14, - anon_sym_unpack, + ACTIONS(1183), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182391,13 +142677,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1873), 25, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(1185), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -182417,29 +142706,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [100701] = 8, + [64536] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - STATE(2036), 1, + STATE(1469), 1, sym_decorator, - ACTIONS(2525), 2, - anon_sym_DOT, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 13, + ACTIONS(1183), 17, + anon_sym_COLON, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_async, anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -182448,13 +142734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1258), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, + sym__identifier, + ACTIONS(1185), 26, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -182472,24 +142761,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [100763] = 6, + sym__escape_identifier, + [64598] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2037), 1, + ACTIONS(2438), 1, + anon_sym_else, + STATE(1613), 1, + sym_else_if_clause, + STATE(1470), 2, sym_decorator, + aux_sym_if_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1819), 14, - anon_sym_unpack, + ACTIONS(1338), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182497,10 +142791,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1817), 25, - anon_sym_LBRACE, + ACTIONS(1340), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -182523,25 +142820,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [100821] = 6, + [64664] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2038), 1, + ACTIONS(2031), 1, + anon_sym_LPAREN, + ACTIONS(2441), 1, + anon_sym_COLON, + STATE(1010), 1, + sym_type_annotation, + STATE(1471), 1, sym_decorator, + STATE(1627), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1652), 14, - anon_sym_unpack, + ACTIONS(1148), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182549,15 +142852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1650), 25, + ACTIONS(1150), 27, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -182575,25 +142880,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [100879] = 6, + [64734] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2039), 1, + ACTIONS(2416), 1, + anon_sym_PIPE, + STATE(1452), 1, + aux_sym_variant_type_repeat1, + STATE(1472), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1751), 14, - anon_sym_unpack, + ACTIONS(1247), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182601,13 +142907,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1749), 25, - anon_sym_LBRACE, + ACTIONS(1249), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -182627,25 +142938,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [100937] = 6, + [64800] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2040), 1, + ACTIONS(2416), 1, + anon_sym_PIPE, + STATE(1454), 1, + aux_sym_variant_type_repeat1, + STATE(1473), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1959), 14, - anon_sym_unpack, + ACTIONS(1193), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182653,13 +142965,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1957), 25, - anon_sym_LBRACE, + ACTIONS(1195), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -182679,29 +142996,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [100995] = 8, + [64866] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2968), 1, - anon_sym_LPAREN, - STATE(2041), 1, + STATE(1459), 1, + aux_sym_variant_type_repeat1, + STATE(1474), 1, sym_decorator, - STATE(2145), 1, - sym__extension_expression_payload, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1609), 13, - anon_sym_COLON, + ACTIONS(1247), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182709,12 +143022,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1605), 24, + ACTIONS(1249), 30, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -182734,24 +143053,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [101057] = 6, + [64930] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2042), 1, + STATE(1475), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1963), 14, + ACTIONS(1226), 17, + anon_sym_COLON, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182759,10 +143081,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1961), 25, + sym__identifier, + ACTIONS(1228), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -182786,24 +143109,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [101115] = 6, + [64992] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2043), 1, + STATE(1476), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 14, + ACTIONS(1420), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182811,10 +143136,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1729), 25, + sym__identifier, + ACTIONS(1422), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -182838,26 +143164,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [101173] = 8, + [65053] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2909), 1, - anon_sym_PIPE, - STATE(1940), 1, - aux_sym_variant_type_repeat1, - STATE(2044), 1, + STATE(1477), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1345), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182865,16 +143191,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 26, + sym__identifier, + ACTIONS(1347), 26, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -182892,26 +143218,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [101235] = 8, + sym__escape_identifier, + [65114] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2909), 1, - anon_sym_PIPE, - STATE(1944), 1, - aux_sym_variant_type_repeat1, - STATE(2045), 1, + STATE(1478), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1203), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182919,16 +143246,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 26, + sym__identifier, + ACTIONS(1205), 26, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -182946,24 +143273,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [101297] = 6, + sym__escape_identifier, + [65175] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2046), 1, + STATE(1479), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1951), 14, + ACTIONS(1353), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182971,10 +143301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1949), 25, + sym__identifier, + ACTIONS(1355), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -182998,18 +143329,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [101355] = 6, + [65236] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2047), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2443), 1, + anon_sym_EQ_GT, + STATE(1480), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1967), 14, + ACTIONS(1396), 14, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, @@ -183023,8 +143360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1965), 25, + sym__identifier, + ACTIONS(1398), 25, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -183050,24 +143387,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [101413] = 6, + [65303] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2048), 1, + STATE(1481), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1312), 14, + ACTIONS(1416), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183075,10 +143414,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1310), 25, + sym__identifier, + ACTIONS(1418), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -183102,24 +143442,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [101471] = 6, + [65364] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2049), 1, + STATE(1482), 1, sym_decorator, + STATE(1576), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1807), 14, - anon_sym_unpack, + ACTIONS(1193), 14, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183127,13 +143470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1805), 25, - anon_sym_LBRACE, + ACTIONS(1195), 27, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -183153,25 +143498,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [101529] = 6, + [65427] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2050), 1, + STATE(1483), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1783), 14, + ACTIONS(1432), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183179,10 +143525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1781), 25, + sym__identifier, + ACTIONS(1434), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -183206,27 +143553,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [101587] = 8, + [65488] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2920), 1, - anon_sym_PIPE, - STATE(1957), 1, - aux_sym_variant_type_repeat1, - STATE(2051), 1, + STATE(1484), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, - anon_sym_COLON, + ACTIONS(1357), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183234,15 +143580,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 25, + sym__identifier, + ACTIONS(1359), 26, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -183260,27 +143607,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [101649] = 8, + sym__escape_identifier, + [65549] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2920), 1, - anon_sym_PIPE, - STATE(1959), 1, - aux_sym_variant_type_repeat1, - STATE(2052), 1, + ACTIONS(2445), 1, + anon_sym_else, + STATE(1485), 1, sym_decorator, + STATE(1543), 1, + aux_sym_if_expression_repeat1, + STATE(1808), 1, + sym_else_if_clause, + STATE(1915), 1, + sym_else_clause, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1168), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183288,15 +143641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 25, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1170), 25, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -183314,25 +143667,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [101711] = 7, + [65618] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2022), 1, - aux_sym_variant_type_repeat1, - STATE(2053), 1, + ACTIONS(2447), 1, + sym_regex_flags, + STATE(1486), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1501), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183340,14 +143693,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 26, + ACTIONS(1503), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -183367,25 +143723,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [101771] = 7, + [65681] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2022), 1, - aux_sym_variant_type_repeat1, - STATE(2054), 1, + STATE(1487), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1361), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183393,14 +143750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 26, + sym__identifier, + ACTIONS(1363), 26, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -183420,25 +143777,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [101831] = 7, + sym__escape_identifier, + [65742] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2053), 1, - aux_sym_variant_type_repeat1, - STATE(2055), 1, + STATE(1488), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, + ACTIONS(1179), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183446,14 +143805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 26, + sym__identifier, + ACTIONS(1177), 26, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -183473,25 +143832,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [101891] = 7, + sym__escape_identifier, + [65803] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2054), 1, - aux_sym_variant_type_repeat1, - STATE(2056), 1, + STATE(1489), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1257), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183499,14 +143860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 26, + sym__identifier, + ACTIONS(1259), 26, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -183526,25 +143887,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [101951] = 7, + sym__escape_identifier, + [65864] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1945), 1, - aux_sym_variant_type_repeat1, - STATE(2057), 1, + STATE(1490), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1306), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183552,16 +143915,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 26, + sym__identifier, + ACTIONS(1308), 26, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -183579,20 +143942,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [102011] = 7, + sym__escape_identifier, + [65925] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1945), 1, - aux_sym_variant_type_repeat1, - STATE(2058), 1, + STATE(1491), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1445), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -183605,16 +143968,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 26, + ACTIONS(1447), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -183632,78 +143998,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [102071] = 7, + [65986] = 33, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2057), 1, - aux_sym_variant_type_repeat1, - STATE(2059), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2449), 1, + anon_sym_PIPE, + ACTIONS(2451), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1035), 1, + sym_function_type, + STATE(1492), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3511), 1, + sym_polyvar_identifier, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3909), 1, + sym_polyvar_declaration, + STATE(3987), 1, + sym__inline_type, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1318), 26, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [102131] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [66101] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2058), 1, - aux_sym_variant_type_repeat1, - STATE(2060), 1, + ACTIONS(2455), 1, + anon_sym_PIPE, + STATE(1493), 1, sym_decorator, + STATE(1496), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1193), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183711,16 +144107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 26, + ACTIONS(1195), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -183738,24 +144137,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [102191] = 6, + [66166] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2061), 1, + STATE(1494), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1863), 14, + ACTIONS(1266), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183763,10 +144164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1861), 25, + sym__identifier, + ACTIONS(1268), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -183790,24 +144192,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [102249] = 6, + [66227] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2062), 1, + ACTIONS(2455), 1, + anon_sym_PIPE, + STATE(1495), 1, sym_decorator, + STATE(1496), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1879), 14, - anon_sym_unpack, + ACTIONS(1199), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183815,13 +144219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1877), 25, - anon_sym_LBRACE, + ACTIONS(1201), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -183841,23 +144249,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [102307] = 8, + [66292] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2963), 1, + ACTIONS(2457), 1, anon_sym_PIPE, - STATE(2016), 1, - aux_sym_variant_type_repeat1, - STATE(2063), 1, + STATE(1496), 2, sym_decorator, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1203), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -183869,13 +144275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 26, + ACTIONS(1205), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -183896,26 +144305,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [102369] = 8, + [66355] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2963), 1, + ACTIONS(2460), 1, anon_sym_PIPE, - STATE(2019), 1, - aux_sym_variant_type_repeat1, - STATE(2064), 1, + STATE(1497), 1, sym_decorator, + STATE(1525), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1247), 15, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183923,14 +144335,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 26, + sym__identifier, + ACTIONS(1249), 25, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -183950,26 +144361,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [102431] = 7, + sym__escape_identifier, + [66420] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2770), 1, + ACTIONS(1240), 1, anon_sym_EQ_GT, - STATE(2065), 1, + STATE(1498), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 13, - anon_sym_COLON, + ACTIONS(1276), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183977,11 +144391,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 25, + sym__identifier, + ACTIONS(1279), 25, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -184003,24 +144417,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [102491] = 6, + sym__escape_identifier, + [66483] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2066), 1, + ACTIONS(2462), 1, + anon_sym_LT, + STATE(1499), 1, sym_decorator, + STATE(1636), 1, + sym_type_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1366), 14, - anon_sym_unpack, - anon_sym_LT, + ACTIONS(1238), 13, + anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184028,13 +144447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1364), 25, - anon_sym_LBRACE, + ACTIONS(1240), 27, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -184054,52 +144475,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [102549] = 13, + [66548] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - ACTIONS(2871), 1, - anon_sym_GT_GT, - STATE(2067), 1, + STATE(1500), 1, sym_decorator, - ACTIONS(2847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2869), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2863), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2865), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1282), 16, anon_sym_unpack, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1729), 16, + sym__identifier, + ACTIONS(1284), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -184108,48 +144515,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [102621] = 9, + [66609] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - STATE(2068), 1, + STATE(1501), 1, sym_decorator, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2865), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 12, + ACTIONS(1302), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1729), 21, + sym__identifier, + ACTIONS(1304), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -184161,6 +144573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -184169,421 +144585,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [102685] = 15, + [66670] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - ACTIONS(2871), 1, - anon_sym_GT_GT, - STATE(2069), 1, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + anon_sym_COLON, + STATE(1502), 1, sym_decorator, - ACTIONS(2847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2869), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(1626), 1, + sym_variant_parameters, + STATE(1637), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2863), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2865), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2845), 4, + ACTIONS(1148), 13, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2873), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1731), 5, - anon_sym_unpack, - anon_sym_async, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - ACTIONS(1729), 12, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - sym__escape_identifier, - [102761] = 18, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2853), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2857), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2861), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - ACTIONS(2871), 1, - anon_sym_GT_GT, - STATE(2070), 1, - sym_decorator, - ACTIONS(2847), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2869), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2863), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2865), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2845), 4, - anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2873), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1731), 5, - anon_sym_unpack, - anon_sym_async, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - ACTIONS(1729), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_GT, - sym__escape_identifier, - [102843] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1680), 1, anon_sym_PIPE, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - ACTIONS(2941), 1, - anon_sym_GT_GT, - ACTIONS(2947), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2949), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2951), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2953), 1, + anon_sym_SLASH, anon_sym_AMP_AMP, - ACTIONS(2970), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, anon_sym_PIPE_PIPE, - ACTIONS(2974), 1, - anon_sym_COLON_GT, - STATE(2071), 1, - sym_decorator, - ACTIONS(2929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2931), 2, - anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2939), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2933), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2935), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2943), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2945), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1678), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_and, - anon_sym_DOT, + ACTIONS(1150), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [102933] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1714), 1, - anon_sym_PIPE, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - ACTIONS(2941), 1, - anon_sym_GT_GT, - ACTIONS(2947), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(2949), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2951), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2953), 1, - anon_sym_AMP_AMP, - ACTIONS(2970), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2974), 1, - anon_sym_COLON_GT, - STATE(2072), 1, - sym_decorator, - ACTIONS(2929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2931), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2939), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2933), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2935), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(2943), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2945), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1712), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [103023] = 17, + anon_sym_COLON_GT, + [66739] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2853), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2861), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - ACTIONS(2871), 1, - anon_sym_GT_GT, - STATE(2073), 1, + STATE(1503), 1, sym_decorator, - ACTIONS(2847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2869), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2863), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2865), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2845), 4, + ACTIONS(1286), 16, + anon_sym_unpack, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2873), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1731), 5, - anon_sym_unpack, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - ACTIONS(1729), 10, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym__identifier, + ACTIONS(1288), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - sym__escape_identifier, - [103103] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1718), 1, - anon_sym_PIPE, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - ACTIONS(2941), 1, - anon_sym_GT_GT, - ACTIONS(2947), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(2949), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2951), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2953), 1, - anon_sym_AMP_AMP, - ACTIONS(2970), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2974), 1, - anon_sym_COLON_GT, - STATE(2074), 1, - sym_decorator, - ACTIONS(2929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2931), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2939), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2933), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2935), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(2943), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2945), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1716), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [103193] = 11, + anon_sym_COLON_GT, + sym__escape_identifier, + [66800] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2712), 1, - anon_sym_LPAREN, - ACTIONS(2714), 1, - anon_sym_DOT, - ACTIONS(2716), 1, - anon_sym_LBRACK, - STATE(1790), 1, - sym_call_arguments, - STATE(2075), 1, + STATE(1496), 1, + aux_sym_variant_type_repeat1, + STATE(1504), 1, sym_decorator, - ACTIONS(2976), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 12, + ACTIONS(1193), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -184596,11 +144725,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 21, + ACTIONS(1195), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -184618,157 +144755,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [103261] = 22, + [66863] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1722), 1, - anon_sym_PIPE, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - ACTIONS(2941), 1, - anon_sym_GT_GT, - ACTIONS(2947), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2949), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2951), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2953), 1, - anon_sym_AMP_AMP, - ACTIONS(2970), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2974), 1, - anon_sym_COLON_GT, - STATE(2076), 1, + STATE(1496), 1, + aux_sym_variant_type_repeat1, + STATE(1505), 1, sym_decorator, - ACTIONS(2929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2931), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2939), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2933), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2935), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2943), 4, + ACTIONS(1199), 12, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2945), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1720), 9, + ACTIONS(1201), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [103351] = 19, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2853), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(2855), 1, - anon_sym_AMP_AMP, - ACTIONS(2857), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2861), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - ACTIONS(2871), 1, - anon_sym_GT_GT, - STATE(2077), 1, - sym_decorator, - ACTIONS(2847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2869), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2863), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2865), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(1731), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - ACTIONS(2845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2873), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, anon_sym_COLON_GT, - sym__escape_identifier, - [103435] = 6, + [66926] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2078), 1, + STATE(1506), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1811), 14, + ACTIONS(1290), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184776,10 +144838,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1809), 25, + sym__identifier, + ACTIONS(1292), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -184803,28 +144866,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [103493] = 9, + [66987] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2978), 1, - anon_sym_EQ_GT, - STATE(2079), 1, + STATE(1507), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1294), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184832,10 +144893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 25, + sym__identifier, + ACTIONS(1296), 26, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -184858,24 +144920,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [103557] = 6, + sym__escape_identifier, + [67048] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2080), 1, + ACTIONS(2460), 1, + anon_sym_PIPE, + STATE(1508), 1, sym_decorator, + STATE(1526), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1971), 14, + ACTIONS(1193), 15, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184883,8 +144951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1969), 25, + sym__identifier, + ACTIONS(1195), 25, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -184910,24 +144978,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [103615] = 6, + [67113] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2081), 1, + STATE(1509), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1895), 14, - anon_sym_unpack, + ACTIONS(1856), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184935,10 +145003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1893), 25, - anon_sym_LBRACE, + ACTIONS(1858), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -184961,25 +145033,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [103673] = 6, + [67174] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2082), 1, + STATE(1510), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1815), 14, + ACTIONS(1298), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184987,10 +145060,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1813), 25, + sym__identifier, + ACTIONS(1300), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -185014,93 +145088,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [103731] = 22, + [67235] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1735), 1, + ACTIONS(2467), 1, anon_sym_PIPE, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - ACTIONS(2941), 1, - anon_sym_GT_GT, - ACTIONS(2947), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2949), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2951), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2953), 1, - anon_sym_AMP_AMP, - ACTIONS(2970), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2974), 1, - anon_sym_COLON_GT, - STATE(2083), 1, - sym_decorator, - ACTIONS(2929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2931), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2939), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2933), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2935), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2943), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2945), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1733), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_and, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [103821] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2084), 1, + STATE(1511), 2, sym_decorator, - ACTIONS(2843), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 11, + ACTIONS(1203), 15, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185108,16 +145117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 26, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + ACTIONS(1205), 25, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -185135,24 +145143,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [103881] = 6, + sym__escape_identifier, + [67298] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2085), 1, + STATE(1512), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1571), 14, + ACTIONS(1424), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185160,10 +145171,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1569), 25, + sym__identifier, + ACTIONS(1426), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -185187,170 +145199,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [103939] = 21, + [67359] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1739), 1, - anon_sym_PIPE, - ACTIONS(2937), 1, - anon_sym_STAR_STAR, - ACTIONS(2941), 1, - anon_sym_GT_GT, - ACTIONS(2947), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2949), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2951), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2953), 1, - anon_sym_AMP_AMP, - ACTIONS(2972), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2974), 1, - anon_sym_COLON_GT, - STATE(2086), 1, + STATE(1513), 1, sym_decorator, - ACTIONS(2929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2931), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2939), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2933), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2935), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2943), 4, + ACTIONS(1143), 15, + anon_sym_EQ, + anon_sym_unpack, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2945), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1737), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + ACTIONS(1138), 27, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_and, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [104027] = 16, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2853), 1, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - ACTIONS(2871), 1, - anon_sym_GT_GT, - STATE(2087), 1, - sym_decorator, - ACTIONS(2847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2869), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2863), 3, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2865), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(2845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2873), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1731), 5, - anon_sym_unpack, - anon_sym_async, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_value_identifier_token1, - ACTIONS(1729), 11, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, sym__escape_identifier, - [104105] = 9, + [67420] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - STATE(2088), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2405), 1, + anon_sym_EQ_GT, + ACTIONS(2470), 1, + anon_sym_COLON, + ACTIONS(2472), 1, + anon_sym_COMMA, + STATE(1514), 1, sym_decorator, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2865), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 12, - anon_sym_unpack, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1729), 21, - anon_sym_LBRACE, + ACTIONS(1398), 26, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, @@ -185363,6 +145303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -185370,34 +145314,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - sym__escape_identifier, - [104169] = 11, + [67491] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2518), 1, - anon_sym_DOT, - ACTIONS(2520), 1, - anon_sym_LBRACK, - STATE(1494), 1, - sym_call_arguments, - STATE(2089), 1, + STATE(1515), 1, sym_decorator, - ACTIONS(2980), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 11, + ACTIONS(1428), 15, + anon_sym_EQ, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185405,12 +145340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 22, + sym__identifier, + ACTIONS(1430), 27, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -185428,47 +145368,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [104237] = 11, + sym__escape_identifier, + [67552] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - STATE(2090), 1, + STATE(1516), 1, sym_decorator, - ACTIONS(2847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2863), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2865), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 10, + ACTIONS(1310), 16, anon_sym_unpack, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1729), 18, + sym__identifier, + ACTIONS(1312), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -185477,6 +145409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -185485,23 +145424,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [104305] = 6, + [67613] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2091), 1, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + ACTIONS(2474), 1, + anon_sym_as, + STATE(1517), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1899), 14, + ACTIONS(1369), 15, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -185510,8 +145454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1897), 25, + sym__identifier, + ACTIONS(1371), 25, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -185537,24 +145481,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [104363] = 6, + [67678] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2092), 1, + ACTIONS(1436), 1, + anon_sym_EQ_GT, + ACTIONS(2476), 1, + anon_sym_as, + STATE(1518), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1987), 14, - anon_sym_unpack, + ACTIONS(1369), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_async, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185562,10 +145509,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1985), 25, - anon_sym_LBRACE, + ACTIONS(1371), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -185588,25 +145538,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, + [67743] = 33, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2478), 1, + anon_sym_PIPE, + STATE(1035), 1, + sym_function_type, + STATE(1519), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3511), 1, + sym_polyvar_identifier, + STATE(3740), 1, + sym_polyvar_declaration, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3987), 1, + sym__inline_type, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - [104421] = 6, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [67858] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2093), 1, + STATE(1520), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1903), 14, + ACTIONS(1322), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185614,10 +145647,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1901), 25, + sym__identifier, + ACTIONS(1324), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -185641,28 +145675,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [104479] = 9, + [67919] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(2982), 1, anon_sym_EQ_GT, - STATE(2094), 1, + ACTIONS(2474), 1, + anon_sym_as, + STATE(1521), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1369), 15, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185670,15 +145705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 25, + sym__identifier, + ACTIONS(1371), 25, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -185696,24 +145731,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [104543] = 6, + sym__escape_identifier, + [67984] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2095), 1, + STATE(1522), 1, sym_decorator, + STATE(1529), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1991), 14, + ACTIONS(1247), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185721,8 +145761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1989), 25, + sym__identifier, + ACTIONS(1249), 25, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -185748,24 +145788,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [104601] = 6, + [68047] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2096), 1, + STATE(1523), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 14, + ACTIONS(1276), 16, anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185773,10 +145815,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - aux_sym_value_identifier_token1, - ACTIONS(1428), 25, + sym__identifier, + ACTIONS(1279), 26, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -185800,31 +145843,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON_GT, sym__escape_identifier, - [104659] = 10, + [68108] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(2984), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(2097), 1, + STATE(1524), 1, sym_decorator, - STATE(2301), 1, - sym_variant_parameters, + STATE(1530), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, + ACTIONS(1193), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185832,13 +145872,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, + sym__identifier, + ACTIONS(1195), 25, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -185856,162 +145898,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [104725] = 22, + sym__escape_identifier, + [68171] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2849), 1, - anon_sym_QMARK, - ACTIONS(2853), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2855), 1, - anon_sym_AMP_AMP, - ACTIONS(2857), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2861), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - ACTIONS(2871), 1, - anon_sym_GT_GT, - ACTIONS(2875), 1, - anon_sym_COLON_GT, - STATE(2098), 1, + ACTIONS(2460), 1, + anon_sym_PIPE, + STATE(1511), 1, + aux_sym_variant_type_repeat1, + STATE(1525), 1, sym_decorator, - ACTIONS(2847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2869), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1680), 3, + ACTIONS(1193), 15, anon_sym_unpack, - anon_sym_async, - aux_sym_value_identifier_token1, - ACTIONS(2863), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2865), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2845), 4, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_as, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2873), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1678), 7, + sym__identifier, + ACTIONS(1195), 25, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [104815] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2849), 1, - anon_sym_QMARK, - ACTIONS(2853), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(2855), 1, - anon_sym_AMP_AMP, - ACTIONS(2857), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(2859), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2861), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2867), 1, - anon_sym_STAR_STAR, - ACTIONS(2871), 1, - anon_sym_GT_GT, - ACTIONS(2875), 1, - anon_sym_COLON_GT, - STATE(2099), 1, - sym_decorator, - ACTIONS(2847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2851), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2869), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1714), 3, - anon_sym_unpack, - anon_sym_async, - aux_sym_value_identifier_token1, - ACTIONS(2863), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2865), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(2845), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2873), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1712), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_COLON_GT, sym__escape_identifier, - [104905] = 7, + [68236] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1960), 1, + ACTIONS(2460), 1, + anon_sym_PIPE, + STATE(1511), 1, aux_sym_variant_type_repeat1, - STATE(2100), 1, + STATE(1526), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 13, - anon_sym_COLON, + ACTIONS(1199), 15, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186019,15 +145986,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 25, + sym__identifier, + ACTIONS(1201), 25, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -186045,25 +146012,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [104965] = 7, + sym__escape_identifier, + [68301] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2101), 1, + STATE(1527), 1, sym_decorator, - STATE(2255), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1326), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186071,15 +146040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 25, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, + sym__identifier, + ACTIONS(1328), 26, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -186097,24 +146067,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [105024] = 6, + sym__escape_identifier, + [68362] = 33, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2480), 1, + anon_sym_PIPE, + STATE(1035), 1, + sym_function_type, + STATE(1528), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3511), 1, + sym_polyvar_identifier, + STATE(3735), 1, + sym_polyvar_declaration, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3987), 1, + sym__inline_type, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [68477] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2102), 1, + STATE(1511), 1, + aux_sym_variant_type_repeat1, + STATE(1529), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 13, - anon_sym_COLON, + ACTIONS(1193), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186122,11 +146179,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 25, + sym__identifier, + ACTIONS(1195), 25, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -186148,156 +146205,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [105081] = 21, + sym__escape_identifier, + [68540] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2990), 1, - anon_sym_QMARK, - ACTIONS(2994), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2996), 1, - anon_sym_AMP_AMP, - ACTIONS(2998), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3000), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3002), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - ACTIONS(3012), 1, - anon_sym_GT_GT, - ACTIONS(3016), 1, - anon_sym_COLON_GT, - STATE(2103), 1, + STATE(1511), 1, + aux_sym_variant_type_repeat1, + STATE(1530), 1, sym_decorator, - ACTIONS(2988), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3010), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3004), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3006), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2986), 4, + ACTIONS(1199), 16, + anon_sym_unpack, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3014), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1716), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + sym__identifier, + ACTIONS(1201), 25, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [105168] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2990), 1, - anon_sym_QMARK, - ACTIONS(2994), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(2996), 1, - anon_sym_AMP_AMP, - ACTIONS(2998), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3000), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3002), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - ACTIONS(3012), 1, - anon_sym_GT_GT, - ACTIONS(3016), 1, - anon_sym_COLON_GT, - STATE(2104), 1, - sym_decorator, - ACTIONS(2988), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3010), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3004), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3006), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(2986), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3014), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1720), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [105255] = 6, + anon_sym_COLON_GT, + sym__escape_identifier, + [68603] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2105), 1, + STATE(1531), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1799), 13, - anon_sym_COLON, + ACTIONS(1330), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186305,11 +146289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 25, + sym__identifier, + ACTIONS(1332), 26, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -186331,24 +146316,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [105312] = 6, + sym__escape_identifier, + [68664] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2106), 1, + STATE(1532), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1803), 13, - anon_sym_COLON, + ACTIONS(1156), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186356,11 +146344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 25, + sym__identifier, + ACTIONS(1158), 26, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -186382,24 +146371,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [105369] = 6, + sym__escape_identifier, + [68725] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2107), 1, + STATE(1533), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1807), 13, - anon_sym_COLON, + ACTIONS(1349), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186407,11 +146399,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 25, + sym__identifier, + ACTIONS(1351), 26, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -186433,24 +146426,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [105426] = 6, + sym__escape_identifier, + [68786] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2108), 1, + ACTIONS(2482), 1, + anon_sym_PIPE, + STATE(1534), 1, sym_decorator, + STATE(1537), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1811), 13, + ACTIONS(1193), 12, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186458,15 +146455,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1809), 25, - anon_sym_LPAREN, + ACTIONS(1195), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -186484,24 +146484,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [105483] = 6, + [68851] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2109), 1, + ACTIONS(2359), 1, + anon_sym_COLON, + STATE(1032), 1, + sym_type_annotation, + STATE(1535), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1815), 13, - anon_sym_COLON, + ACTIONS(1156), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186509,15 +146512,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1813), 25, - anon_sym_LPAREN, + ACTIONS(1158), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -186535,24 +146541,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [105540] = 6, + [68916] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2110), 1, + ACTIONS(2482), 1, + anon_sym_PIPE, + STATE(1536), 1, sym_decorator, + STATE(1537), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1628), 13, + ACTIONS(1199), 12, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186560,15 +146569,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1626), 25, - anon_sym_LPAREN, + ACTIONS(1201), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -186586,24 +146598,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [105597] = 6, + [68981] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2111), 1, + ACTIONS(2484), 1, + anon_sym_PIPE, + STATE(1537), 2, sym_decorator, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1819), 13, + ACTIONS(1203), 12, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186611,15 +146625,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 25, - anon_sym_LPAREN, + ACTIONS(1205), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -186637,90 +146654,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [105654] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2990), 1, - anon_sym_QMARK, - ACTIONS(2994), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2996), 1, - anon_sym_AMP_AMP, - ACTIONS(2998), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3000), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3002), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - ACTIONS(3012), 1, - anon_sym_GT_GT, - ACTIONS(3016), 1, - anon_sym_COLON_GT, - STATE(2112), 1, - sym_decorator, - ACTIONS(2988), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3010), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3004), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3006), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2986), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3014), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1678), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [105741] = 6, + [69044] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2113), 1, + STATE(1538), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1823), 13, - anon_sym_COLON, + ACTIONS(1457), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186728,15 +146679,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1821), 25, + ACTIONS(1459), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -186754,24 +146709,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [105798] = 6, + [69105] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2114), 1, + ACTIONS(2433), 1, + anon_sym_COLON, + STATE(1539), 1, sym_decorator, + STATE(1666), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1951), 13, - anon_sym_COLON, + ACTIONS(1156), 13, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186779,13 +146738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1949), 25, + ACTIONS(1158), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -186805,24 +146766,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [105855] = 6, + [69170] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2115), 1, + STATE(1540), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 13, - anon_sym_COLON, + ACTIONS(1392), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186830,11 +146793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 25, + sym__identifier, + ACTIONS(1394), 26, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -186856,103 +146820,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [105912] = 13, + sym__escape_identifier, + [69231] = 33, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - ACTIONS(3012), 1, - anon_sym_GT_GT, - STATE(2116), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2487), 1, + anon_sym_PIPE, + STATE(1035), 1, + sym_function_type, + STATE(1541), 1, sym_decorator, - ACTIONS(2988), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3010), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3511), 1, + sym_polyvar_identifier, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3939), 1, + sym_polyvar_declaration, + STATE(3987), 1, + sym__inline_type, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3004), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3006), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1729), 18, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [105983] = 9, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [69346] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - STATE(2117), 1, + STATE(1542), 1, sym_decorator, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3006), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1306), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 23, + ACTIONS(1308), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -186961,85 +146947,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [106046] = 15, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - ACTIONS(3012), 1, - anon_sym_GT_GT, - STATE(2118), 1, - sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2988), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3010), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3004), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3006), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(2986), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3014), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 14, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [106121] = 6, + [69407] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2119), 1, + ACTIONS(2445), 1, + anon_sym_else, + STATE(1543), 1, sym_decorator, + STATE(1617), 1, + aux_sym_if_expression_repeat1, + STATE(1808), 1, + sym_else_if_clause, + STATE(1931), 1, + sym_else_clause, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1563), 13, + ACTIONS(1210), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, @@ -187053,7 +146991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1559), 25, + ACTIONS(1212), 25, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -187079,295 +147017,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [106178] = 18, + [69476] = 33, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2994), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2998), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3002), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - ACTIONS(3012), 1, - anon_sym_GT_GT, - STATE(2120), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2489), 1, + anon_sym_PIPE, + STATE(1035), 1, + sym_function_type, + STATE(1544), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2988), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3010), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3511), 1, + sym_polyvar_identifier, + STATE(3679), 1, + sym_polyvar_declaration, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3987), 1, + sym__inline_type, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3004), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3006), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2986), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3014), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 11, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_GT, - [106259] = 17, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [69591] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2994), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3002), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - ACTIONS(3012), 1, - anon_sym_GT_GT, - STATE(2121), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2382), 1, + anon_sym_EQ_GT, + ACTIONS(2384), 1, + anon_sym_PIPE, + ACTIONS(2491), 1, + anon_sym_as, + STATE(1545), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2988), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3010), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2784), 1, + sym_as_aliasing, + ACTIONS(2379), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3004), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3006), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2986), 4, + ACTIONS(1396), 11, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3014), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 12, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1398), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - [106338] = 19, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2994), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(2996), 1, - anon_sym_AMP_AMP, - ACTIONS(2998), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3002), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - ACTIONS(3012), 1, - anon_sym_GT_GT, - STATE(2122), 1, - sym_decorator, - ACTIONS(2988), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3010), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3004), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3006), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(2986), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3014), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 11, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, anon_sym_COLON_GT, - [106421] = 16, + [69666] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2994), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - ACTIONS(3012), 1, - anon_sym_GT_GT, - STATE(2123), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2493), 1, + anon_sym_EQ_GT, + STATE(1546), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2988), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3010), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3004), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3006), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2986), 4, + ACTIONS(1396), 11, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3014), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 13, + ACTIONS(1398), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_COLON_GT, - [106498] = 9, + [69733] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - STATE(2124), 1, + ACTIONS(2455), 1, + anon_sym_PIPE, + STATE(1493), 1, + aux_sym_variant_type_repeat1, + STATE(1547), 1, sym_decorator, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3006), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1247), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 23, + ACTIONS(1249), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -187376,6 +147265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -187383,55 +147276,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [106561] = 11, + [69798] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - STATE(2125), 1, + ACTIONS(2455), 1, + anon_sym_PIPE, + STATE(1495), 1, + aux_sym_variant_type_repeat1, + STATE(1548), 1, sym_decorator, - ACTIONS(2988), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3004), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3006), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 7, + ACTIONS(1193), 11, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 20, + ACTIONS(1195), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -187439,103 +147333,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [106628] = 13, + [69863] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - ACTIONS(3030), 1, - anon_sym_GT_GT, - STATE(2126), 1, + STATE(1549), 1, sym_decorator, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3028), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3022), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3024), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 6, + ACTIONS(1449), 13, + anon_sym_EQ, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 18, - anon_sym_LBRACE, + ACTIONS(1451), 29, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [106699] = 9, + [69924] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - STATE(2127), 1, + STATE(1504), 1, + aux_sym_variant_type_repeat1, + STATE(1550), 1, sym_decorator, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3024), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1247), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 23, - anon_sym_LBRACE, + ACTIONS(1249), 29, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -187544,6 +147433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -187551,275 +147444,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [106762] = 15, + [69987] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - ACTIONS(3030), 1, - anon_sym_GT_GT, - STATE(2128), 1, + STATE(1505), 1, + aux_sym_variant_type_repeat1, + STATE(1551), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3028), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3022), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3024), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3032), 4, + ACTIONS(1193), 12, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3034), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 14, - anon_sym_LBRACE, + ACTIONS(1195), 29, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [106837] = 18, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - ACTIONS(3030), 1, - anon_sym_GT_GT, - ACTIONS(3036), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3038), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3040), 1, - anon_sym_CARET_CARET_CARET, - STATE(2129), 1, - sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3028), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3022), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3024), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3032), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3034), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, anon_sym_COLON_GT, - [106918] = 17, + [70050] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - ACTIONS(3030), 1, - anon_sym_GT_GT, - ACTIONS(3036), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3040), 1, - anon_sym_CARET_CARET_CARET, - STATE(2130), 1, + ACTIONS(2495), 1, + anon_sym_LPAREN, + STATE(1552), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3028), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(1594), 1, + sym__extension_expression_payload, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3022), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3024), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3032), 4, + ACTIONS(1507), 13, + anon_sym_EQ, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3034), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 12, - anon_sym_LBRACE, + ACTIONS(1509), 27, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - [106997] = 19, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - ACTIONS(3030), 1, - anon_sym_GT_GT, - ACTIONS(3036), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3038), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3040), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3042), 1, - anon_sym_AMP_AMP, - STATE(2131), 1, - sym_decorator, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3028), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3022), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3024), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3032), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3034), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, anon_sym_COLON_GT, - [107080] = 8, + [70115] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3044), 1, - anon_sym_PIPE, - STATE(2132), 1, + STATE(1553), 1, sym_decorator, - STATE(2135), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1270), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -187827,13 +147584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 25, + sym__identifier, + ACTIONS(1272), 26, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -187853,87 +147611,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [107141] = 16, + sym__escape_identifier, + [70176] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - ACTIONS(3030), 1, - anon_sym_GT_GT, - ACTIONS(3036), 1, - anon_sym_AMP_AMP_AMP, - STATE(2133), 1, + ACTIONS(1465), 1, + anon_sym_COLON, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + STATE(1554), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3028), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3022), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3024), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3032), 4, + ACTIONS(1385), 12, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3034), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 13, - anon_sym_LBRACE, + ACTIONS(1387), 28, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_COLON_GT, - [107218] = 8, + [70241] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3044), 1, - anon_sym_PIPE, - STATE(2134), 1, + STATE(1555), 1, sym_decorator, - STATE(2135), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1369), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -187941,13 +147696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 25, + sym__identifier, + ACTIONS(1371), 26, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -187967,25 +147723,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [107279] = 7, + sym__escape_identifier, + [70302] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3046), 1, - anon_sym_PIPE, - STATE(2135), 2, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + STATE(1556), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1396), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -187993,13 +147752,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 25, + ACTIONS(1398), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -188019,44 +147781,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [107338] = 9, + [70367] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - STATE(2136), 1, + ACTIONS(2500), 1, + anon_sym_COLON, + ACTIONS(2505), 1, + anon_sym_PIPE, + STATE(1557), 1, sym_decorator, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, + ACTIONS(2503), 2, + anon_sym_DOT_DOT, + anon_sym_as, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3024), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(2497), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1396), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1398), 22, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -188066,6 +147829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -188073,55 +147840,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [107401] = 11, + [70436] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - STATE(2137), 1, + STATE(1537), 1, + aux_sym_variant_type_repeat1, + STATE(1558), 1, sym_decorator, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3022), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3024), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 7, + ACTIONS(1193), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 20, + ACTIONS(1195), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -188129,24 +147896,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [107468] = 6, + [70499] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2138), 1, + STATE(1537), 1, + aux_sym_variant_type_repeat1, + STATE(1559), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1827), 13, + ACTIONS(1199), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188154,15 +147923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1825), 25, - anon_sym_LPAREN, + ACTIONS(1201), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -188180,93 +147952,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [107525] = 21, + [70562] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - ACTIONS(3030), 1, - anon_sym_GT_GT, - ACTIONS(3036), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3038), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3040), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3042), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_QMARK, - ACTIONS(3051), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - STATE(2139), 1, + STATE(1558), 1, + aux_sym_variant_type_repeat1, + STATE(1560), 1, sym_decorator, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3028), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3022), 3, + ACTIONS(1247), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1249), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3024), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3032), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3034), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1678), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [107612] = 8, + anon_sym_COLON_GT, + [70625] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3055), 1, - anon_sym_PIPE, - STATE(2140), 1, - sym_decorator, - STATE(2157), 1, + STATE(1559), 1, aux_sym_variant_type_repeat1, + STATE(1561), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1193), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188274,14 +148035,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 24, + ACTIONS(1195), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -188299,24 +148064,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [107673] = 6, + [70688] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2141), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2507), 1, + anon_sym_EQ_GT, + STATE(1562), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1831), 13, - anon_sym_COLON, + ACTIONS(1396), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188324,11 +148094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 25, + ACTIONS(1398), 27, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -188350,24 +148122,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [107730] = 6, + [70755] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2142), 1, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + ACTIONS(2476), 1, + anon_sym_as, + STATE(1563), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1835), 13, - anon_sym_COLON, + ACTIONS(1369), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188375,11 +148150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1833), 25, + ACTIONS(1371), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -188401,156 +148179,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [107787] = 21, + [70820] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - ACTIONS(3030), 1, - anon_sym_GT_GT, - ACTIONS(3036), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3038), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3040), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3042), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_QMARK, - ACTIONS(3051), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - STATE(2143), 1, + STATE(1564), 1, sym_decorator, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3028), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3022), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3024), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3032), 4, + ACTIONS(1377), 16, + anon_sym_unpack, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3034), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1733), 9, + sym__identifier, + ACTIONS(1379), 26, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [107874] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - ACTIONS(3030), 1, - anon_sym_GT_GT, - ACTIONS(3036), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3038), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3040), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3042), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_QMARK, - ACTIONS(3051), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - STATE(2144), 1, - sym_decorator, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3028), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3022), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3024), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3032), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3034), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1712), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [107961] = 6, + anon_sym_COLON_GT, + sym__escape_identifier, + [70881] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2145), 1, + STATE(1565), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1839), 13, - anon_sym_COLON, + ACTIONS(1381), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188558,11 +148261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1837), 25, + sym__identifier, + ACTIONS(1383), 26, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -188584,91 +148288,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [108018] = 22, + sym__escape_identifier, + [70942] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_AMP_AMP, - ACTIONS(3069), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3071), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - ACTIONS(3083), 1, - anon_sym_GT_GT, - ACTIONS(3087), 1, - anon_sym_COLON_GT, - STATE(2146), 1, + ACTIONS(2482), 1, + anon_sym_PIPE, + STATE(1534), 1, + aux_sym_variant_type_repeat1, + STATE(1566), 1, sym_decorator, - ACTIONS(1718), 2, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1247), 12, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3059), 2, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3063), 2, + anon_sym_GT, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3075), 3, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1249), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3077), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3057), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3085), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1716), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [108107] = 6, + anon_sym_COLON_GT, + [71007] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2147), 1, + ACTIONS(2482), 1, + anon_sym_PIPE, + STATE(1536), 1, + aux_sym_variant_type_repeat1, + STATE(1567), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1843), 13, + ACTIONS(1193), 12, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188676,15 +148374,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1841), 25, - anon_sym_LPAREN, + ACTIONS(1195), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -188702,27 +148403,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [108164] = 8, + [71072] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2807), 1, - anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(2148), 1, + ACTIONS(2509), 1, + anon_sym_PIPE, + STATE(1568), 1, sym_decorator, + STATE(1570), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1193), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188730,14 +148432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1195), 27, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -188755,18 +148460,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [108225] = 6, + [71137] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2149), 1, + ACTIONS(2509), 1, + anon_sym_PIPE, + STATE(1569), 1, sym_decorator, + STATE(1570), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1847), 13, + ACTIONS(1199), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, @@ -188780,13 +148489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1845), 25, + ACTIONS(1201), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -188806,18 +148517,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [108282] = 6, + [71202] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2150), 1, + ACTIONS(2511), 1, + anon_sym_PIPE, + STATE(1570), 2, sym_decorator, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1851), 13, + ACTIONS(1203), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, @@ -188831,13 +148545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1849), 25, + ACTIONS(1205), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -188857,24 +148573,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [108339] = 6, + [71265] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2151), 1, + ACTIONS(1389), 1, + anon_sym_EQ_GT, + STATE(1571), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1855), 13, - anon_sym_COLON, + ACTIONS(1385), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188882,11 +148602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1853), 25, + sym__identifier, + ACTIONS(1387), 25, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -188908,83 +148628,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [108396] = 20, + sym__escape_identifier, + [71328] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - ACTIONS(3030), 1, - anon_sym_GT_GT, - ACTIONS(3036), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3038), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3040), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3042), 1, - anon_sym_AMP_AMP, - ACTIONS(3051), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - STATE(2152), 1, + STATE(1572), 1, sym_decorator, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3028), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3022), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3024), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3032), 4, + ACTIONS(1318), 16, + anon_sym_unpack, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3034), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1737), 10, + sym__identifier, + ACTIONS(1320), 26, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [108481] = 6, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + sym__escape_identifier, + [71389] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2153), 1, + ACTIONS(2509), 1, + anon_sym_PIPE, + STATE(1568), 1, + aux_sym_variant_type_repeat1, + STATE(1573), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1859), 13, + ACTIONS(1247), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, @@ -188998,13 +148713,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 25, + ACTIONS(1249), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -189024,156 +148741,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [108538] = 21, + [71454] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - ACTIONS(3030), 1, - anon_sym_GT_GT, - ACTIONS(3036), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3038), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3040), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3042), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_QMARK, - ACTIONS(3051), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - STATE(2154), 1, + ACTIONS(2509), 1, + anon_sym_PIPE, + STATE(1569), 1, + aux_sym_variant_type_repeat1, + STATE(1574), 1, sym_decorator, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3028), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3022), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3024), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3032), 4, + ACTIONS(1193), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3034), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1716), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1195), 27, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [108625] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3026), 1, - anon_sym_STAR_STAR, - ACTIONS(3030), 1, - anon_sym_GT_GT, - ACTIONS(3036), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3038), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3040), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3042), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_QMARK, - ACTIONS(3051), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - STATE(2155), 1, - sym_decorator, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3020), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3028), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3022), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3024), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3032), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3034), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1720), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [108712] = 6, + anon_sym_COLON_GT, + [71519] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2156), 1, + STATE(1570), 1, + aux_sym_variant_type_repeat1, + STATE(1575), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1312), 13, + ACTIONS(1193), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189181,13 +148826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1310), 25, + ACTIONS(1195), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -189207,26 +148854,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [108769] = 7, + [71582] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3089), 1, - anon_sym_PIPE, - STATE(2157), 2, - sym_decorator, + STATE(1570), 1, aux_sym_variant_type_repeat1, + STATE(1576), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 12, + ACTIONS(1199), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189234,14 +148882,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1201), 27, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -189259,24 +148910,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [108828] = 6, + [71645] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2158), 1, + STATE(1577), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1863), 13, - anon_sym_COLON, + ACTIONS(1238), 16, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189284,11 +148937,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1861), 25, + sym__identifier, + ACTIONS(1240), 26, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -189310,22 +148964,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [108885] = 8, + sym__escape_identifier, + [71706] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2819), 1, - anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(2159), 1, + STATE(1578), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1453), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -189338,14 +148990,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 24, + ACTIONS(1455), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -189363,158 +149020,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [108946] = 22, + [71767] = 33, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_AMP_AMP, - ACTIONS(3069), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3071), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - ACTIONS(3083), 1, - anon_sym_GT_GT, - ACTIONS(3087), 1, - anon_sym_COLON_GT, - STATE(2160), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(2514), 1, + anon_sym_PIPE, + STATE(1035), 1, + sym_function_type, + STATE(1579), 1, sym_decorator, - ACTIONS(1722), 2, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3059), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3511), 1, + sym_polyvar_identifier, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3827), 1, + sym_polyvar_declaration, + STATE(3987), 1, + sym__inline_type, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3075), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3077), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3057), 4, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [71882] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1575), 1, + aux_sym_variant_type_repeat1, + STATE(1580), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1247), 14, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3085), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1720), 7, + ACTIONS(1249), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [109035] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2990), 1, - anon_sym_QMARK, - ACTIONS(2994), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(2996), 1, - anon_sym_AMP_AMP, - ACTIONS(2998), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3000), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3002), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3008), 1, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3012), 1, - anon_sym_GT_GT, - ACTIONS(3016), 1, - anon_sym_COLON_GT, - STATE(2161), 1, - sym_decorator, - ACTIONS(2988), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3010), 2, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [71945] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1581), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3004), 3, + ACTIONS(1334), 16, + anon_sym_unpack, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_async, + anon_sym_as, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym__identifier, + ACTIONS(1336), 26, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3006), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(2986), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3014), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1712), 9, + anon_sym_COLON_GT, + sym__escape_identifier, + [72006] = 9, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2516), 1, + anon_sym_EQ_GT, + STATE(1582), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1396), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1398), 26, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [109122] = 7, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [72072] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2578), 1, - anon_sym_EQ_GT, - STATE(2162), 1, + STATE(1583), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 12, + ACTIONS(1266), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189522,13 +149296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 25, + ACTIONS(1268), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -189548,24 +149324,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109181] = 6, + [72132] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2163), 1, + STATE(1584), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1867), 13, + ACTIONS(1282), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189573,13 +149350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 25, + ACTIONS(1284), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -189599,24 +149378,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109238] = 6, + [72192] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2164), 1, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + ACTIONS(2518), 1, + anon_sym_as, + STATE(1585), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1871), 13, + ACTIONS(1369), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189624,7 +149408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1869), 25, + ACTIONS(1371), 25, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -189650,24 +149434,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109295] = 6, + [72256] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2165), 1, + ACTIONS(1240), 1, + anon_sym_EQ_GT, + STATE(1586), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1632), 13, + ACTIONS(1276), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189675,13 +149462,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1630), 25, + ACTIONS(1279), 26, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -189701,24 +149489,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109352] = 6, + [72318] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2166), 1, + STATE(1587), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1875), 13, + ACTIONS(1286), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189726,13 +149515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1873), 25, + ACTIONS(1288), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -189752,24 +149543,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109409] = 6, + [72378] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2167), 1, + STATE(1588), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1879), 13, + ACTIONS(1290), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189777,13 +149569,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1877), 25, + ACTIONS(1292), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -189803,24 +149597,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109466] = 6, + [72438] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2168), 1, + STATE(1589), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1883), 13, + ACTIONS(1294), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189828,13 +149623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 25, + ACTIONS(1296), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -189854,24 +149651,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109523] = 6, + [72498] = 32, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2169), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1035), 1, + sym_function_type, + STATE(1590), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3511), 1, + sym_polyvar_identifier, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3761), 1, + sym_polyvar_declaration, + STATE(3987), 1, + sym__inline_type, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [72610] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1591), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1887), 13, + ACTIONS(1230), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189879,13 +149757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1885), 25, + ACTIONS(1232), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -189905,24 +149785,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109580] = 6, + [72670] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2170), 1, + STATE(1592), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1891), 13, + ACTIONS(1298), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189930,13 +149811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1889), 25, + ACTIONS(1300), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -189956,30 +149839,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109637] = 10, + [72730] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2500), 1, - anon_sym_LPAREN, - ACTIONS(3092), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(2171), 1, + STATE(1593), 1, sym_decorator, - STATE(2485), 1, - sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, + ACTIONS(1310), 14, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -189988,12 +149865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 22, + ACTIONS(1312), 27, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -190011,19 +149893,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109702] = 6, + [72790] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2172), 1, + STATE(1594), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1899), 13, + ACTIONS(1636), 13, + anon_sym_EQ, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1638), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [72850] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1595), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1143), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -190036,15 +149973,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1897), 25, + ACTIONS(1138), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -190062,24 +150001,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109759] = 6, + [72910] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2173), 1, + STATE(1596), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1636), 13, + ACTIONS(1322), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190087,13 +150027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1634), 25, + ACTIONS(1324), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -190113,24 +150055,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109816] = 6, + [72970] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2174), 1, + STATE(1597), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1903), 13, + ACTIONS(1326), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190138,13 +150081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1901), 25, + ACTIONS(1328), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -190164,24 +150109,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109873] = 6, + [73030] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2175), 1, + STATE(1598), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1330), 14, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1332), 27, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [73090] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1599), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1907), 13, + ACTIONS(1334), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190189,13 +150189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1905), 25, + ACTIONS(1336), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -190215,24 +150217,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109930] = 6, + [73150] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2176), 1, + STATE(1600), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1911), 13, + ACTIONS(1349), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190240,13 +150243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1909), 25, + ACTIONS(1351), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -190266,24 +150271,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [109987] = 6, + [73210] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2177), 1, + ACTIONS(1436), 1, + anon_sym_EQ_GT, + ACTIONS(2518), 1, + anon_sym_as, + STATE(1601), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1915), 13, + ACTIONS(1369), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190291,7 +150301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1913), 25, + ACTIONS(1371), 25, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -190317,75 +150327,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110044] = 6, + [73274] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2178), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3094), 17, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_PERCENT, - anon_sym_TILDE_TILDE_TILDE, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(3096), 21, - anon_sym_await, - anon_sym_module, - anon_sym_unpack, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_assert, - anon_sym_TILDE, - anon_sym_lazy, - anon_sym_SLASH, - anon_sym_for, - anon_sym_while, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [110101] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2179), 1, + STATE(1602), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1640), 13, + ACTIONS(1276), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190393,13 +150353,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1638), 25, + ACTIONS(1279), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -190419,24 +150381,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110158] = 6, + [73334] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2180), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2405), 1, + anon_sym_EQ_GT, + STATE(1603), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1644), 13, - anon_sym_COLON, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190444,11 +150410,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1642), 25, + ACTIONS(1398), 27, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -190470,24 +150438,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110215] = 7, + [73400] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3098), 1, - anon_sym_COLON, - STATE(2181), 1, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(1254), 1, + anon_sym_DOT, + STATE(1604), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1183), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190495,14 +150467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 26, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(1185), 26, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -190522,27 +150494,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110274] = 8, + [73464] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3055), 1, - anon_sym_PIPE, - STATE(2182), 1, + STATE(1605), 1, sym_decorator, - STATE(2264), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, - anon_sym_COLON, + ACTIONS(1143), 15, + anon_sym_EQ, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190550,14 +150520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 24, + sym__identifier, + ACTIONS(1138), 26, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -190575,26 +150547,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110335] = 10, + sym__escape_identifier, + [73524] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2610), 1, - anon_sym_LPAREN, - ACTIONS(3100), 1, - anon_sym_COLON, - STATE(1695), 1, - sym_type_annotation, - STATE(2183), 1, + STATE(1606), 1, sym_decorator, - STATE(2473), 1, - sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, + ACTIONS(1738), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -190607,12 +150573,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 22, + ACTIONS(1740), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -190630,24 +150602,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110400] = 6, + [73584] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2184), 1, + STATE(1607), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1919), 13, - anon_sym_COLON, + ACTIONS(1534), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190655,13 +150626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1917), 25, + ACTIONS(1536), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_else, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -190681,24 +150656,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110457] = 6, + [73644] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2185), 1, + ACTIONS(2520), 1, + sym_regex_flags, + STATE(1608), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1923), 13, - anon_sym_COLON, + ACTIONS(1501), 13, + anon_sym_and, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190706,11 +150683,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1921), 25, + ACTIONS(1503), 27, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -190732,24 +150711,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110514] = 6, + [73706] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2186), 1, + STATE(1609), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1927), 13, + ACTIONS(1302), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190757,13 +150737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1925), 25, + ACTIONS(1304), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -190783,75 +150765,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110571] = 6, + [73766] = 32, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2187), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1035), 1, + sym_function_type, + STATE(1610), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3511), 1, + sym_polyvar_identifier, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3880), 1, + sym_polyvar_declaration, + STATE(3987), 1, + sym__inline_type, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1931), 13, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1929), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [110628] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [73878] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2188), 1, + ACTIONS(2522), 1, + anon_sym_PIPE, + STATE(1611), 1, sym_decorator, + STATE(1647), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1935), 13, + ACTIONS(1199), 12, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190859,15 +150873,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1933), 25, - anon_sym_LPAREN, + ACTIONS(1201), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -190885,24 +150901,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110685] = 6, + [73942] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2189), 1, + STATE(1612), 1, sym_decorator, + STATE(1670), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1939), 13, + ACTIONS(1247), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190910,15 +150928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1937), 25, - anon_sym_LPAREN, + ACTIONS(1249), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -190936,24 +150956,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110742] = 6, + [74004] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2190), 1, + STATE(1613), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1943), 13, - anon_sym_COLON, + ACTIONS(1473), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190961,13 +150980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1941), 25, + ACTIONS(1475), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_else, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -190987,24 +151010,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110799] = 6, + [74064] = 32, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2191), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1035), 1, + sym_function_type, + STATE(1614), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3511), 1, + sym_polyvar_identifier, + STATE(3711), 1, + sym_polyvar_declaration, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3987), 1, + sym__inline_type, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [74176] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1615), 1, sym_decorator, + STATE(1671), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1947), 13, + ACTIONS(1193), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -191012,15 +151117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1945), 25, - anon_sym_LPAREN, + ACTIONS(1195), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -191038,24 +151145,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110856] = 6, + [74238] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2192), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2382), 1, + anon_sym_EQ_GT, + STATE(1616), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1767), 13, - anon_sym_COLON, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -191063,12 +151174,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1765), 25, + ACTIONS(1398), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -191089,18 +151202,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110913] = 6, + [74304] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2193), 1, + ACTIONS(2524), 1, + anon_sym_else, + STATE(1808), 1, + sym_else_if_clause, + STATE(1617), 2, sym_decorator, + aux_sym_if_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1648), 13, + ACTIONS(1338), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, @@ -191114,7 +151232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1646), 25, + ACTIONS(1340), 25, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -191140,91 +151258,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [110970] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_AMP_AMP, - ACTIONS(3069), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3071), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - ACTIONS(3083), 1, - anon_sym_GT_GT, - ACTIONS(3087), 1, - anon_sym_COLON_GT, - STATE(2194), 1, - sym_decorator, - ACTIONS(1680), 2, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3059), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3075), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3077), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3057), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3085), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1678), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [111059] = 6, + [74368] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2195), 1, + STATE(1618), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1955), 13, + ACTIONS(1179), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -191232,13 +151284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1953), 25, + ACTIONS(1177), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -191258,25 +151312,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [111116] = 7, + [74428] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2196), 1, + ACTIONS(1181), 1, + sym__identifier, + STATE(1619), 1, sym_decorator, - ACTIONS(2925), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 11, + ACTIONS(2019), 3, + anon_sym_DOT, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(1179), 14, + anon_sym_and, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -191284,14 +151344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 25, + ACTIONS(1177), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, @@ -191310,24 +151368,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [111175] = 6, + [74492] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2197), 1, + STATE(1620), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1895), 13, + ACTIONS(1381), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -191335,13 +151394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1893), 25, + ACTIONS(1383), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -191361,43 +151422,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [111232] = 9, + [74552] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - STATE(2198), 1, + STATE(1621), 1, sym_decorator, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3077), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 11, + ACTIONS(1890), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 21, + ACTIONS(1892), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -191408,6 +151465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -191415,355 +151476,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [111295] = 15, + [74612] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - ACTIONS(3083), 1, - anon_sym_GT_GT, - STATE(2199), 1, + ACTIONS(2527), 1, + anon_sym_PIPE, + STATE(1622), 1, sym_decorator, - ACTIONS(3059), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(1624), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3075), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3077), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 4, + ACTIONS(1193), 13, anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3057), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3085), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 12, + ACTIONS(1195), 26, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [111370] = 18, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3065), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3069), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - ACTIONS(3083), 1, - anon_sym_GT_GT, - STATE(2200), 1, - sym_decorator, - ACTIONS(3059), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3075), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3077), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(1731), 4, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3057), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3085), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, anon_sym_COLON_GT, - [111451] = 17, + [74676] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3065), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - ACTIONS(3083), 1, - anon_sym_GT_GT, - STATE(2201), 1, + ACTIONS(2527), 1, + anon_sym_PIPE, + STATE(1623), 1, sym_decorator, - ACTIONS(3059), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(1624), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3075), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3077), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 4, + ACTIONS(1199), 13, anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3057), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3085), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 10, + ACTIONS(1201), 26, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - [111530] = 19, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3065), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_AMP_AMP, - ACTIONS(3069), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3073), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - ACTIONS(3083), 1, - anon_sym_GT_GT, - STATE(2202), 1, - sym_decorator, - ACTIONS(3059), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1731), 3, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_PIPE_PIPE, - ACTIONS(3075), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3077), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3057), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3085), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_GT, - [111613] = 16, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3065), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3079), 1, anon_sym_STAR_STAR, - ACTIONS(3083), 1, - anon_sym_GT_GT, - STATE(2203), 1, - sym_decorator, - ACTIONS(3059), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3081), 2, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3075), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3077), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 4, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3057), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3085), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [111690] = 9, + [74740] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - STATE(2204), 1, + ACTIONS(2529), 1, + anon_sym_PIPE, + STATE(1624), 2, sym_decorator, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3077), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 11, + ACTIONS(1203), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 21, + ACTIONS(1205), 26, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -191772,6 +151632,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -191779,147 +151643,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [111753] = 11, + [74802] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - STATE(2205), 1, + ACTIONS(1389), 1, + anon_sym_EQ_GT, + STATE(1625), 1, sym_decorator, - ACTIONS(3059), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3075), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3077), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1385), 14, anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 18, + ACTIONS(1387), 26, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [111820] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1735), 1, - anon_sym_PIPE, - ACTIONS(3106), 1, - anon_sym_QMARK, - ACTIONS(3110), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3114), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3116), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3118), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_GT_GT, - ACTIONS(3132), 1, - anon_sym_COLON_GT, - STATE(2206), 1, - sym_decorator, - ACTIONS(3104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3120), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3122), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3102), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3130), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1733), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [111909] = 6, + anon_sym_COLON_GT, + [74864] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2207), 1, + ACTIONS(2465), 1, + anon_sym_COLON, + STATE(1626), 1, sym_decorator, + STATE(1666), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1959), 13, - anon_sym_COLON, + ACTIONS(1156), 13, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -191927,13 +151727,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1957), 25, + ACTIONS(1158), 26, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -191953,24 +151754,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [111966] = 6, + [74928] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2208), 1, + ACTIONS(2441), 1, + anon_sym_COLON, + STATE(1032), 1, + sym_type_annotation, + STATE(1627), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1963), 13, - anon_sym_COLON, + ACTIONS(1156), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -191978,15 +151782,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1961), 25, - anon_sym_LPAREN, + ACTIONS(1158), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -192004,24 +151810,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [112023] = 6, + [74992] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2209), 1, + ACTIONS(2535), 1, + anon_sym_COLON, + ACTIONS(2538), 1, + anon_sym_PIPE, + ACTIONS(2540), 1, + anon_sym_as, + STATE(1628), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1755), 13, - anon_sym_COLON, + ACTIONS(2532), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1566), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -192029,11 +151844,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 25, + ACTIONS(1568), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -192055,90 +151868,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [112080] = 21, + [75060] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1739), 1, + ACTIONS(2545), 1, + anon_sym_COLON, + ACTIONS(2548), 1, anon_sym_PIPE, - ACTIONS(3110), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3114), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3116), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3118), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_GT_GT, - ACTIONS(3132), 1, - anon_sym_COLON_GT, - STATE(2210), 1, + ACTIONS(2550), 1, + anon_sym_as, + STATE(1629), 1, sym_decorator, - ACTIONS(3104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3120), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3122), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3102), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3130), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1737), 9, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2542), 4, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [112167] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2211), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1967), 13, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1570), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -192146,11 +151902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1965), 25, + ACTIONS(1572), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -192172,24 +151926,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [112224] = 6, + [75128] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2212), 1, + STATE(1630), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1652), 13, + ACTIONS(1318), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -192197,13 +151952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1650), 25, + ACTIONS(1320), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -192223,18 +151980,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [112281] = 6, + [75188] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2213), 1, + ACTIONS(2527), 1, + anon_sym_PIPE, + STATE(1622), 1, + aux_sym_variant_type_repeat1, + STATE(1631), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1971), 13, + ACTIONS(1247), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, @@ -192248,13 +152009,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1969), 25, + ACTIONS(1249), 26, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -192274,169 +152036,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [112338] = 21, + [75252] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2990), 1, - anon_sym_QMARK, - ACTIONS(2994), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2996), 1, - anon_sym_AMP_AMP, - ACTIONS(2998), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3000), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3002), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - ACTIONS(3012), 1, - anon_sym_GT_GT, - ACTIONS(3016), 1, - anon_sym_COLON_GT, - STATE(2214), 1, + ACTIONS(2527), 1, + anon_sym_PIPE, + STATE(1623), 1, + aux_sym_variant_type_repeat1, + STATE(1632), 1, sym_decorator, - ACTIONS(2988), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3010), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3004), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3006), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2986), 4, + ACTIONS(1193), 13, + anon_sym_COLON, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3014), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1733), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [112425] = 13, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_GT_GT, - STATE(2215), 1, - sym_decorator, - ACTIONS(3104), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3120), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3122), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 7, - anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 17, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1195), 26, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [112496] = 9, + [75316] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - STATE(2216), 1, + STATE(1624), 1, + aux_sym_variant_type_repeat1, + STATE(1633), 1, sym_decorator, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3122), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 10, + ACTIONS(1193), 14, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 22, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1195), 26, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -192445,6 +152136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -192452,351 +152147,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [112559] = 15, + [75378] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_GT_GT, - STATE(2217), 1, + STATE(1634), 1, sym_decorator, - ACTIONS(3104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3120), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3122), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3102), 4, + ACTIONS(1226), 14, + anon_sym_COLON, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3130), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 13, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [112634] = 18, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3110), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3114), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3118), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_GT_GT, - STATE(2218), 1, - sym_decorator, - ACTIONS(3104), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1731), 3, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3120), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3122), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3102), 4, - anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3130), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_GT, - [112715] = 17, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3110), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3118), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_GT_GT, - STATE(2219), 1, - sym_decorator, - ACTIONS(3104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1731), 3, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3120), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3122), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3102), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3130), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 11, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1228), 27, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - [112794] = 19, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3110), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3114), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3118), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_GT_GT, - STATE(2220), 1, - sym_decorator, - ACTIONS(1731), 2, - anon_sym_PIPE, - anon_sym_PIPE_PIPE, - ACTIONS(3104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3120), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3122), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3102), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3130), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_GT, - [112877] = 16, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3110), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3124), 1, anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_GT_GT, - STATE(2221), 1, - sym_decorator, - ACTIONS(3104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3126), 2, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1731), 3, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3120), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3122), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3102), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3130), 4, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 12, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_COLON_GT, - [112954] = 9, + [75438] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - STATE(2222), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2382), 1, + anon_sym_EQ_GT, + ACTIONS(2555), 1, + anon_sym_as, + STATE(1635), 1, sym_decorator, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3122), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 10, + ACTIONS(2552), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 22, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1398), 23, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, @@ -192809,6 +152249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -192816,55 +152260,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113017] = 11, + [75508] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - STATE(2223), 1, + STATE(1636), 1, sym_decorator, - ACTIONS(3104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3120), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3122), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 8, + ACTIONS(1392), 14, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 19, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1394), 27, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -192872,24 +152314,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113084] = 6, + [75568] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2224), 1, + STATE(1637), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1771), 13, + ACTIONS(1156), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -192897,13 +152340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1769), 25, + ACTIONS(1158), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -192923,19 +152368,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113141] = 6, + [75628] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2225), 1, + STATE(1638), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1668), 13, + ACTIONS(1428), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -192948,15 +152394,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1666), 25, + ACTIONS(1430), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -192974,25 +152422,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113198] = 7, + [75688] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2226), 1, + STATE(1639), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2559), 18, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_POUND, + anon_sym_PERCENT, + anon_sym_TILDE_TILDE_TILDE, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + ACTIONS(2557), 23, + anon_sym_await, + anon_sym_module, + anon_sym_type, + anon_sym_unpack, + anon_sym_exception, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_assert, + anon_sym_TILDE, + anon_sym_lazy, + anon_sym_SLASH, + anon_sym_for, + anon_sym_while, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + [75748] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1640), 1, sym_decorator, - ACTIONS(2980), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 11, + ACTIONS(1218), 14, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193000,15 +152502,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 25, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1220), 27, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -193026,24 +152530,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113257] = 6, + [75808] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2227), 1, + ACTIONS(2561), 1, + anon_sym_LPAREN, + STATE(1641), 1, sym_decorator, + STATE(1739), 1, + sym_variant_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1975), 13, - anon_sym_COLON, + ACTIONS(1517), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193051,11 +152558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1973), 25, - anon_sym_LPAREN, + ACTIONS(1519), 27, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -193077,18 +152586,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113314] = 6, + [75872] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2228), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2563), 1, + anon_sym_EQ_GT, + STATE(1642), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 13, + ACTIONS(1396), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, @@ -193102,7 +152617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 25, + ACTIONS(1398), 25, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -193128,24 +152643,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113371] = 6, + [75938] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2229), 1, + STATE(1643), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1979), 13, + ACTIONS(1306), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193153,13 +152669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1977), 25, + ACTIONS(1308), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -193179,28 +152697,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113428] = 9, + [75998] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - ACTIONS(3134), 1, - anon_sym_EQ_GT, - STATE(2230), 1, + STATE(1644), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1416), 14, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193208,12 +152723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 24, + ACTIONS(1418), 27, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -193233,24 +152751,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113491] = 7, + [76058] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2135), 1, - aux_sym_variant_type_repeat1, - STATE(2231), 1, + STATE(1645), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1420), 14, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -193259,12 +152777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 25, + ACTIONS(1422), 27, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -193285,24 +152805,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113550] = 7, + [76118] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2135), 1, - aux_sym_variant_type_repeat1, - STATE(2232), 1, + STATE(1646), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1432), 14, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -193311,12 +152831,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 25, + ACTIONS(1434), 27, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -193337,25 +152859,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113609] = 7, + [76178] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2231), 1, - aux_sym_variant_type_repeat1, - STATE(2233), 1, + ACTIONS(2565), 1, + anon_sym_PIPE, + STATE(1647), 2, sym_decorator, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, + ACTIONS(1203), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193363,15 +152886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 25, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(1205), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_catch, anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -193389,24 +152914,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113668] = 7, + [76240] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2232), 1, - aux_sym_variant_type_repeat1, - STATE(2234), 1, + STATE(1648), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1357), 14, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -193415,12 +152940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 25, + ACTIONS(1359), 27, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, @@ -193441,161 +152968,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113727] = 22, + [76300] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_AMP_AMP, - ACTIONS(3069), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3071), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - ACTIONS(3083), 1, - anon_sym_GT_GT, - ACTIONS(3087), 1, - anon_sym_COLON_GT, - STATE(2235), 1, + STATE(1649), 1, sym_decorator, - ACTIONS(1735), 2, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3059), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3075), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3077), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3057), 4, + ACTIONS(1914), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3085), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1733), 7, + ACTIONS(1916), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [113816] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3065), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_AMP_AMP, - ACTIONS(3069), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3071), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3073), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - ACTIONS(3083), 1, - anon_sym_GT_GT, - ACTIONS(3087), 1, - anon_sym_COLON_GT, - STATE(2236), 1, - sym_decorator, - ACTIONS(1739), 2, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3059), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3075), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3077), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3057), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3085), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1737), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [113903] = 8, + anon_sym_COLON_GT, + [76360] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1337), 1, - anon_sym_LPAREN, - ACTIONS(1553), 1, - anon_sym_DOT, - STATE(2237), 1, + ACTIONS(2522), 1, + anon_sym_PIPE, + STATE(1650), 1, sym_decorator, + STATE(1669), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1301), 13, + ACTIONS(1247), 12, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193603,13 +153050,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1299), 23, + ACTIONS(1249), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -193627,22 +153078,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [113964] = 8, + [76424] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3044), 1, + ACTIONS(2571), 1, + anon_sym_COLON, + ACTIONS(2574), 1, anon_sym_PIPE, - STATE(2132), 1, - aux_sym_variant_type_repeat1, - STATE(2238), 1, + ACTIONS(2576), 1, + anon_sym_as, + STATE(1651), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(2568), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1604), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -193654,13 +153112,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 25, + ACTIONS(1606), 23, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -193680,26 +153136,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [114025] = 8, + [76492] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3044), 1, - anon_sym_PIPE, - STATE(2134), 1, - aux_sym_variant_type_repeat1, - STATE(2239), 1, + ACTIONS(2578), 1, + anon_sym_as, + STATE(1652), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1495), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193707,13 +153162,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 25, + ACTIONS(1497), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -193733,27 +153191,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [114086] = 7, + [76554] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2240), 1, + ACTIONS(2580), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_LBRACK, + STATE(1653), 1, sym_decorator, - ACTIONS(2957), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + STATE(1701), 1, + sym_call_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 13, - anon_sym_COLON, + ACTIONS(1479), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193761,13 +153223,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 23, - anon_sym_LPAREN, + ACTIONS(1481), 25, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_and, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -193785,24 +153249,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [114145] = 6, + [76622] = 32, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2241), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1035), 1, + sym_function_type, + STATE(1654), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3511), 1, + sym_polyvar_identifier, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3987), 1, + sym__inline_type, + STATE(3989), 1, + sym_polyvar_declaration, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 13, - anon_sym_COLON, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [76734] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2561), 1, + anon_sym_LPAREN, + STATE(1655), 1, + sym_decorator, + STATE(1753), 1, + sym_variant_arguments, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1489), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193810,11 +153357,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 25, - anon_sym_LPAREN, + ACTIONS(1491), 27, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -193836,30 +153385,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [114202] = 8, + [76798] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1432), 1, - anon_sym_DOT, - STATE(2242), 1, + STATE(1656), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1428), 4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - ACTIONS(1613), 12, + ACTIONS(1345), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193867,11 +153411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 21, + ACTIONS(1347), 27, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -193889,24 +153439,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [114263] = 6, + [76858] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2243), 1, + ACTIONS(1465), 1, + anon_sym_COLON, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + STATE(1657), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1983), 13, - anon_sym_COLON, + ACTIONS(1385), 14, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193914,11 +153468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1981), 25, + sym__identifier, + ACTIONS(1387), 25, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -193940,24 +153494,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [114320] = 6, + sym__escape_identifier, + [76922] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2244), 1, + STATE(1658), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1775), 13, + ACTIONS(1361), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -193965,13 +153521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 25, + ACTIONS(1363), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -193991,24 +153549,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [114377] = 6, + [76982] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2245), 1, + STATE(1659), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1779), 13, + ACTIONS(1203), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194016,13 +153575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 25, + ACTIONS(1205), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -194042,24 +153603,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [114434] = 6, + [77042] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2246), 1, + STATE(1660), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1783), 13, + ACTIONS(1257), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194067,13 +153629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1781), 25, + ACTIONS(1259), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -194093,158 +153657,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [114491] = 22, + [77102] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1680), 1, + ACTIONS(2589), 1, + anon_sym_COLON, + ACTIONS(2592), 1, anon_sym_PIPE, - ACTIONS(3106), 1, - anon_sym_QMARK, - ACTIONS(3110), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3114), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3116), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3118), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_GT_GT, - ACTIONS(3132), 1, - anon_sym_COLON_GT, - STATE(2247), 1, + ACTIONS(2594), 1, + anon_sym_as, + STATE(1661), 1, sym_decorator, - ACTIONS(3104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3120), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3122), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3102), 4, + ACTIONS(2586), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1542), 11, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3130), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1678), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1544), 23, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [114580] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1714), 1, - anon_sym_PIPE, - ACTIONS(3106), 1, - anon_sym_QMARK, - ACTIONS(3110), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3114), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3116), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3118), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_GT_GT, - ACTIONS(3132), 1, - anon_sym_COLON_GT, - STATE(2248), 1, - sym_decorator, - ACTIONS(3104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3120), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3122), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3102), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3130), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1712), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [114669] = 6, + anon_sym_COLON_GT, + [77170] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2249), 1, + STATE(1662), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1743), 13, + ACTIONS(1424), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194252,13 +153741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1741), 25, + ACTIONS(1426), 27, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -194278,91 +153769,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [114726] = 22, + [77230] = 32, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_AMP_AMP, - ACTIONS(3069), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3071), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - ACTIONS(3083), 1, - anon_sym_GT_GT, - ACTIONS(3087), 1, - anon_sym_COLON_GT, - STATE(2250), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1035), 1, + sym_function_type, + STATE(1663), 1, sym_decorator, - ACTIONS(1714), 2, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3059), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3511), 1, + sym_polyvar_identifier, + STATE(3656), 1, + sym_polyvar_declaration, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3987), 1, + sym__inline_type, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3075), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3077), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3057), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3085), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1712), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [114815] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [77342] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2251), 1, + ACTIONS(2327), 1, + anon_sym_LPAREN, + ACTIONS(2596), 1, + anon_sym_COLON, + STATE(1276), 1, + sym_type_annotation, + STATE(1664), 1, sym_decorator, + STATE(1824), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1747), 13, - anon_sym_COLON, + ACTIONS(1148), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194370,15 +153881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 25, - anon_sym_LPAREN, + ACTIONS(1150), 25, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -194396,27 +153907,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [114872] = 8, + [77410] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3055), 1, - anon_sym_PIPE, - STATE(2140), 1, - aux_sym_variant_type_repeat1, - STATE(2252), 1, + STATE(1665), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1183), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194424,14 +153933,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1185), 27, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -194449,26 +153961,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [114933] = 8, + [77470] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3136), 1, - anon_sym_PIPE, - STATE(2253), 1, + STATE(1666), 1, sym_decorator, - STATE(2255), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1353), 14, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194476,15 +153987,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 25, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1355), 27, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -194502,26 +154015,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [114994] = 8, + [77530] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3136), 1, - anon_sym_PIPE, - STATE(2254), 1, + STATE(1667), 1, sym_decorator, - STATE(2255), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1238), 14, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194529,15 +154041,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 25, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1240), 27, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -194555,25 +154069,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [115055] = 7, + [77590] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3138), 1, - anon_sym_PIPE, - STATE(2255), 2, + STATE(1668), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1270), 14, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194581,15 +154095,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 25, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1272), 27, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -194607,160 +154123,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [115114] = 22, + [77650] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1718), 1, + ACTIONS(2522), 1, anon_sym_PIPE, - ACTIONS(3106), 1, - anon_sym_QMARK, - ACTIONS(3110), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3114), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3116), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3118), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_GT_GT, - ACTIONS(3132), 1, - anon_sym_COLON_GT, - STATE(2256), 1, + STATE(1647), 1, + aux_sym_variant_type_repeat1, + STATE(1669), 1, sym_decorator, - ACTIONS(3104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3120), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3122), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3102), 4, + ACTIONS(1193), 12, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3130), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1716), 8, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1195), 27, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [115203] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1722), 1, - anon_sym_PIPE, - ACTIONS(3106), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(3110), 1, + anon_sym_catch, + anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, - ACTIONS(3112), 1, - anon_sym_AMP_AMP, - ACTIONS(3114), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3116), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3118), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3124), 1, - anon_sym_STAR_STAR, - ACTIONS(3128), 1, - anon_sym_GT_GT, - ACTIONS(3132), 1, - anon_sym_COLON_GT, - STATE(2257), 1, - sym_decorator, - ACTIONS(3104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3108), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3120), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3122), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3102), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3130), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1720), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [115292] = 8, + anon_sym_COLON_GT, + [77714] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3136), 1, - anon_sym_PIPE, - STATE(2253), 1, + STATE(1647), 1, aux_sym_variant_type_repeat1, - STATE(2258), 1, + STATE(1670), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1193), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194768,15 +154206,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 25, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1195), 27, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -194794,26 +154234,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [115353] = 8, + [77776] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3136), 1, - anon_sym_PIPE, - STATE(2254), 1, + STATE(1647), 1, aux_sym_variant_type_repeat1, - STATE(2259), 1, + STATE(1671), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1199), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194821,15 +154261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 25, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1201), 27, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -194847,24 +154289,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [115414] = 6, + [77838] = 32, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2260), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1035), 1, + sym_function_type, + STATE(1672), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3511), 1, + sym_polyvar_identifier, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3801), 1, + sym_polyvar_declaration, + STATE(3987), 1, + sym__inline_type, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [77950] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1633), 1, + aux_sym_variant_type_repeat1, + STATE(1673), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1672), 13, + ACTIONS(1247), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194872,13 +154397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1670), 25, + ACTIONS(1249), 26, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -194898,24 +154424,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [115471] = 6, + [78012] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2261), 1, + STATE(1674), 1, sym_decorator, + STATE(1678), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1987), 13, + ACTIONS(1193), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194923,13 +154452,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1985), 25, + ACTIONS(1195), 26, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -194949,26 +154479,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [115528] = 7, + [78074] = 32, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2157), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1035), 1, + sym_function_type, + STATE(1675), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3511), 1, + sym_polyvar_identifier, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3765), 1, + sym_polyvar_declaration, + STATE(3987), 1, + sym__inline_type, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [78186] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2522), 1, + anon_sym_PIPE, + STATE(1611), 1, aux_sym_variant_type_repeat1, - STATE(2262), 1, + STATE(1676), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, + ACTIONS(1193), 12, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -194976,14 +154587,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 24, + ACTIONS(1195), 27, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_catch, anon_sym_as, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -195001,25 +154615,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [115587] = 7, + [78250] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2157), 1, - aux_sym_variant_type_repeat1, - STATE(2263), 1, + STATE(1677), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 13, + ACTIONS(1369), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, @@ -195028,14 +154641,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1371), 27, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -195053,27 +154669,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [115646] = 8, + [78310] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3055), 1, - anon_sym_PIPE, - STATE(2157), 1, + STATE(1624), 1, aux_sym_variant_type_repeat1, - STATE(2264), 1, + STATE(1678), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1199), 14, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -195081,14 +154697,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1201), 26, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -195106,34 +154724,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [115707] = 11, + [78372] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2518), 1, - anon_sym_DOT, - ACTIONS(2520), 1, - anon_sym_LBRACK, - STATE(1494), 1, - sym_call_arguments, - STATE(2265), 1, + ACTIONS(2598), 1, + anon_sym_as, + STATE(1679), 1, sym_decorator, - ACTIONS(3141), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 12, - anon_sym_COLON, + ACTIONS(1495), 14, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -195141,10 +154751,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 20, - anon_sym_RPAREN, - anon_sym_COMMA, + sym__identifier, + ACTIONS(1497), 25, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -195162,24 +154777,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [115774] = 6, + sym__escape_identifier, + [78433] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2266), 1, + ACTIONS(2507), 1, + anon_sym_EQ_GT, + STATE(1680), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1676), 13, - anon_sym_COLON, + ACTIONS(1396), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -195187,11 +154804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 25, + ACTIONS(1398), 27, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -195213,24 +154832,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [115831] = 6, + [78494] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2267), 1, + STATE(1681), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1751), 13, - anon_sym_COLON, + ACTIONS(1926), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -195238,11 +154856,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1749), 25, + ACTIONS(1928), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -195264,21 +154885,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [115888] = 7, + [78553] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2268), 1, + STATE(1682), 1, sym_decorator, - ACTIONS(2976), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 12, + ACTIONS(1742), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -195291,14 +154909,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 24, + ACTIONS(1744), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -195316,24 +154938,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [115947] = 6, + [78612] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2269), 1, + STATE(1683), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1656), 13, - anon_sym_COLON, + ACTIONS(1604), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -195341,11 +154962,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1654), 25, + ACTIONS(1606), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -195367,24 +154991,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116004] = 6, + [78671] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2270), 1, + ACTIONS(2399), 1, + anon_sym_RBRACE, + ACTIONS(2402), 1, + anon_sym_COLON, + ACTIONS(2407), 1, + anon_sym_COMMA, + STATE(1684), 1, sym_decorator, + STATE(3876), 1, + aux_sym_record_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1660), 13, - anon_sym_COLON, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -195392,11 +155022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1658), 25, + ACTIONS(1398), 25, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -195418,19 +155048,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116061] = 6, + [78738] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2271), 1, + STATE(1685), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1664), 13, + ACTIONS(1457), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -195443,7 +155074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1662), 25, + ACTIONS(1459), 26, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -195452,6 +155083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -195469,27 +155101,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116118] = 8, + [78797] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2833), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(2272), 1, + ACTIONS(2600), 1, + sym_regex_flags, + STATE(1686), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1501), 14, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -195497,14 +155128,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 24, + sym__identifier, + ACTIONS(1503), 25, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -195522,24 +155154,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116179] = 6, + sym__escape_identifier, + [78858] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2273), 1, + STATE(1687), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1787), 13, - anon_sym_COLON, + ACTIONS(1652), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -195547,11 +155179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1785), 25, + ACTIONS(1654), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -195573,24 +155208,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116236] = 6, + [78917] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2274), 1, + STATE(1688), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1991), 13, - anon_sym_COLON, + ACTIONS(1790), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -195598,11 +155232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1989), 25, + ACTIONS(1792), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -195624,21 +155261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116293] = 7, + [78976] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2262), 1, - aux_sym_variant_type_repeat1, - STATE(2275), 1, + STATE(1689), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 13, - anon_sym_COLON, + ACTIONS(1937), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -195651,14 +155285,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 24, - anon_sym_LBRACE, + ACTIONS(1939), 28, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -195676,86 +155314,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116352] = 20, + [79035] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2994), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(2996), 1, - anon_sym_AMP_AMP, - ACTIONS(2998), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3000), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3002), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3008), 1, - anon_sym_STAR_STAR, - ACTIONS(3012), 1, - anon_sym_GT_GT, - ACTIONS(3016), 1, - anon_sym_COLON_GT, - STATE(2276), 1, + STATE(1690), 1, sym_decorator, - ACTIONS(2988), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3010), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3004), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3006), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(2986), 4, + ACTIONS(1566), 12, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3014), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1737), 10, + ACTIONS(1568), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [116437] = 7, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [79094] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2263), 1, - aux_sym_variant_type_repeat1, - STATE(2277), 1, + STATE(1691), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, - anon_sym_COLON, + ACTIONS(1538), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -195768,14 +155391,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 24, - anon_sym_LBRACE, + ACTIONS(1540), 28, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -195793,24 +155420,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116496] = 6, + [79153] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2278), 1, + STATE(1692), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1791), 13, - anon_sym_COLON, + ACTIONS(1528), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -195818,11 +155444,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1789), 25, + ACTIONS(1530), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -195844,25 +155473,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116553] = 7, + [79212] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2255), 1, - aux_sym_variant_type_repeat1, - STATE(2279), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + STATE(1693), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1396), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -195870,15 +155502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 25, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1398), 25, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -195896,20 +155528,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116612] = 7, + [79275] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2101), 1, - aux_sym_variant_type_repeat1, - STATE(2280), 1, + STATE(1694), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, + ACTIONS(1886), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -195922,15 +155552,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 25, + ACTIONS(1888), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -195948,25 +155581,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116671] = 7, + [79334] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2279), 1, - aux_sym_variant_type_repeat1, - STATE(2281), 1, + ACTIONS(2493), 1, + anon_sym_EQ_GT, + STATE(1695), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -195974,15 +155606,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 25, + ACTIONS(1398), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -196000,24 +155635,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116730] = 6, + [79395] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2282), 1, + STATE(1696), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1795), 13, - anon_sym_COLON, + ACTIONS(1814), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -196025,11 +155659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1793), 25, + ACTIONS(1816), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -196051,52 +155688,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116787] = 13, + [79454] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3079), 1, - anon_sym_STAR_STAR, - ACTIONS(3083), 1, - anon_sym_GT_GT, - STATE(2283), 1, + STATE(1697), 1, sym_decorator, - ACTIONS(3059), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3075), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3077), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 8, - anon_sym_COLON, + ACTIONS(1570), 12, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 16, + ACTIONS(1572), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -196104,29 +155727,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116858] = 7, + [79513] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2978), 1, - anon_sym_EQ_GT, - STATE(2284), 1, + STATE(1698), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1600), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -196134,10 +155765,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 25, + ACTIONS(1602), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -196160,187 +155794,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [116916] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1188), 1, - sym__inline_type, - STATE(1412), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(2285), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3864), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4791), 1, - sym_abstract_type, - STATE(5066), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [117018] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2230), 1, - aux_sym_type_identifier_token1, - ACTIONS(2232), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(2286), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(3296), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(3782), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4790), 1, - sym_abstract_type, - STATE(4889), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [117120] = 8, + [79572] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - STATE(2287), 1, + STATE(1699), 1, sym_decorator, - ACTIONS(2525), 2, - anon_sym_DOT, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 15, + ACTIONS(1574), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, - anon_sym_as, anon_sym_SLASH, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1258), 19, - anon_sym_EQ_GT, + ACTIONS(1576), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -196358,546 +155847,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [117180] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(760), 1, - sym_type_identifier, - STATE(773), 1, - sym__type_identifier, - STATE(788), 1, - sym__non_function_inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(841), 1, - sym__inline_type, - STATE(2288), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3910), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4734), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5032), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [117282] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1188), 1, - sym__inline_type, - STATE(1522), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(2289), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3858), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5002), 1, - sym_function_type_parameters, - STATE(5004), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [117384] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - aux_sym_type_identifier_token1, - ACTIONS(2464), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(2290), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3171), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3919), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4667), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5047), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [117486] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(2291), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4793), 1, - sym_function_type_parameters, - STATE(4801), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [117588] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1188), 1, - sym__inline_type, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(2036), 1, - sym_type_identifier, - STATE(2292), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4045), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4777), 1, - sym_abstract_type, - STATE(4830), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [117690] = 29, + [79631] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1402), 1, - sym_type_identifier, - STATE(2293), 1, + STATE(1700), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3778), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4762), 1, - sym_abstract_type, - STATE(5054), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [117792] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, + ACTIONS(1794), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1796), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1534), 1, - sym_type_identifier, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1725), 1, - sym__non_function_inline_type, - STATE(1733), 1, - sym__inline_type, - STATE(2294), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3786), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4708), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4818), 1, - sym_abstract_type, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [117894] = 7, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [79690] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3143), 1, - sym_regex_flags, - STATE(2295), 1, + STATE(1701), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1601), 13, + ACTIONS(1554), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1599), 23, + ACTIONS(1556), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -196920,387 +155953,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [117952] = 29, + [79749] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1840), 1, - sym_type_identifier, - STATE(2296), 1, + STATE(1702), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3780), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4771), 1, - sym_abstract_type, - STATE(4925), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [118054] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(1758), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1760), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2087), 1, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1522), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(2297), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3858), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4695), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5004), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [118156] = 29, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [79808] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2290), 1, - anon_sym_LBRACE, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_module, - ACTIONS(2300), 1, - anon_sym_LBRACK, - ACTIONS(2306), 1, - aux_sym_type_identifier_token1, - ACTIONS(2308), 1, - sym__escape_identifier, - ACTIONS(2310), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1535), 1, - sym_type_identifier, - STATE(1542), 1, - sym__type_identifier, - STATE(1607), 1, - sym__non_function_inline_type, - STATE(1614), 1, - sym_type_identifier_path, - STATE(1624), 1, - sym_function_type, - STATE(1625), 1, - sym__inline_type, - STATE(2298), 1, + ACTIONS(2384), 1, + anon_sym_PIPE, + ACTIONS(2392), 1, + anon_sym_COLON, + ACTIONS(2397), 1, + anon_sym_as, + STATE(1703), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3790), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4534), 1, - sym_module_primary_expression, - STATE(4700), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4843), 1, - sym_abstract_type, - ACTIONS(2302), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + STATE(2784), 1, + sym_as_aliasing, + ACTIONS(2602), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1601), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [118258] = 29, + ACTIONS(1396), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1398), 23, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [79877] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1758), 1, - sym_type_identifier, - STATE(2299), 1, + STATE(1704), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3945), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4802), 1, - sym_function_type_parameters, - STATE(4949), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [118360] = 29, + ACTIONS(1770), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1772), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [79936] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(773), 1, - sym__type_identifier, - STATE(788), 1, - sym__non_function_inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(841), 1, - sym__inline_type, - STATE(859), 1, - sym_type_identifier, - STATE(2300), 1, + STATE(1705), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3916), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4668), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4979), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [118462] = 8, + ACTIONS(1453), 14, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1455), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [79995] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2984), 1, - anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(2301), 1, + STATE(1706), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1578), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -197313,13 +156194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 23, + ACTIONS(1580), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -197337,1771 +156223,1366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [118522] = 29, + [80054] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1188), 1, - sym__inline_type, - STATE(2302), 1, + ACTIONS(2384), 1, + anon_sym_PIPE, + ACTIONS(2392), 1, + anon_sym_COLON, + ACTIONS(2435), 1, + anon_sym_as, + STATE(1707), 1, sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3870), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4875), 1, - sym_function_type_parameters, - STATE(5028), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + STATE(2784), 1, + sym_as_aliasing, + ACTIONS(2379), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [118624] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(1396), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1398), 23, anon_sym_LPAREN, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(2287), 1, - sym_type_identifier, - STATE(2303), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3785), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4694), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4815), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [118726] = 29, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [80123] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(2333), 1, anon_sym_LPAREN, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1204), 1, - sym__inline_type, - STATE(1402), 1, - sym_type_identifier, - STATE(2304), 1, + ACTIONS(2337), 1, + anon_sym_LBRACK, + ACTIONS(2606), 1, + anon_sym_DOT, + STATE(1085), 1, + sym_call_arguments, + STATE(1708), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3778), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4762), 1, - sym_abstract_type, - STATE(4786), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + ACTIONS(2608), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [118828] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, + ACTIONS(1528), 14, anon_sym_unpack, - ACTIONS(2075), 1, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_async, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym__identifier, + ACTIONS(1530), 20, anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1188), 1, - sym__inline_type, - STATE(1412), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(2305), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3874), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4681), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4948), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [118930] = 29, + [80192] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1188), 1, - sym__inline_type, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(2036), 1, - sym_type_identifier, - STATE(2306), 1, + STATE(1709), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4026), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4686), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4966), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [119032] = 29, + ACTIONS(1866), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1868), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [80251] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2472), 1, - aux_sym_type_identifier_token1, - ACTIONS(2474), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(2307), 1, + STATE(1710), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3314), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3764), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4768), 1, - sym_abstract_type, - STATE(5052), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [119134] = 29, + ACTIONS(1546), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1548), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [80310] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - aux_sym_type_identifier_token1, - ACTIONS(2464), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(2308), 1, + STATE(1711), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3171), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3788), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4825), 1, - sym_abstract_type, - STATE(4900), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [119236] = 29, + ACTIONS(1550), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1552), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [80369] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(2036), 1, - sym_type_identifier, - STATE(2309), 1, + STATE(1712), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4026), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4893), 1, - sym_function_type_parameters, - STATE(4966), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [119338] = 29, + ACTIONS(1449), 14, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1451), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [80428] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(2580), 1, anon_sym_LPAREN, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1204), 1, - sym__inline_type, - STATE(1840), 1, - sym_type_identifier, - STATE(2310), 1, + ACTIONS(2582), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_LBRACK, + STATE(1701), 1, + sym_call_arguments, + STATE(1713), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3780), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4771), 1, - sym_abstract_type, - STATE(4850), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + ACTIONS(2610), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [119440] = 29, + ACTIONS(1528), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [80497] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1758), 1, - sym_type_identifier, - STATE(2311), 1, + STATE(1714), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3789), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4834), 1, - sym_abstract_type, - STATE(5061), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [119542] = 29, + ACTIONS(1762), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1764), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [80556] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2472), 1, - aux_sym_type_identifier_token1, - ACTIONS(2474), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(2312), 1, + STATE(1715), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3314), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3792), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4849), 1, - sym_abstract_type, - STATE(4960), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [119644] = 29, + ACTIONS(1746), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1748), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [80615] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(2313), 1, + STATE(1716), 1, sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3870), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4947), 1, - sym_function_type_parameters, - STATE(5028), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [119746] = 29, + ACTIONS(1670), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1672), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [80674] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(2314), 1, + STATE(1717), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(3781), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4031), 1, - sym__inline_type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4784), 1, - sym_abstract_type, - STATE(4926), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [119848] = 29, + ACTIONS(1660), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1662), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [80733] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2472), 1, - aux_sym_type_identifier_token1, - ACTIONS(2474), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(2315), 1, + STATE(1718), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3314), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3792), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4849), 1, - sym_abstract_type, - STATE(5080), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [119950] = 29, + ACTIONS(1632), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1634), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [80792] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(2316), 1, + STATE(1719), 1, sym_decorator, - STATE(2472), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3871), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4950), 1, - sym_function_type_parameters, - STATE(5051), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [120052] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1680), 1, - anon_sym_COLON, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - ACTIONS(3149), 1, + ACTIONS(1766), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1768), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3153), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3155), 1, - anon_sym_AMP_AMP, - ACTIONS(3157), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3167), 1, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3171), 1, - anon_sym_GT_GT, - STATE(2317), 1, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [80851] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1720), 1, sym_decorator, - ACTIONS(3147), 2, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1774), 12, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3169), 2, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1776), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [80910] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1721), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3163), 3, + ACTIONS(1674), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1676), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3165), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3145), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3173), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1678), 7, + anon_sym_COLON_GT, + [80969] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1722), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1802), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1804), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [120140] = 29, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81028] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1714), 1, - sym__non_function_inline_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1962), 1, - sym_type_identifier, - STATE(2318), 1, + STATE(1723), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3783), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4796), 1, - sym_abstract_type, - STATE(4967), 1, - sym_function_type_parameters, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [120242] = 29, + ACTIONS(1852), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1854), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81087] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, + STATE(1724), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1678), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1680), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1840), 1, - sym_type_identifier, - STATE(2319), 1, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81146] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1725), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3985), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4821), 1, - sym_abstract_type, - STATE(4839), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [120344] = 29, + ACTIONS(1894), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1896), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81205] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(773), 1, - sym__type_identifier, - STATE(798), 1, - sym__inline_type, - STATE(817), 1, - sym__non_function_inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(859), 1, - sym_type_identifier, - STATE(2320), 1, + STATE(1726), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3784), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4812), 1, - sym_abstract_type, - STATE(4980), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [120446] = 29, + ACTIONS(1682), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1684), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81264] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(2321), 1, + STATE(1727), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3765), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4704), 1, - sym_abstract_type, - STATE(4737), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [120548] = 29, + ACTIONS(1686), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1688), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81323] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2290), 1, - anon_sym_LBRACE, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_module, - ACTIONS(2300), 1, - anon_sym_LBRACK, - ACTIONS(2306), 1, - aux_sym_type_identifier_token1, - ACTIONS(2308), 1, - sym__escape_identifier, - ACTIONS(2310), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1535), 1, - sym_type_identifier, - STATE(1542), 1, - sym__type_identifier, - STATE(1607), 1, - sym__non_function_inline_type, - STATE(1614), 1, - sym_type_identifier_path, - STATE(1624), 1, - sym_function_type, - STATE(1625), 1, - sym__inline_type, - STATE(2322), 1, + STATE(1728), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4046), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4534), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5020), 1, - sym_function_type_parameters, - STATE(5060), 1, - sym_abstract_type, - ACTIONS(2302), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1601), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [120650] = 29, + ACTIONS(1690), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1692), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81382] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(1872), 1, - sym_type_identifier, - STATE(2323), 1, + STATE(1729), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3943), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4997), 1, - sym_function_type_parameters, - STATE(5068), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [120752] = 29, + ACTIONS(1898), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1900), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81441] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2338), 1, - aux_sym_type_identifier_token1, - ACTIONS(2340), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(2324), 1, + STATE(1730), 1, sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3020), 1, - sym_type_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3795), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4820), 1, - sym_function_type_parameters, - STATE(4896), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [120854] = 29, + ACTIONS(1656), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1658), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81500] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(2287), 1, - sym_type_identifier, - STATE(2325), 1, + STATE(1731), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3785), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4815), 1, - sym_abstract_type, - STATE(5013), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [120956] = 10, + ACTIONS(1734), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1736), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81559] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2500), 1, + ACTIONS(2327), 1, anon_sym_LPAREN, - ACTIONS(3175), 1, + ACTIONS(2612), 1, anon_sym_COLON, - STATE(1071), 1, + STATE(1276), 1, sym_type_annotation, - STATE(2326), 1, + STATE(1732), 1, sym_decorator, - STATE(2501), 1, + STATE(1920), 1, sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, + ACTIONS(1148), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -199114,11 +157595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 21, + ACTIONS(1150), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, anon_sym_QMARK, anon_sym_as, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -199136,1187 +157620,879 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [121020] = 29, + [81626] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1534), 1, - sym_type_identifier, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1714), 1, - sym__non_function_inline_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(2327), 1, + STATE(1733), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3786), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4818), 1, - sym_abstract_type, - STATE(5029), 1, - sym_function_type_parameters, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [121122] = 29, + ACTIONS(1778), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1780), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81685] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1725), 1, - sym__non_function_inline_type, - STATE(1733), 1, - sym__inline_type, - STATE(1962), 1, - sym_type_identifier, - STATE(2328), 1, + STATE(1734), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3889), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4962), 1, - sym_function_type_parameters, - STATE(5078), 1, - sym_abstract_type, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [121224] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1714), 1, - anon_sym_COLON, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - ACTIONS(3149), 1, + ACTIONS(1396), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1398), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3153), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3155), 1, - anon_sym_AMP_AMP, - ACTIONS(3157), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3167), 1, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3171), 1, - anon_sym_GT_GT, - STATE(2329), 1, - sym_decorator, - ACTIONS(3147), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3151), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3169), 2, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81744] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2443), 1, + anon_sym_EQ_GT, + STATE(1735), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3163), 3, + ACTIONS(1396), 14, + anon_sym_unpack, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_async, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym__identifier, + ACTIONS(1398), 25, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3165), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3145), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3173), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1712), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [121312] = 29, + anon_sym_COLON_GT, + sym__escape_identifier, + [81805] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1534), 1, - sym_type_identifier, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1725), 1, - sym__non_function_inline_type, - STATE(1733), 1, - sym__inline_type, - STATE(2330), 1, + STATE(1736), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3836), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4738), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5015), 1, - sym_function_type_parameters, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [121414] = 29, + ACTIONS(1644), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1646), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81864] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2230), 1, - aux_sym_type_identifier_token1, - ACTIONS(2232), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(2331), 1, + STATE(1737), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(3296), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3518), 1, - sym__non_function_inline_type, - STATE(3532), 1, - sym_function_type, - STATE(3614), 1, - sym__inline_type, - STATE(4038), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4953), 1, - sym_function_type_parameters, - STATE(5034), 1, - sym_abstract_type, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [121516] = 29, + ACTIONS(1782), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1784), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81923] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(760), 1, - sym_type_identifier, - STATE(773), 1, - sym__type_identifier, - STATE(798), 1, - sym__inline_type, - STATE(817), 1, - sym__non_function_inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(2332), 1, + STATE(1738), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3787), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4823), 1, - sym_abstract_type, - STATE(5037), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [121618] = 29, + ACTIONS(1210), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1212), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [81982] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2338), 1, - aux_sym_type_identifier_token1, - ACTIONS(2340), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1188), 1, - sym__inline_type, - STATE(2333), 1, + STATE(1739), 1, sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3020), 1, - sym_type_identifier, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3795), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4896), 1, - sym_abstract_type, - STATE(4906), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [121720] = 29, + ACTIONS(1558), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1560), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [82041] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(2334), 1, + STATE(1740), 1, sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3870), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5028), 1, - sym_abstract_type, - STATE(5039), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [121822] = 29, + ACTIONS(1594), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1596), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [82100] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - aux_sym_type_identifier_token1, - ACTIONS(2464), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(2335), 1, + STATE(1741), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3171), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3788), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4825), 1, - sym_abstract_type, - STATE(5064), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [121924] = 29, + ACTIONS(1694), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [82159] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, - sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(2336), 1, + STATE(1742), 1, sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4792), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [122026] = 29, + ACTIONS(1528), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [82218] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1412), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1669), 1, - sym__non_function_inline_type, - STATE(2337), 1, + STATE(1743), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3874), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4681), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5070), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [122128] = 29, + ACTIONS(1664), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1666), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [82277] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2472), 1, - aux_sym_type_identifier_token1, - ACTIONS(2474), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(2338), 1, + STATE(1744), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3314), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3764), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4768), 1, - sym_abstract_type, - STATE(5079), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [122230] = 29, + ACTIONS(1398), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + ACTIONS(1528), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [82338] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1204), 1, - sym__inline_type, - STATE(1758), 1, - sym_type_identifier, - STATE(2339), 1, + STATE(1745), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3789), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4834), 1, - sym_abstract_type, - STATE(4904), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [122332] = 29, + ACTIONS(1798), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1800), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [82397] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(2036), 1, - sym_type_identifier, - STATE(2340), 1, + STATE(1746), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4026), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4686), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4966), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [122434] = 29, + ACTIONS(1586), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1588), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [82456] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1188), 1, - sym__inline_type, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(1872), 1, - sym_type_identifier, - STATE(2341), 1, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(2614), 1, + anon_sym_COLON, + STATE(1747), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3943), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4970), 1, - sym_function_type_parameters, - STATE(5068), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [122536] = 29, + ACTIONS(1385), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1387), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [82519] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(2342), 1, + ACTIONS(2384), 1, + anon_sym_PIPE, + ACTIONS(2386), 1, + anon_sym_as, + STATE(1748), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3765), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4704), 1, - sym_abstract_type, - STATE(4718), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + STATE(2784), 1, + sym_as_aliasing, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [122638] = 8, + ACTIONS(2379), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1396), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1398), 23, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [82586] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3177), 1, - anon_sym_PIPE, - STATE(2343), 1, + sym__decorator_inline, + STATE(1749), 1, sym_decorator, - STATE(2345), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1698), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -200324,14 +158500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 24, + ACTIONS(1700), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -200349,26 +158529,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [122698] = 8, + [82645] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3177), 1, - anon_sym_PIPE, - STATE(2344), 1, + STATE(1750), 1, sym_decorator, - STATE(2345), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1590), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -200376,14 +158553,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 24, + ACTIONS(1592), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -200401,25 +158582,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [122758] = 7, + [82704] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3179), 1, - anon_sym_PIPE, - STATE(2345), 2, + ACTIONS(2617), 1, + sym_regex_flags, + STATE(1751), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1501), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -200427,14 +158608,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 24, + ACTIONS(1503), 27, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -200452,20 +158636,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [122816] = 7, + [82765] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2346), 1, + STATE(1752), 1, sym_decorator, - STATE(2396), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1648), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -200478,14 +158660,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 24, + ACTIONS(1650), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -200503,20 +158689,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [122874] = 7, + [82824] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2347), 1, + STATE(1753), 1, sym_decorator, - STATE(2396), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1562), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -200529,14 +158713,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 24, + ACTIONS(1564), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -200554,24 +158742,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [122932] = 7, + [82883] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2982), 1, - anon_sym_EQ_GT, - STATE(2348), 1, + STATE(1754), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1910), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -200579,15 +158766,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 25, + ACTIONS(1912), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -200605,391 +158795,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [122990] = 29, + [82942] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(2333), 1, anon_sym_LPAREN, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1700), 1, - sym_type_identifier, - STATE(2349), 1, + ACTIONS(2337), 1, + anon_sym_LBRACK, + ACTIONS(2606), 1, + anon_sym_DOT, + STATE(1085), 1, + sym_call_arguments, + STATE(1755), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3772), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4735), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4981), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [123092] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, + ACTIONS(1479), 14, anon_sym_unpack, - ACTIONS(2075), 1, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_async, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym__identifier, + ACTIONS(1481), 22, anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(2350), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4988), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [123194] = 29, + [83009] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2338), 1, - aux_sym_type_identifier_token1, - ACTIONS(2340), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(2351), 1, + STATE(1756), 1, sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3020), 1, - sym_type_identifier, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3867), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4902), 1, - sym_abstract_type, - STATE(4916), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [123296] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2290), 1, - anon_sym_LBRACE, - ACTIONS(2292), 1, + ACTIONS(1882), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1884), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_module, - ACTIONS(2300), 1, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, - ACTIONS(2306), 1, - aux_sym_type_identifier_token1, - ACTIONS(2308), 1, - sym__escape_identifier, - ACTIONS(2310), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1535), 1, - sym_type_identifier, - STATE(1542), 1, - sym__type_identifier, - STATE(1597), 1, - sym__inline_type, - STATE(1600), 1, - sym__non_function_inline_type, - STATE(1614), 1, - sym_type_identifier_path, - STATE(1624), 1, - sym_function_type, - STATE(2352), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3790), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4534), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4843), 1, - sym_abstract_type, - STATE(5044), 1, - sym_function_type_parameters, - ACTIONS(2302), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1601), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [123398] = 29, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [83068] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(2580), 1, anon_sym_LPAREN, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(2353), 1, - sym_decorator, - STATE(2472), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3775), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4755), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4996), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [123500] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3177), 1, - anon_sym_PIPE, - STATE(2343), 1, - aux_sym_variant_type_repeat1, - STATE(2354), 1, + ACTIONS(2582), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_LBRACK, + STATE(1701), 1, + sym_call_arguments, + STATE(1757), 1, sym_decorator, + ACTIONS(2619), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1528), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -200997,14 +158940,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 24, + ACTIONS(1530), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_and, anon_sym_QMARK, - anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -201022,26 +158963,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [123560] = 8, + [83137] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3177), 1, - anon_sym_PIPE, - STATE(2344), 1, - aux_sym_variant_type_repeat1, - STATE(2355), 1, + STATE(1758), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1702), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -201049,14 +158987,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 24, + ACTIONS(1704), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -201074,319 +159016,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [123620] = 29, + [83196] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1522), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(2356), 1, + STATE(1759), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3858), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5002), 1, - sym_function_type_parameters, - STATE(5004), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [123722] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, + ACTIONS(1786), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2138), 1, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2230), 1, - aux_sym_type_identifier_token1, - ACTIONS(2232), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(2357), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(3296), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3532), 1, - sym_function_type, - STATE(3542), 1, - sym__non_function_inline_type, - STATE(4038), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4719), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5034), 1, - sym_abstract_type, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [123824] = 29, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [83255] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2462), 1, - aux_sym_type_identifier_token1, - ACTIONS(2464), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(2358), 1, + STATE(1760), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3171), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3788), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4825), 1, - sym_abstract_type, - STATE(4900), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [123926] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(1706), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1708), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1700), 1, - sym_type_identifier, - STATE(2359), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3772), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4735), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4952), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [124028] = 8, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [83314] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3182), 1, - anon_sym_PIPE, - STATE(2360), 1, + STATE(1761), 1, sym_decorator, - STATE(2362), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, - anon_sym_COLON, + ACTIONS(1710), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -201394,13 +159146,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 23, + ACTIONS(1712), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -201418,27 +159175,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [124088] = 8, + [83373] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3182), 1, - anon_sym_PIPE, - STATE(2361), 1, + STATE(1762), 1, sym_decorator, - STATE(2362), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, - anon_sym_COLON, + ACTIONS(1722), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -201446,13 +159199,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 23, + ACTIONS(1724), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -201470,26 +159228,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [124148] = 7, + [83432] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3184), 1, - anon_sym_PIPE, - STATE(2362), 2, + STATE(1763), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 12, - anon_sym_COLON, + ACTIONS(1726), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -201497,13 +159252,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 23, + ACTIONS(1728), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -201521,20 +159281,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [124206] = 7, + [83491] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2346), 1, - aux_sym_variant_type_repeat1, - STATE(2363), 1, + STATE(1764), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, + ACTIONS(1918), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -201547,14 +159305,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 24, + ACTIONS(1920), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -201572,20 +159334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [124264] = 7, + [83550] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2347), 1, - aux_sym_variant_type_repeat1, - STATE(2364), 1, + STATE(1765), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1922), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -201598,14 +159358,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 24, + ACTIONS(1924), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -201623,166 +159387,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [124322] = 29, + [83609] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1204), 1, - sym__inline_type, - STATE(1402), 1, - sym_type_identifier, - STATE(2365), 1, + STATE(1766), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3778), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4762), 1, - sym_abstract_type, - STATE(5054), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [124424] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1718), 1, - anon_sym_COLON, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - ACTIONS(3149), 1, - anon_sym_QMARK, - ACTIONS(3153), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3155), 1, - anon_sym_AMP_AMP, - ACTIONS(3157), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3167), 1, - anon_sym_STAR_STAR, - ACTIONS(3171), 1, - anon_sym_GT_GT, - STATE(2366), 1, - sym_decorator, - ACTIONS(3147), 2, + ACTIONS(1479), 12, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3163), 3, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1481), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3165), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3145), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3173), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1716), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [124512] = 8, + anon_sym_COLON_GT, + [83668] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3182), 1, - anon_sym_PIPE, - STATE(2360), 1, - aux_sym_variant_type_repeat1, - STATE(2367), 1, + STATE(1767), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, - anon_sym_COLON, + ACTIONS(1810), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -201790,13 +159464,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 23, + ACTIONS(1812), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -201814,94 +159493,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [124572] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(2368), 1, - sym_decorator, - STATE(2472), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3775), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4755), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5024), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [124674] = 7, + [83727] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2362), 1, - aux_sym_variant_type_repeat1, - STATE(2369), 1, + STATE(1768), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, - anon_sym_COLON, + ACTIONS(1542), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -201914,13 +159517,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 23, + ACTIONS(1544), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -201938,26 +159546,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [124732] = 7, + [83786] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2362), 1, - aux_sym_variant_type_repeat1, - STATE(2370), 1, + STATE(1769), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 13, + ACTIONS(1143), 14, anon_sym_COLON, + anon_sym_EQ, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -201965,13 +159572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 23, + ACTIONS(1138), 26, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_EQ, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -201989,237 +159599,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [124790] = 29, + [83845] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1204), 1, - sym__inline_type, - STATE(1840), 1, - sym_type_identifier, - STATE(2371), 1, + ACTIONS(2384), 1, + anon_sym_PIPE, + ACTIONS(2392), 1, + anon_sym_COLON, + ACTIONS(2397), 1, + anon_sym_as, + STATE(1770), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3780), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4771), 1, - sym_abstract_type, - STATE(4925), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + STATE(2784), 1, + sym_as_aliasing, + ACTIONS(2379), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [124892] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1722), 1, - anon_sym_COLON, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - ACTIONS(3149), 1, - anon_sym_QMARK, - ACTIONS(3153), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3155), 1, - anon_sym_AMP_AMP, - ACTIONS(3157), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3167), 1, - anon_sym_STAR_STAR, - ACTIONS(3171), 1, - anon_sym_GT_GT, - STATE(2372), 1, - sym_decorator, - ACTIONS(3147), 2, + ACTIONS(1396), 11, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + anon_sym_GT, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3163), 3, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1398), 23, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3165), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3145), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3173), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1720), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [124980] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(2373), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3518), 1, - sym__non_function_inline_type, - STATE(3532), 1, - sym_function_type, - STATE(3781), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4031), 1, - sym__inline_type, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4784), 1, - sym_abstract_type, - STATE(4859), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [125082] = 7, + anon_sym_COLON_GT, + [83914] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2345), 1, - aux_sym_variant_type_repeat1, - STATE(2374), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2395), 1, + anon_sym_EQ_GT, + STATE(1771), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1396), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -202227,14 +159687,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1398), 25, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -202252,20 +159713,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [125140] = 7, + [83979] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2345), 1, - aux_sym_variant_type_repeat1, - STATE(2375), 1, + STATE(1772), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1750), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -202278,14 +159737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 24, + ACTIONS(1752), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -202303,969 +159766,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [125198] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2230), 1, - aux_sym_type_identifier_token1, - ACTIONS(2232), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(2376), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(3296), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3518), 1, - sym__non_function_inline_type, - STATE(3532), 1, - sym_function_type, - STATE(3782), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4670), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4790), 1, - sym_abstract_type, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [125300] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1725), 1, - sym__non_function_inline_type, - STATE(1962), 1, - sym_type_identifier, - STATE(2377), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3783), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4796), 1, - sym_abstract_type, - STATE(4894), 1, - sym_function_type_parameters, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [125402] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(773), 1, - sym__type_identifier, - STATE(788), 1, - sym__non_function_inline_type, - STATE(798), 1, - sym__inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(859), 1, - sym_type_identifier, - STATE(2378), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3784), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4812), 1, - sym_abstract_type, - STATE(4897), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [125504] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(1872), 1, - sym_type_identifier, - STATE(2379), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3943), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4970), 1, - sym_function_type_parameters, - STATE(5068), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [125606] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1188), 1, - sym__inline_type, - STATE(2380), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3861), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4674), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5038), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [125708] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(2287), 1, - sym_type_identifier, - STATE(2381), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3785), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4694), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4815), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [125810] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2246), 1, - anon_sym_LBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2254), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, - sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1534), 1, - sym_type_identifier, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1725), 1, - sym__non_function_inline_type, - STATE(2382), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3786), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4708), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4818), 1, - sym_abstract_type, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [125912] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(760), 1, - sym_type_identifier, - STATE(773), 1, - sym__type_identifier, - STATE(788), 1, - sym__non_function_inline_type, - STATE(798), 1, - sym__inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(2383), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3787), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4823), 1, - sym_abstract_type, - STATE(4842), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [126014] = 29, + [84038] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2332), 1, - aux_sym_type_identifier_token1, - ACTIONS(2334), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(2384), 1, + STATE(1773), 1, sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3008), 1, - sym_type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3870), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4875), 1, - sym_function_type_parameters, - STATE(5028), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [126116] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(1445), 14, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1447), 26, anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1412), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(2385), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3874), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4681), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4948), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [126218] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1204), 1, - sym__inline_type, - STATE(1758), 1, - sym_type_identifier, - STATE(2386), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3789), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4834), 1, - sym_abstract_type, - STATE(5061), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [126320] = 29, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_EQ, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [84097] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2290), 1, - anon_sym_LBRACE, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_module, - ACTIONS(2300), 1, - anon_sym_LBRACK, - ACTIONS(2306), 1, - aux_sym_type_identifier_token1, - ACTIONS(2308), 1, - sym__escape_identifier, - ACTIONS(2310), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1535), 1, - sym_type_identifier, - STATE(1542), 1, - sym__type_identifier, - STATE(1597), 1, - sym__inline_type, - STATE(1607), 1, - sym__non_function_inline_type, - STATE(1614), 1, - sym_type_identifier_path, - STATE(1624), 1, - sym_function_type, - STATE(2387), 1, + STATE(1774), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3790), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4534), 1, - sym_module_primary_expression, - STATE(4700), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4843), 1, - sym_abstract_type, - ACTIONS(2302), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1601), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [126422] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(1754), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1756), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2087), 1, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2238), 1, - aux_sym_type_identifier_token1, - ACTIONS(2240), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1188), 1, - sym__inline_type, - STATE(1522), 1, - sym_type_identifier, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(2388), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3819), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4683), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5072), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [126524] = 7, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [84156] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2374), 1, - aux_sym_variant_type_repeat1, - STATE(2389), 1, + STATE(1775), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, + ACTIONS(1878), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -203278,14 +159896,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 24, + ACTIONS(1880), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -203303,20 +159925,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [126582] = 7, + [84215] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2375), 1, - aux_sym_variant_type_repeat1, - STATE(2390), 1, + STATE(1776), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1730), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -203329,14 +159949,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 24, + ACTIONS(1732), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -203354,177 +159978,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [126640] = 29, + [84274] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(2391), 1, + STATE(1777), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3518), 1, - sym__non_function_inline_type, - STATE(3532), 1, - sym_function_type, - STATE(3614), 1, - sym__inline_type, - STATE(4028), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4891), 1, - sym_function_type_parameters, - STATE(4990), 1, - sym_abstract_type, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [126742] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2093), 1, + ACTIONS(1181), 2, + anon_sym_DOT, + sym__identifier, + ACTIONS(2019), 2, aux_sym_type_identifier_token1, - ACTIONS(2095), 1, sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1188), 1, - sym__inline_type, - STATE(2392), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3899), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4725), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4860), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [126844] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2500), 1, - anon_sym_LPAREN, - ACTIONS(3187), 1, + ACTIONS(1179), 14, anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(2393), 1, - sym_decorator, - STATE(2515), 1, - sym_variant_parameters, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1240), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_as, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -203532,11 +160010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1234), 21, + ACTIONS(1177), 22, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -203554,26 +160033,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [126908] = 8, + [84337] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3189), 1, - anon_sym_PIPE, - STATE(2394), 1, + STATE(1778), 1, sym_decorator, - STATE(2396), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1582), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -203581,14 +160057,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 24, + ACTIONS(1584), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -203606,26 +160086,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [126968] = 8, + [84396] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3189), 1, - anon_sym_PIPE, - STATE(2395), 1, + STATE(1779), 1, sym_decorator, - STATE(2396), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1640), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -203633,14 +160110,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 24, + ACTIONS(1642), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -203658,21 +160139,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [127028] = 7, + [84455] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3191), 1, - anon_sym_PIPE, - STATE(2396), 2, + ACTIONS(1810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2627), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2629), 1, + anon_sym_AMP_AMP, + ACTIONS(2631), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2633), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2643), 1, + anon_sym_GT_GT, + STATE(1780), 1, + sym_decorator, + ACTIONS(2623), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2625), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2641), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2635), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2637), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2621), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2645), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 12, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_GT, + [84539] = 9, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2647), 1, + anon_sym_EQ_GT, + STATE(1781), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -203684,14 +160233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1398), 25, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -203709,99 +160259,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [127086] = 29, + [84603] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, + ACTIONS(2627), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2629), 1, + anon_sym_AMP_AMP, + ACTIONS(2631), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2633), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2643), 1, + anon_sym_GT_GT, + ACTIONS(2649), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_COLON_GT, + STATE(1782), 1, + sym_decorator, + ACTIONS(2623), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2625), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2641), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2635), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2637), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2621), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2645), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1832), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [84691] = 21, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2627), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2629), 1, + anon_sym_AMP_AMP, + ACTIONS(2631), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2633), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2643), 1, + anon_sym_GT_GT, + ACTIONS(2649), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_COLON_GT, + STATE(1783), 1, + sym_decorator, + ACTIONS(2623), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2625), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2641), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2635), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2637), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2621), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2645), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1862), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1092), 1, - sym__non_function_inline_type, - STATE(2397), 1, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [84779] = 21, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2627), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2629), 1, + anon_sym_AMP_AMP, + ACTIONS(2631), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2633), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2643), 1, + anon_sym_GT_GT, + ACTIONS(2649), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_COLON_GT, + STATE(1784), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3765), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4704), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(5077), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + ACTIONS(2623), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2625), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2641), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [127188] = 8, + ACTIONS(2635), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2637), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2621), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2645), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1872), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [84867] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1430), 1, - anon_sym_EQ, - ACTIONS(1436), 1, - anon_sym_COLON_EQ, - STATE(2398), 1, + ACTIONS(2659), 1, + anon_sym_QMARK, + ACTIONS(2663), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2665), 1, + anon_sym_AMP_AMP, + ACTIONS(2667), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2671), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2677), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_GT_GT, + ACTIONS(2685), 1, + anon_sym_COLON_GT, + STATE(1785), 1, + sym_decorator, + ACTIONS(2657), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2679), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1902), 3, + anon_sym_unpack, + anon_sym_async, + sym__identifier, + ACTIONS(2673), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2675), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2655), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2683), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1904), 7, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [84957] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2687), 1, + anon_sym_LPAREN, + STATE(1786), 1, sym_decorator, + STATE(1896), 1, + sym__extension_expression_payload, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1507), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -203809,10 +160557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 24, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + ACTIONS(1509), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -203834,26 +160582,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [127248] = 8, + [85019] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3189), 1, - anon_sym_PIPE, - STATE(2394), 1, - aux_sym_variant_type_repeat1, - STATE(2399), 1, + ACTIONS(2627), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2629), 1, + anon_sym_AMP_AMP, + ACTIONS(2631), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2633), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2643), 1, + anon_sym_GT_GT, + ACTIONS(2649), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_COLON_GT, + STATE(1787), 1, + sym_decorator, + ACTIONS(2623), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2625), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2641), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2635), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2637), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2621), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2645), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1876), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [85107] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1788), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1513), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -203861,14 +160674,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1515), 26, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -203886,26 +160701,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [127308] = 8, + [85165] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3189), 1, + ACTIONS(1860), 1, anon_sym_PIPE, - STATE(2395), 1, - aux_sym_variant_type_repeat1, - STATE(2400), 1, + ACTIONS(2693), 1, + anon_sym_QMARK, + ACTIONS(2697), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2699), 1, + anon_sym_AMP_AMP, + ACTIONS(2701), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2705), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2711), 1, + anon_sym_STAR_STAR, + ACTIONS(2715), 1, + anon_sym_GT_GT, + ACTIONS(2719), 1, + anon_sym_COLON_GT, + STATE(1789), 1, + sym_decorator, + ACTIONS(2691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2695), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2713), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2707), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2709), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2717), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1862), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [85255] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2721), 1, + sym_regex_flags, + STATE(1790), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1501), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -203913,14 +160796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1503), 25, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -203938,303 +160822,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [127368] = 29, + [85315] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2338), 1, - aux_sym_type_identifier_token1, - ACTIONS(2340), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(2401), 1, + STATE(1791), 1, sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3020), 1, - sym_type_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3867), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4902), 1, - sym_abstract_type, - STATE(4991), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [127470] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, + ACTIONS(1590), 14, anon_sym_unpack, - ACTIONS(2075), 1, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_async, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym__identifier, + ACTIONS(1592), 25, anon_sym_LBRACE, - ACTIONS(2077), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + anon_sym_DOT, anon_sym_LBRACK, - ACTIONS(2093), 1, - aux_sym_type_identifier_token1, - ACTIONS(2095), 1, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, sym__escape_identifier, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1188), 1, - sym__inline_type, - STATE(2402), 1, - sym_decorator, - STATE(2956), 1, - sym_type_identifier, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3839), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4689), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4988), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [127572] = 29, + [85373] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1700), 1, - sym_type_identifier, - STATE(2403), 1, + ACTIONS(2563), 1, + anon_sym_EQ_GT, + STATE(1792), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3772), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4735), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4981), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [127674] = 13, + ACTIONS(1396), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1398), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [85433] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3167), 1, + ACTIONS(2659), 1, + anon_sym_QMARK, + ACTIONS(2663), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2665), 1, + anon_sym_AMP_AMP, + ACTIONS(2667), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2671), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2677), 1, anon_sym_STAR_STAR, - ACTIONS(3171), 1, + ACTIONS(2681), 1, anon_sym_GT_GT, - STATE(2404), 1, + ACTIONS(2685), 1, + anon_sym_COLON_GT, + STATE(1793), 1, sym_decorator, - ACTIONS(3147), 2, + ACTIONS(2657), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(2661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3169), 2, + ACTIONS(2679), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3163), 3, + ACTIONS(1830), 3, + anon_sym_unpack, + anon_sym_async, + sym__identifier, + ACTIONS(2673), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3165), 3, + ACTIONS(2675), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 7, - anon_sym_COLON, + ACTIONS(2655), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2683), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1832), 7, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [85523] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1794), 1, + sym_decorator, + ACTIONS(2608), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1528), 14, + anon_sym_unpack, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 16, + sym__identifier, + ACTIONS(1530), 23, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [127744] = 8, + sym__escape_identifier, + [85583] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2927), 1, - anon_sym_COLON, - STATE(1734), 1, - sym_type_annotation, - STATE(2405), 1, + ACTIONS(2382), 1, + anon_sym_EQ_GT, + STATE(1795), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -204242,13 +161073,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 23, - anon_sym_RPAREN, - anon_sym_EQ_GT, + ACTIONS(1398), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -204266,114 +161101,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [127804] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2126), 1, - anon_sym_LBRACE, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2230), 1, - aux_sym_type_identifier_token1, - ACTIONS(2232), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(2406), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(3296), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3518), 1, - sym__non_function_inline_type, - STATE(3532), 1, - sym_function_type, - STATE(3614), 1, - sym__inline_type, - STATE(3782), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4670), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4790), 1, - sym_abstract_type, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [127906] = 9, + [85643] = 13, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2711), 1, + anon_sym_STAR_STAR, + ACTIONS(2715), 1, + anon_sym_GT_GT, + STATE(1796), 1, + sym_decorator, + ACTIONS(2691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2695), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2713), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2707), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2709), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 18, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [85715] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3167), 1, + ACTIONS(2711), 1, anon_sym_STAR_STAR, - STATE(2407), 1, + STATE(1797), 1, sym_decorator, - ACTIONS(3151), 2, + ACTIONS(2695), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3165), 3, + ACTIONS(2709), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 10, - anon_sym_COLON, + ACTIONS(1810), 10, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 21, + ACTIONS(1812), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -204392,56 +161215,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [127968] = 15, + [85779] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3167), 1, + ACTIONS(2711), 1, anon_sym_STAR_STAR, - ACTIONS(3171), 1, + ACTIONS(2715), 1, anon_sym_GT_GT, - STATE(2408), 1, + STATE(1798), 1, sym_decorator, - ACTIONS(3147), 2, + ACTIONS(2691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(2695), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3169), 2, + ACTIONS(2713), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_COLON, + ACTIONS(1810), 3, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3163), 3, + ACTIONS(2707), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3165), 3, + ACTIONS(2709), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3145), 4, + ACTIONS(2689), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3173), 4, + ACTIONS(2717), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 12, + ACTIONS(1812), 14, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -204451,122 +161276,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [128042] = 18, + [85855] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3153), 1, + ACTIONS(2697), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3157), 1, + ACTIONS(2701), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(2705), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3167), 1, + ACTIONS(2711), 1, anon_sym_STAR_STAR, - ACTIONS(3171), 1, + ACTIONS(2715), 1, anon_sym_GT_GT, - STATE(2409), 1, + STATE(1799), 1, sym_decorator, - ACTIONS(3147), 2, + ACTIONS(2691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(2695), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3169), 2, + ACTIONS(2713), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_COLON, + ACTIONS(1810), 3, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3163), 3, + ACTIONS(2707), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3165), 3, + ACTIONS(2709), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3145), 4, + ACTIONS(2689), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3173), 4, + ACTIONS(2717), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 9, + ACTIONS(1812), 11, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_COLON_GT, - [128122] = 17, + [85937] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3153), 1, + ACTIONS(2697), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(2705), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3167), 1, + ACTIONS(2711), 1, anon_sym_STAR_STAR, - ACTIONS(3171), 1, + ACTIONS(2715), 1, anon_sym_GT_GT, - STATE(2410), 1, + STATE(1800), 1, sym_decorator, - ACTIONS(3147), 2, + ACTIONS(2691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(2695), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3169), 2, + ACTIONS(2713), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_COLON, + ACTIONS(1810), 3, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3163), 3, + ACTIONS(2707), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3165), 3, + ACTIONS(2709), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3145), 4, + ACTIONS(2689), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3173), 4, + ACTIONS(2717), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 10, + ACTIONS(1812), 12, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -204574,121 +161403,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PIPE_PIPE_PIPE, anon_sym_COLON_GT, - [128200] = 19, + [86017] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3153), 1, + ACTIONS(2697), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3155), 1, + ACTIONS(2699), 1, anon_sym_AMP_AMP, - ACTIONS(3157), 1, + ACTIONS(2701), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(2705), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3167), 1, + ACTIONS(2711), 1, anon_sym_STAR_STAR, - ACTIONS(3171), 1, + ACTIONS(2715), 1, anon_sym_GT_GT, - STATE(2411), 1, + STATE(1801), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_COLON, + ACTIONS(1810), 2, + anon_sym_PIPE, anon_sym_PIPE_PIPE, - ACTIONS(3147), 2, + ACTIONS(2691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(2695), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3169), 2, + ACTIONS(2713), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3163), 3, + ACTIONS(2707), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3165), 3, + ACTIONS(2709), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3145), 4, + ACTIONS(2689), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3173), 4, + ACTIONS(2717), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 9, + ACTIONS(1812), 11, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_COLON_GT, - [128282] = 16, + [86101] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3153), 1, + ACTIONS(2697), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3167), 1, + ACTIONS(2711), 1, anon_sym_STAR_STAR, - ACTIONS(3171), 1, + ACTIONS(2715), 1, anon_sym_GT_GT, - STATE(2412), 1, + STATE(1802), 1, sym_decorator, - ACTIONS(3147), 2, + ACTIONS(2691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(2695), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3169), 2, + ACTIONS(2713), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_COLON, + ACTIONS(1810), 3, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3163), 3, + ACTIONS(2707), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3165), 3, + ACTIONS(2709), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3145), 4, + ACTIONS(2689), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3173), 4, + ACTIONS(2717), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 11, + ACTIONS(1812), 13, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -204697,41 +161530,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [128358] = 9, + [86179] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3167), 1, + ACTIONS(2711), 1, anon_sym_STAR_STAR, - STATE(2413), 1, + STATE(1803), 1, sym_decorator, - ACTIONS(3151), 2, + ACTIONS(2695), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3165), 3, + ACTIONS(2709), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 10, - anon_sym_COLON, + ACTIONS(1810), 10, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 21, + ACTIONS(1812), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -204750,46 +161585,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [128420] = 11, + [86243] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3167), 1, + ACTIONS(2711), 1, anon_sym_STAR_STAR, - STATE(2414), 1, + STATE(1804), 1, sym_decorator, - ACTIONS(3147), 2, + ACTIONS(2691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(2695), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3163), 3, + ACTIONS(2707), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3165), 3, + ACTIONS(2709), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 8, - anon_sym_COLON, + ACTIONS(1810), 8, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 18, + ACTIONS(1812), 20, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -204805,154 +161642,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [128486] = 11, + [86311] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2518), 1, - anon_sym_DOT, - ACTIONS(2520), 1, - anon_sym_LBRACK, - STATE(1494), 1, - sym_call_arguments, - STATE(2415), 1, + ACTIONS(1870), 1, + anon_sym_PIPE, + ACTIONS(2693), 1, + anon_sym_QMARK, + ACTIONS(2697), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2699), 1, + anon_sym_AMP_AMP, + ACTIONS(2701), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2705), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2711), 1, + anon_sym_STAR_STAR, + ACTIONS(2715), 1, + anon_sym_GT_GT, + ACTIONS(2719), 1, + anon_sym_COLON_GT, + STATE(1805), 1, sym_decorator, - ACTIONS(3194), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1613), 11, - anon_sym_LT, + ACTIONS(2691), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_GT, + ACTIONS(2695), 2, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1611), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, + ACTIONS(2713), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2707), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(2709), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2717), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_COLON_GT, - [128552] = 22, + ACTIONS(1872), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [86401] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1735), 1, - anon_sym_COLON, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - ACTIONS(3149), 1, + ACTIONS(1874), 1, + anon_sym_PIPE, + ACTIONS(2693), 1, anon_sym_QMARK, - ACTIONS(3153), 1, + ACTIONS(2697), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3155), 1, + ACTIONS(2699), 1, anon_sym_AMP_AMP, - ACTIONS(3157), 1, + ACTIONS(2701), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3159), 1, + ACTIONS(2703), 1, anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(2705), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3167), 1, + ACTIONS(2711), 1, anon_sym_STAR_STAR, - ACTIONS(3171), 1, + ACTIONS(2715), 1, anon_sym_GT_GT, - STATE(2416), 1, + ACTIONS(2719), 1, + anon_sym_COLON_GT, + STATE(1806), 1, sym_decorator, - ACTIONS(3147), 2, + ACTIONS(2691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(2695), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3169), 2, + ACTIONS(2713), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3163), 3, + ACTIONS(2707), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3165), 3, + ACTIONS(2709), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3145), 4, + ACTIONS(2689), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3173), 4, + ACTIONS(2717), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1733), 7, + ACTIONS(1876), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [128640] = 11, + [86491] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2518), 1, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(2614), 1, + anon_sym_COLON, + STATE(1807), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1385), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, anon_sym_DOT, - ACTIONS(2520), 1, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1387), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - STATE(1494), 1, - sym_call_arguments, - STATE(2417), 1, - sym_decorator, - ACTIONS(3196), 2, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [86553] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1808), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 11, + ACTIONS(1473), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -204960,10 +161857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 20, + ACTIONS(1475), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_to, - anon_sym_downto, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -204981,94 +161884,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [128706] = 29, + [86611] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, - sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(760), 1, - sym_type_identifier, - STATE(773), 1, - sym__type_identifier, - STATE(788), 1, - sym__non_function_inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(841), 1, - sym__inline_type, - STATE(2418), 1, + ACTIONS(2470), 1, + anon_sym_COLON, + ACTIONS(2472), 1, + anon_sym_COMMA, + STATE(1809), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3787), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4823), 1, - sym_abstract_type, - STATE(4842), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [128808] = 7, + ACTIONS(1396), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1398), 26, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [86673] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2419), 1, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2725), 1, + anon_sym_DOT, + ACTIONS(2727), 1, + anon_sym_LBRACK, + STATE(1810), 1, sym_decorator, - ACTIONS(3141), 2, + STATE(2004), 1, + sym_call_arguments, + ACTIONS(2729), 2, anon_sym_DASH_GT, anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 12, + ACTIONS(1528), 12, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, @@ -205081,12 +161973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 23, - anon_sym_LPAREN, + ACTIONS(1530), 21, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, @@ -205105,675 +161995,502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [128866] = 29, + [86741] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1700), 1, - sym_type_identifier, - STATE(2420), 1, + STATE(1811), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4051), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4730), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4927), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + ACTIONS(2619), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [128968] = 29, + ACTIONS(1528), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 25, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [86801] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(2580), 1, anon_sym_LPAREN, - ACTIONS(2318), 1, - aux_sym_type_identifier_token1, - ACTIONS(2320), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(1402), 1, - sym_type_identifier, - STATE(2421), 1, + ACTIONS(2582), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_LBRACK, + STATE(1701), 1, + sym_call_arguments, + STATE(1812), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3930), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4764), 1, - sym_function_type_parameters, - STATE(4841), 1, - sym_abstract_type, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + ACTIONS(2731), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [129070] = 29, + ACTIONS(1528), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 22, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [86869] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2410), 1, - aux_sym_type_identifier_token1, - ACTIONS(2412), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(2287), 1, - sym_type_identifier, - STATE(2422), 1, + ACTIONS(2677), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_GT_GT, + STATE(1813), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3804), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4810), 1, - sym_abstract_type, - STATE(5005), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + ACTIONS(2657), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2679), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [129172] = 21, + ACTIONS(2673), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2675), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, + anon_sym_unpack, + anon_sym_LT, + anon_sym_GT, + anon_sym_async, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym__identifier, + ACTIONS(1812), 16, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + sym__escape_identifier, + [86941] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1739), 1, - anon_sym_COLON, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - ACTIONS(3153), 1, + ACTIONS(2627), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3155), 1, + ACTIONS(2629), 1, anon_sym_AMP_AMP, - ACTIONS(3157), 1, + ACTIONS(2631), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3159), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3161), 1, + ACTIONS(2633), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3167), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - ACTIONS(3171), 1, + ACTIONS(2643), 1, anon_sym_GT_GT, - STATE(2423), 1, + ACTIONS(2649), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_COLON_GT, + STATE(1814), 1, sym_decorator, - ACTIONS(3147), 2, + ACTIONS(2623), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(2625), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3169), 2, + ACTIONS(2641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3163), 3, + ACTIONS(2635), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3165), 3, + ACTIONS(2637), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3145), 4, + ACTIONS(2621), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3173), 4, + ACTIONS(2645), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1737), 8, + ACTIONS(1904), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [129258] = 29, + [87029] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(2424), 1, + STATE(1815), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3928), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4801), 1, - sym_abstract_type, - STATE(4923), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [129360] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, + ACTIONS(1538), 14, anon_sym_unpack, - ACTIONS(2075), 1, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_async, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym__identifier, + ACTIONS(1540), 25, anon_sym_LBRACE, - ACTIONS(2077), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + anon_sym_DOT, anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2222), 1, - aux_sym_type_identifier_token1, - ACTIONS(2224), 1, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1156), 1, - sym_type_identifier_path, - STATE(1188), 1, - sym__inline_type, - STATE(1540), 1, - sym__type_identifier, - STATE(1575), 1, - sym__non_function_inline_type, - STATE(1872), 1, - sym_type_identifier, - STATE(2425), 1, + [87087] = 9, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2677), 1, + anon_sym_STAR_STAR, + STATE(1816), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3852), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4305), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4877), 1, - sym_function_type_parameters, - STATE(4887), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + ACTIONS(2661), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [129462] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, + ACTIONS(2675), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 12, anon_sym_unpack, - ACTIONS(2075), 1, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_async, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym__identifier, + ACTIONS(1812), 21, anon_sym_LBRACE, - ACTIONS(2077), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + anon_sym_DOT, anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2338), 1, - aux_sym_type_identifier_token1, - ACTIONS(2340), 1, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1134), 1, - sym__inline_type, - STATE(1155), 1, - sym_function_type, - STATE(2426), 1, - sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3020), 1, - sym_type_identifier, - STATE(3226), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3867), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4828), 1, - sym_function_type_parameters, - STATE(4902), 1, - sym_abstract_type, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [129564] = 29, + [87151] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(2427), 1, + ACTIONS(2627), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2629), 1, + anon_sym_AMP_AMP, + ACTIONS(2631), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2633), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2643), 1, + anon_sym_GT_GT, + ACTIONS(2651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_COLON_GT, + STATE(1817), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3765), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4704), 1, - sym_abstract_type, - STATE(4718), 1, - sym_function_type_parameters, - STATE(4759), 1, - sym__function_type_parameter_list, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + ACTIONS(2623), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2625), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2641), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [129666] = 29, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, + ACTIONS(2635), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2637), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2621), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2645), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1908), 11, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2472), 1, - aux_sym_type_identifier_token1, - ACTIONS(2474), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1035), 1, - sym__inline_type, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(2428), 1, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [87237] = 21, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2663), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2665), 1, + anon_sym_AMP_AMP, + ACTIONS(2667), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2671), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2677), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_GT_GT, + ACTIONS(2685), 1, + anon_sym_COLON_GT, + STATE(1818), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, - sym__type_identifier, - STATE(3314), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3764), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4768), 1, - sym_abstract_type, - STATE(5052), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + ACTIONS(2657), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2679), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [129768] = 7, + ACTIONS(1906), 3, + anon_sym_unpack, + anon_sym_async, + sym__identifier, + ACTIONS(2673), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2675), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2655), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2683), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1908), 8, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [87325] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2369), 1, - aux_sym_variant_type_repeat1, - STATE(2429), 1, + ACTIONS(2733), 1, + anon_sym_as, + STATE(1819), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 13, + ACTIONS(1495), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -205781,13 +162498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 23, + ACTIONS(1497), 25, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -205805,26 +162524,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [129826] = 7, + [87385] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2370), 1, - aux_sym_variant_type_repeat1, - STATE(2430), 1, + ACTIONS(2333), 1, + anon_sym_LPAREN, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_LBRACK, + STATE(1085), 1, + sym_call_arguments, + STATE(1820), 1, sym_decorator, + ACTIONS(2735), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, - anon_sym_COLON, + ACTIONS(1528), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -205832,13 +162558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 23, - anon_sym_RPAREN, - anon_sym_EQ_GT, + ACTIONS(1530), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -205856,392 +162581,502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [129884] = 29, + [87453] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, + ACTIONS(2663), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2667), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2671), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2677), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_GT_GT, + STATE(1821), 1, + sym_decorator, + ACTIONS(2657), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2679), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2673), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2675), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2655), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2683), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1810), 5, anon_sym_unpack, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2126), 1, + anon_sym_async, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym__identifier, + ACTIONS(1812), 9, anon_sym_LBRACE, - ACTIONS(2128), 1, anon_sym_LPAREN, - ACTIONS(2130), 1, - anon_sym_module, - ACTIONS(2138), 1, + anon_sym_DOT, anon_sym_LBRACK, - ACTIONS(2144), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(2431), 1, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_GT, + sym__escape_identifier, + [87535] = 10, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2384), 1, + anon_sym_PIPE, + ACTIONS(2491), 1, + anon_sym_as, + STATE(1822), 1, sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2935), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3387), 1, - sym__type_identifier, - STATE(3518), 1, - sym__non_function_inline_type, - STATE(3532), 1, - sym_function_type, - STATE(3614), 1, - sym__inline_type, - STATE(3781), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4784), 1, - sym_abstract_type, - STATE(4859), 1, - sym_function_type_parameters, - ACTIONS(2140), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + STATE(2784), 1, + sym_as_aliasing, + ACTIONS(2379), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(3513), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [129986] = 29, + ACTIONS(1396), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1398), 23, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [87601] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(1999), 1, + ACTIONS(2659), 1, + anon_sym_QMARK, + ACTIONS(2663), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2665), 1, + anon_sym_AMP_AMP, + ACTIONS(2667), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2671), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2677), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_GT_GT, + ACTIONS(2685), 1, + anon_sym_COLON_GT, + STATE(1823), 1, + sym_decorator, + ACTIONS(2657), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2679), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1860), 3, anon_sym_unpack, - ACTIONS(2264), 1, + anon_sym_async, + sym__identifier, + ACTIONS(2673), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2675), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2655), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2683), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1862), 7, anon_sym_LBRACE, - ACTIONS(2266), 1, anon_sym_LPAREN, - ACTIONS(2268), 1, - anon_sym_module, - ACTIONS(2274), 1, + anon_sym_DOT, anon_sym_LBRACK, - ACTIONS(2280), 1, - aux_sym_type_identifier_token1, - ACTIONS(2282), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, sym__escape_identifier, - ACTIONS(2284), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(773), 1, - sym__type_identifier, - STATE(788), 1, - sym__non_function_inline_type, - STATE(818), 1, - sym_type_identifier_path, - STATE(823), 1, - sym_function_type, - STATE(841), 1, - sym__inline_type, - STATE(859), 1, - sym_type_identifier, - STATE(2432), 1, + [87691] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2596), 1, + anon_sym_COLON, + STATE(1358), 1, + sym_type_annotation, + STATE(1824), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3784), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4527), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4812), 1, - sym_abstract_type, - STATE(4897), 1, - sym_function_type_parameters, - ACTIONS(2276), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(840), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [130088] = 29, + ACTIONS(1156), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1158), 25, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [87753] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(741), 1, - anon_sym_module, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2075), 1, - anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - sym_unit_type, - ACTIONS(2338), 1, - aux_sym_type_identifier_token1, - ACTIONS(2340), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1155), 1, - sym_function_type, - STATE(1188), 1, - sym__inline_type, - STATE(2433), 1, + STATE(1825), 1, sym_decorator, - STATE(2992), 1, - sym__type_identifier, - STATE(3009), 1, - sym_type_identifier_path, - STATE(3020), 1, - sym_type_identifier, - STATE(3145), 1, - sym__non_function_inline_type, - STATE(3322), 1, - sym_module_identifier, - STATE(3867), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4213), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4902), 1, - sym_abstract_type, - STATE(4916), 1, - sym_function_type_parameters, - ACTIONS(2089), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1143), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [130190] = 29, + ACTIONS(1521), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1523), 26, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [87811] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(209), 1, - anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2007), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym_unit_type, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - aux_sym_type_identifier_token1, - ACTIONS(2346), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1050), 1, - sym_function_type, - STATE(1055), 1, - sym__non_function_inline_type, - STATE(1084), 1, - sym__inline_type, - STATE(1116), 1, - sym__type_identifier, - STATE(1163), 1, - sym_type_identifier_path, - STATE(2434), 1, + ACTIONS(1830), 1, + anon_sym_PIPE, + ACTIONS(2693), 1, + anon_sym_QMARK, + ACTIONS(2697), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2699), 1, + anon_sym_AMP_AMP, + ACTIONS(2701), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2705), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2711), 1, + anon_sym_STAR_STAR, + ACTIONS(2715), 1, + anon_sym_GT_GT, + ACTIONS(2719), 1, + anon_sym_COLON_GT, + STATE(1826), 1, sym_decorator, - STATE(2472), 1, - sym_type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(3775), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4344), 1, - sym_module_primary_expression, - STATE(4755), 1, - sym_abstract_type, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4996), 1, - sym_function_type_parameters, - ACTIONS(2009), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, + ACTIONS(2691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2695), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2713), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1047), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [130292] = 29, + ACTIONS(2707), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2709), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2717), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1832), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [87901] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, - anon_sym_type, - ACTIONS(409), 1, - anon_sym_module, - ACTIONS(1999), 1, + ACTIONS(2663), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2671), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2677), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_GT_GT, + STATE(1827), 1, + sym_decorator, + ACTIONS(2657), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2679), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2673), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2675), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2655), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2683), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1810), 5, anon_sym_unpack, - ACTIONS(2246), 1, + anon_sym_async, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym__identifier, + ACTIONS(1812), 10, anon_sym_LBRACE, - ACTIONS(2248), 1, anon_sym_LPAREN, - ACTIONS(2254), 1, + anon_sym_DOT, anon_sym_LBRACK, - ACTIONS(2258), 1, - aux_sym_type_identifier_token1, - ACTIONS(2260), 1, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, sym__escape_identifier, - ACTIONS(2262), 1, - sym_unit_type, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1588), 1, - sym__type_identifier, - STATE(1680), 1, - sym_function_type, - STATE(1720), 1, - sym_type_identifier_path, - STATE(1725), 1, - sym__non_function_inline_type, - STATE(1733), 1, - sym__inline_type, - STATE(1962), 1, - sym_type_identifier, - STATE(2435), 1, + [87981] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2405), 1, + anon_sym_EQ_GT, + STATE(1828), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3783), 1, - aux_sym_polymorphic_type_repeat1, - STATE(4514), 1, - sym_module_primary_expression, - STATE(4759), 1, - sym__function_type_parameter_list, - STATE(4796), 1, - sym_abstract_type, - STATE(4894), 1, - sym_function_type_parameters, - ACTIONS(2256), 2, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - STATE(1676), 9, - sym_polymorphic_type, - sym_tuple_type, - sym_polyvar_type, - sym_record_type, - sym_object_type, - sym_generic_type, - sym__as_aliasing_non_function_inline_type, - sym_module_pack, - sym_unit, - [130394] = 8, + ACTIONS(1396), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1398), 27, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [88041] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3182), 1, - anon_sym_PIPE, - STATE(2361), 1, - aux_sym_variant_type_repeat1, - STATE(2436), 1, + STATE(1829), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, - anon_sym_COLON, + ACTIONS(1546), 14, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -206249,13 +163084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 23, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + sym__identifier, + ACTIONS(1548), 25, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -206273,115 +163110,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [130454] = 15, + sym__escape_identifier, + [88099] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3208), 1, + ACTIONS(2663), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2665), 1, + anon_sym_AMP_AMP, + ACTIONS(2667), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2671), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2677), 1, anon_sym_STAR_STAR, - ACTIONS(3212), 1, + ACTIONS(2681), 1, anon_sym_GT_GT, - STATE(2437), 1, + STATE(1830), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3200), 2, + ACTIONS(2657), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3202), 2, + ACTIONS(2661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3210), 2, + ACTIONS(2679), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3204), 3, + ACTIONS(2673), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3206), 3, + ACTIONS(2675), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3198), 4, + ACTIONS(1810), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_PIPE_PIPE, + sym__identifier, + ACTIONS(2655), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3214), 4, + ACTIONS(2683), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 12, + ACTIONS(1812), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [130527] = 16, + sym__escape_identifier, + [88183] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3208), 1, + ACTIONS(2663), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2677), 1, anon_sym_STAR_STAR, - ACTIONS(3212), 1, + ACTIONS(2681), 1, anon_sym_GT_GT, - ACTIONS(3216), 1, - anon_sym_AMP_AMP_AMP, - STATE(2438), 1, + STATE(1831), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3200), 2, + ACTIONS(2657), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3202), 2, + ACTIONS(2661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3210), 2, + ACTIONS(2679), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3204), 3, + ACTIONS(2673), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3206), 3, + ACTIONS(2675), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3198), 4, + ACTIONS(2655), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3214), 4, + ACTIONS(2683), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 11, + ACTIONS(1810), 5, + anon_sym_unpack, + anon_sym_async, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym__identifier, + ACTIONS(1812), 11, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -206390,23 +163237,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [130602] = 8, + sym__escape_identifier, + [88261] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3218), 1, - anon_sym_PIPE, - STATE(2439), 1, + STATE(1832), 1, sym_decorator, - STATE(2479), 1, - aux_sym_variant_type_repeat1, + ACTIONS(2610), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, - anon_sym_COLON, + ACTIONS(1528), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -206418,12 +163264,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 22, + ACTIONS(1530), 26, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -206441,40 +163291,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [130661] = 9, + [88321] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3208), 1, + ACTIONS(2677), 1, anon_sym_STAR_STAR, - STATE(2440), 1, + STATE(1833), 1, sym_decorator, - ACTIONS(3202), 2, + ACTIONS(2661), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3206), 3, + ACTIONS(2675), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1810), 12, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 21, + sym__identifier, + ACTIONS(1812), 21, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -206493,40 +163345,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [130722] = 9, + sym__escape_identifier, + [88385] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3208), 1, + ACTIONS(2677), 1, anon_sym_STAR_STAR, - STATE(2441), 1, + STATE(1834), 1, sym_decorator, - ACTIONS(3202), 2, + ACTIONS(2657), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2661), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3206), 3, + ACTIONS(2673), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2675), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1810), 10, + anon_sym_unpack, + anon_sym_LT, + anon_sym_GT, + anon_sym_async, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + sym__identifier, + ACTIONS(1812), 18, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + sym__escape_identifier, + [88453] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1835), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1550), 14, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 21, + sym__identifier, + ACTIONS(1552), 25, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -206538,6 +163443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -206545,109 +163454,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [130783] = 21, + sym__escape_identifier, + [88511] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3224), 1, - anon_sym_QMARK, - ACTIONS(3228), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3230), 1, - anon_sym_AMP_AMP, - ACTIONS(3232), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3242), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - ACTIONS(3246), 1, + ACTIONS(2643), 1, anon_sym_GT_GT, - ACTIONS(3250), 1, - anon_sym_COLON_GT, - STATE(2442), 1, + STATE(1836), 1, sym_decorator, - ACTIONS(3222), 2, + ACTIONS(2623), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3226), 2, + ACTIONS(2625), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3244), 2, + ACTIONS(2641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3238), 3, + ACTIONS(2635), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3240), 3, + ACTIONS(2637), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3220), 4, + ACTIONS(1810), 6, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3248), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1678), 7, + ACTIONS(1812), 19, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - [130868] = 11, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [88583] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3208), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - STATE(2443), 1, + STATE(1837), 1, sym_decorator, - ACTIONS(3200), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3202), 2, + ACTIONS(2625), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3204), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3206), 3, + ACTIONS(2637), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 7, + ACTIONS(1810), 9, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 18, + ACTIONS(1812), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, @@ -206656,6 +163559,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -206663,452 +163569,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [130933] = 21, + [88647] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - ACTIONS(3208), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - ACTIONS(3212), 1, + ACTIONS(2643), 1, anon_sym_GT_GT, - ACTIONS(3216), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3252), 1, - anon_sym_QMARK, - ACTIONS(3254), 1, + STATE(1838), 1, + sym_decorator, + ACTIONS(1810), 2, anon_sym_AMP_AMP, - ACTIONS(3256), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3258), 1, anon_sym_PIPE_PIPE, - ACTIONS(3260), 1, - anon_sym_CARET_CARET_CARET, - STATE(2444), 1, - sym_decorator, - ACTIONS(3200), 2, + ACTIONS(2623), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3202), 2, + ACTIONS(2625), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3210), 2, + ACTIONS(2641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3204), 3, + ACTIONS(2635), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3206), 3, + ACTIONS(2637), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3198), 4, + ACTIONS(2621), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3214), 4, + ACTIONS(2645), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1733), 7, + ACTIONS(1812), 15, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [131018] = 21, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [88723] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3224), 1, - anon_sym_QMARK, - ACTIONS(3228), 1, + ACTIONS(2627), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3230), 1, - anon_sym_AMP_AMP, - ACTIONS(3232), 1, + ACTIONS(2631), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, + ACTIONS(2633), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3242), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - ACTIONS(3246), 1, + ACTIONS(2643), 1, anon_sym_GT_GT, - ACTIONS(3250), 1, - anon_sym_COLON_GT, - STATE(2445), 1, + STATE(1839), 1, sym_decorator, - ACTIONS(3222), 2, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2623), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3226), 2, + ACTIONS(2625), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3244), 2, + ACTIONS(2641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3238), 3, + ACTIONS(2635), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3240), 3, + ACTIONS(2637), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3220), 4, + ACTIONS(2621), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3248), 4, + ACTIONS(2645), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1712), 7, + ACTIONS(1812), 12, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - [131103] = 17, + anon_sym_COLON_GT, + [88805] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3228), 1, + ACTIONS(2627), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3236), 1, + ACTIONS(2633), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3242), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - ACTIONS(3246), 1, + ACTIONS(2643), 1, anon_sym_GT_GT, - STATE(2446), 1, + STATE(1840), 1, sym_decorator, - ACTIONS(1731), 2, + ACTIONS(1810), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3222), 2, + ACTIONS(2623), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3226), 2, + ACTIONS(2625), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3244), 2, + ACTIONS(2641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3238), 3, + ACTIONS(2635), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3240), 3, + ACTIONS(2637), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3220), 4, + ACTIONS(2621), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3248), 4, + ACTIONS(2645), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 10, + ACTIONS(1812), 13, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_PIPE_PIPE_PIPE, anon_sym_COLON_GT, - [131180] = 8, + [88885] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3262), 1, - anon_sym_PIPE, - STATE(2447), 1, - sym_decorator, - STATE(2495), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2661), 1, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1254), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2663), 1, anon_sym_AMP_AMP_AMP, + ACTIONS(2665), 1, + anon_sym_AMP_AMP, + ACTIONS(2667), 1, anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2671), 1, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, + ACTIONS(2677), 1, anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2681), 1, + anon_sym_GT_GT, + ACTIONS(2685), 1, anon_sym_COLON_GT, - [131239] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3264), 1, - anon_sym_PIPE, - STATE(2448), 2, + STATE(1841), 1, sym_decorator, - aux_sym_variant_type_repeat1, + ACTIONS(2657), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2679), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(2655), 3, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, + ACTIONS(2673), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(2675), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2683), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_COLON_GT, - [131296] = 20, + ACTIONS(1802), 5, + anon_sym_unpack, + anon_sym_GT, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1804), 8, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [88973] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3228), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3230), 1, - anon_sym_AMP_AMP, - ACTIONS(3232), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3242), 1, + ACTIONS(2627), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - ACTIONS(3246), 1, + ACTIONS(2643), 1, anon_sym_GT_GT, - ACTIONS(3250), 1, - anon_sym_COLON_GT, - STATE(2449), 1, + STATE(1842), 1, sym_decorator, - ACTIONS(3222), 2, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2623), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3226), 2, + ACTIONS(2625), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3244), 2, + ACTIONS(2641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3238), 3, + ACTIONS(2635), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3240), 3, + ACTIONS(2637), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3220), 4, + ACTIONS(2621), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3248), 4, + ACTIONS(2645), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1737), 8, + ACTIONS(1812), 14, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - [131379] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2450), 1, - sym_decorator, - STATE(2479), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 13, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1254), 22, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_COLON_GT, - [131436] = 8, + [89051] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3218), 1, - anon_sym_PIPE, - STATE(2451), 1, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + STATE(1843), 1, sym_decorator, - STATE(2479), 1, - aux_sym_variant_type_repeat1, + ACTIONS(2625), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, - anon_sym_COLON, + ACTIONS(2637), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 22, + ACTIONS(1812), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -207116,51 +163941,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [131495] = 9, + [89115] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3242), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - STATE(2452), 1, + STATE(1844), 1, sym_decorator, - ACTIONS(3226), 2, + ACTIONS(2623), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2625), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3240), 3, + ACTIONS(2635), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2637), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1810), 7, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 21, + ACTIONS(1812), 21, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -207168,53 +163998,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [131556] = 11, + [89183] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3242), 1, - anon_sym_STAR_STAR, - STATE(2453), 1, + STATE(1845), 1, sym_decorator, - ACTIONS(3222), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3226), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3238), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3240), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 7, + ACTIONS(1890), 14, + anon_sym_unpack, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_async, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 18, + sym__identifier, + ACTIONS(1892), 25, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -207222,216 +164049,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [131621] = 21, + sym__escape_identifier, + [89241] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3224), 1, + ACTIONS(2659), 1, anon_sym_QMARK, - ACTIONS(3228), 1, + ACTIONS(2663), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3230), 1, + ACTIONS(2665), 1, anon_sym_AMP_AMP, - ACTIONS(3232), 1, + ACTIONS(2667), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3234), 1, + ACTIONS(2669), 1, anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, + ACTIONS(2671), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3242), 1, + ACTIONS(2677), 1, anon_sym_STAR_STAR, - ACTIONS(3246), 1, + ACTIONS(2681), 1, anon_sym_GT_GT, - ACTIONS(3250), 1, + ACTIONS(2685), 1, anon_sym_COLON_GT, - STATE(2454), 1, + STATE(1846), 1, sym_decorator, - ACTIONS(3222), 2, + ACTIONS(2657), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3226), 2, + ACTIONS(2661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3244), 2, + ACTIONS(2679), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3238), 3, + ACTIONS(1870), 3, + anon_sym_unpack, + anon_sym_async, + sym__identifier, + ACTIONS(2673), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3240), 3, + ACTIONS(2675), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3220), 4, + ACTIONS(2655), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3248), 4, + ACTIONS(2683), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1716), 7, + ACTIONS(1872), 7, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - [131706] = 19, + sym__escape_identifier, + [89331] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3228), 1, + ACTIONS(1902), 1, + anon_sym_PIPE, + ACTIONS(2693), 1, + anon_sym_QMARK, + ACTIONS(2697), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3230), 1, + ACTIONS(2699), 1, anon_sym_AMP_AMP, - ACTIONS(3232), 1, + ACTIONS(2701), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3236), 1, + ACTIONS(2703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2705), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3242), 1, + ACTIONS(2711), 1, anon_sym_STAR_STAR, - ACTIONS(3246), 1, + ACTIONS(2715), 1, anon_sym_GT_GT, - STATE(2455), 1, + ACTIONS(2719), 1, + anon_sym_COLON_GT, + STATE(1847), 1, sym_decorator, - ACTIONS(3222), 2, + ACTIONS(2691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3226), 2, + ACTIONS(2695), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3244), 2, + ACTIONS(2713), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3238), 3, + ACTIONS(2707), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3240), 3, + ACTIONS(2709), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3220), 4, + ACTIONS(2689), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3248), 4, + ACTIONS(2717), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 9, + ACTIONS(1904), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_COLON_GT, - [131787] = 21, + [89421] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3224), 1, + ACTIONS(2580), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_LBRACK, + STATE(1701), 1, + sym_call_arguments, + STATE(1848), 1, + sym_decorator, + ACTIONS(2737), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1528), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 21, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - ACTIONS(3228), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3230), 1, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [89489] = 21, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1906), 1, + anon_sym_PIPE, + ACTIONS(2697), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2699), 1, anon_sym_AMP_AMP, - ACTIONS(3232), 1, + ACTIONS(2701), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3234), 1, + ACTIONS(2703), 1, anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, + ACTIONS(2705), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3242), 1, + ACTIONS(2711), 1, anon_sym_STAR_STAR, - ACTIONS(3246), 1, + ACTIONS(2715), 1, anon_sym_GT_GT, - ACTIONS(3250), 1, + ACTIONS(2719), 1, anon_sym_COLON_GT, - STATE(2456), 1, + STATE(1849), 1, sym_decorator, - ACTIONS(3222), 2, + ACTIONS(2691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3226), 2, + ACTIONS(2695), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3244), 2, + ACTIONS(2713), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3238), 3, + ACTIONS(2707), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3240), 3, + ACTIONS(2709), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3220), 4, + ACTIONS(2689), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3248), 4, + ACTIONS(2717), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1720), 7, + ACTIONS(1908), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_and, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - [131872] = 8, + [89577] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1545), 1, - anon_sym_COLON, - ACTIONS(3267), 1, - anon_sym_EQ_GT, - STATE(2457), 1, + STATE(1850), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1423), 11, + ACTIONS(1914), 14, + anon_sym_unpack, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_async, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -207439,7 +164335,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 23, + sym__identifier, + ACTIONS(1916), 25, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, @@ -207463,26 +164361,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [131931] = 8, + sym__escape_identifier, + [89635] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3262), 1, - anon_sym_PIPE, - STATE(2448), 1, - aux_sym_variant_type_repeat1, - STATE(2458), 1, + ACTIONS(2739), 1, + anon_sym_LPAREN, + STATE(1851), 1, sym_decorator, + STATE(2010), 1, + sym_variant_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1517), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -207490,13 +164391,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1519), 24, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -207514,25 +164416,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [131990] = 7, + [89697] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2448), 1, - aux_sym_variant_type_repeat1, - STATE(2459), 1, + ACTIONS(2739), 1, + anon_sym_LPAREN, + STATE(1852), 1, sym_decorator, + STATE(2026), 1, + sym_variant_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1489), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -207540,13 +164445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1491), 24, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -207564,143 +164470,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [132047] = 18, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3208), 1, - anon_sym_STAR_STAR, - ACTIONS(3212), 1, - anon_sym_GT_GT, - ACTIONS(3216), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3256), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3260), 1, - anon_sym_CARET_CARET_CARET, - STATE(2460), 1, - sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3200), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3202), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3204), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3206), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3198), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3214), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_GT, - [132126] = 13, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3242), 1, - anon_sym_STAR_STAR, - ACTIONS(3246), 1, - anon_sym_GT_GT, - STATE(2461), 1, - sym_decorator, - ACTIONS(3222), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3226), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3238), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3240), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1729), 16, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [132195] = 7, + [89759] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2462), 1, + STATE(1853), 1, sym_decorator, - STATE(2479), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 13, + ACTIONS(1534), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -207708,12 +164495,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 22, + ACTIONS(1536), 26, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -207731,25 +164522,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [132252] = 7, + [89817] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2463), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2741), 1, + anon_sym_EQ_GT, + STATE(1854), 1, sym_decorator, - STATE(2469), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -207757,13 +164551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1398), 25, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -207781,84 +164577,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [132309] = 20, + [89881] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - ACTIONS(3208), 1, - anon_sym_STAR_STAR, - ACTIONS(3212), 1, - anon_sym_GT_GT, - ACTIONS(3216), 1, + ACTIONS(2659), 1, + anon_sym_QMARK, + ACTIONS(2663), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3254), 1, + ACTIONS(2665), 1, anon_sym_AMP_AMP, - ACTIONS(3256), 1, + ACTIONS(2667), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3258), 1, + ACTIONS(2669), 1, anon_sym_PIPE_PIPE, - ACTIONS(3260), 1, + ACTIONS(2671), 1, anon_sym_CARET_CARET_CARET, - STATE(2464), 1, + ACTIONS(2677), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_GT_GT, + ACTIONS(2685), 1, + anon_sym_COLON_GT, + STATE(1855), 1, sym_decorator, - ACTIONS(3200), 2, + ACTIONS(2657), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3202), 2, + ACTIONS(2661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3210), 2, + ACTIONS(2679), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3204), 3, + ACTIONS(1874), 3, + anon_sym_unpack, + anon_sym_async, + sym__identifier, + ACTIONS(2673), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3206), 3, + ACTIONS(2675), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3198), 4, + ACTIONS(2655), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3214), 4, + ACTIONS(2683), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1737), 8, + ACTIONS(1876), 7, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [132392] = 7, + sym__escape_identifier, + [89971] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2450), 1, - aux_sym_variant_type_repeat1, - STATE(2465), 1, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(2743), 1, + anon_sym_COLON, + STATE(1637), 1, + sym_type_annotation, + STATE(1856), 1, sym_decorator, + STATE(2103), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 13, - anon_sym_COLON, + ACTIONS(1148), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -207871,8 +164677,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 22, + ACTIONS(1150), 23, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, @@ -207894,51 +164701,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [132449] = 9, + [90037] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3242), 1, - anon_sym_STAR_STAR, - STATE(2466), 1, + ACTIONS(2516), 1, + anon_sym_EQ_GT, + STATE(1857), 1, sym_decorator, - ACTIONS(3226), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3240), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1396), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 21, + ACTIONS(1398), 26, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -207946,26 +164754,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [132510] = 7, + [90097] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2462), 1, - aux_sym_variant_type_repeat1, - STATE(2467), 1, + ACTIONS(2723), 1, + anon_sym_LPAREN, + ACTIONS(2725), 1, + anon_sym_DOT, + ACTIONS(2727), 1, + anon_sym_LBRACK, + STATE(1858), 1, sym_decorator, + STATE(2004), 1, + sym_call_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 13, + ACTIONS(1479), 12, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -207973,12 +164786,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 22, + ACTIONS(1481), 23, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -207996,288 +164810,670 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [132567] = 7, + [90163] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3143), 1, - sym_regex_flags, - STATE(2468), 1, + ACTIONS(2677), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_GT_GT, + STATE(1859), 1, sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1601), 12, - anon_sym_LT, + ACTIONS(2657), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_GT, - anon_sym_catch, + ACTIONS(2661), 2, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1599), 23, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, + ACTIONS(2679), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [132624] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2448), 1, - aux_sym_variant_type_repeat1, - STATE(2469), 1, - sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1322), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, + ACTIONS(2673), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(2675), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2655), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2683), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_COLON_GT, - [132681] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2459), 1, - aux_sym_variant_type_repeat1, - STATE(2470), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1320), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(1810), 5, + anon_sym_unpack, + anon_sym_async, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1318), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, + sym__identifier, + ACTIONS(1812), 12, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_COLON_GT, - [132738] = 17, + sym__escape_identifier, + [90239] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3208), 1, - anon_sym_STAR_STAR, - ACTIONS(3212), 1, - anon_sym_GT_GT, - ACTIONS(3216), 1, + ACTIONS(2749), 1, + anon_sym_QMARK, + ACTIONS(2753), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3260), 1, - anon_sym_CARET_CARET_CARET, - STATE(2471), 1, - sym_decorator, - ACTIONS(1731), 2, + ACTIONS(2755), 1, anon_sym_AMP_AMP, + ACTIONS(2757), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3200), 2, + ACTIONS(2761), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2767), 1, + anon_sym_STAR_STAR, + ACTIONS(2771), 1, + anon_sym_GT_GT, + ACTIONS(2775), 1, + anon_sym_COLON_GT, + STATE(1860), 1, + sym_decorator, + ACTIONS(1870), 2, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(2747), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3202), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3210), 2, + ACTIONS(2769), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3204), 3, + ACTIONS(2763), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3206), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3198), 4, + ACTIONS(2745), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3214), 4, + ACTIONS(2773), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 10, + ACTIONS(1872), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - [132815] = 8, + [90328] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(1861), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2584), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4088), 1, + sym_function_type_parameters, + STATE(4231), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [90431] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1430), 1, + sym_type_identifier, + STATE(1499), 1, + sym__type_identifier, + STATE(1585), 1, + sym__non_function_inline_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1677), 1, + sym_function_type, + STATE(1862), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3266), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4209), 1, + sym_function_type_parameters, + STATE(4281), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [90534] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(1863), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4189), 1, + sym_abstract_type, + STATE(4354), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [90637] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(743), 1, + sym__type_identifier, + STATE(751), 1, + sym__inline_type, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(804), 1, + sym__non_function_inline_type, + STATE(823), 1, + sym_type_identifier, + STATE(1864), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3174), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4170), 1, + sym_abstract_type, + STATE(4172), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [90740] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(724), 1, + sym_type_identifier, + STATE(743), 1, + sym__type_identifier, + STATE(786), 1, + sym__non_function_inline_type, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(791), 1, + sym__inline_type, + STATE(1865), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3268), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4283), 1, + sym_abstract_type, + STATE(4374), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [90843] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(1866), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2584), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4079), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [90946] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1317), 1, + sym__inline_type, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1405), 1, + sym_function_type, + STATE(1443), 1, + sym__type_identifier, + STATE(1518), 1, + sym__non_function_inline_type, + STATE(1619), 1, + sym_type_identifier, + STATE(1867), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3280), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4200), 1, + sym_function_type_parameters, + STATE(4284), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, aux_sym_type_identifier_token1, - STATE(2472), 1, - sym_decorator, - ACTIONS(2525), 2, - anon_sym_DOT, sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 14, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_catch, - anon_sym_as, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1258), 19, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [132874] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [91049] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3100), 1, - anon_sym_COLON, - STATE(1734), 1, - sym_type_annotation, - STATE(2473), 1, + STATE(1868), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1479), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -208285,12 +165481,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 22, + ACTIONS(1481), 25, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -208308,126 +165507,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [132933] = 8, + [91106] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3218), 1, - anon_sym_PIPE, - STATE(2439), 1, - aux_sym_variant_type_repeat1, - STATE(2474), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(1199), 1, + sym__type_identifier, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1360), 1, + sym__non_function_inline_type, + STATE(1411), 1, + sym_type_identifier, + STATE(1869), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3251), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4141), 1, + sym_function_type_parameters, + STATE(4235), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1318), 22, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [132992] = 11, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [91209] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2516), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(769), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2227), 1, + sym__identifier, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2231), 1, anon_sym_LPAREN, - ACTIONS(2518), 1, - anon_sym_DOT, - ACTIONS(2520), 1, + ACTIONS(2237), 1, anon_sym_LBRACK, - STATE(1494), 1, - sym_call_arguments, - STATE(2475), 1, + ACTIONS(2243), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1437), 1, + sym__type_identifier, + STATE(1457), 1, + sym_type_identifier, + STATE(1488), 1, + sym_type_identifier_path, + STATE(1517), 1, + sym__non_function_inline_type, + STATE(1555), 1, + sym_function_type, + STATE(1564), 1, + sym__inline_type, + STATE(1870), 1, sym_decorator, - ACTIONS(3270), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + STATE(2891), 1, + sym_module_identifier, + STATE(3271), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3833), 1, + sym_module_primary_expression, + STATE(4155), 1, + sym_function_type_parameters, + STATE(4289), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2239), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2241), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1611), 19, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [133057] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1577), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [91312] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2476), 1, + ACTIONS(2777), 1, + anon_sym_PIPE, + STATE(1871), 1, sym_decorator, - ACTIONS(3194), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + STATE(1875), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 11, + ACTIONS(1193), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -208439,13 +165682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 23, - anon_sym_LPAREN, + ACTIONS(1195), 25, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -208463,136 +165708,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [133114] = 7, + [91373] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2477), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1317), 1, + sym__inline_type, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1405), 1, + sym_function_type, + STATE(1412), 1, + sym_type_identifier, + STATE(1443), 1, + sym__type_identifier, + STATE(1518), 1, + sym__non_function_inline_type, + STATE(1872), 1, sym_decorator, - ACTIONS(3196), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + STATE(2891), 1, + sym_module_identifier, + STATE(3290), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4081), 1, + sym_function_type_parameters, + STATE(4343), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1611), 23, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [133171] = 21, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [91476] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3224), 1, - anon_sym_QMARK, - ACTIONS(3228), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3230), 1, - anon_sym_AMP_AMP, - ACTIONS(3232), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3242), 1, - anon_sym_STAR_STAR, - ACTIONS(3246), 1, - anon_sym_GT_GT, - ACTIONS(3250), 1, - anon_sym_COLON_GT, - STATE(2478), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1035), 1, + sym_function_type, + STATE(1073), 1, + sym_type_identifier, + STATE(1199), 1, + sym__type_identifier, + STATE(1301), 1, + sym__inline_type, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1360), 1, + sym__non_function_inline_type, + STATE(1873), 1, sym_decorator, - ACTIONS(3222), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3226), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2891), 1, + sym_module_identifier, + STATE(3255), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4262), 1, + sym_abstract_type, + STATE(4390), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3238), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3240), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3220), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3248), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1733), 7, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - [133256] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [91579] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3272), 1, + ACTIONS(2777), 1, anon_sym_PIPE, - STATE(2479), 2, + STATE(1874), 1, sym_decorator, + STATE(1875), 1, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 12, - anon_sym_COLON, + ACTIONS(1199), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -208604,10 +165883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 22, + ACTIONS(1201), 25, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, anon_sym_AMP_AMP_AMP, @@ -208627,22 +165909,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [133313] = 8, + [91640] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3262), 1, + ACTIONS(2779), 1, anon_sym_PIPE, - STATE(2458), 1, - aux_sym_variant_type_repeat1, - STATE(2480), 1, + STATE(1875), 2, sym_decorator, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1203), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -208654,11 +165935,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 23, + ACTIONS(1205), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, anon_sym_AMP_AMP_AMP, @@ -208678,259 +165961,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [133372] = 8, + [91699] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3218), 1, - anon_sym_PIPE, - STATE(2451), 1, - aux_sym_variant_type_repeat1, - STATE(2481), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1876), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3100), 1, + sym_function_type, + STATE(3256), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3338), 1, + sym__inline_type, + STATE(3405), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4099), 1, + sym_function_type_parameters, + STATE(4267), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, - anon_sym_COLON, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1254), 22, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [133431] = 10, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [91802] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2500), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, anon_sym_LPAREN, - ACTIONS(3275), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(2482), 1, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1317), 1, + sym__inline_type, + STATE(1405), 1, + sym_function_type, + STATE(1877), 1, sym_decorator, - STATE(2569), 1, - sym_variant_parameters, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4102), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1240), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1234), 20, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [133494] = 21, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [91905] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - ACTIONS(3208), 1, - anon_sym_STAR_STAR, - ACTIONS(3212), 1, - anon_sym_GT_GT, - ACTIONS(3216), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3252), 1, - anon_sym_QMARK, - ACTIONS(3254), 1, - anon_sym_AMP_AMP, - ACTIONS(3256), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3260), 1, - anon_sym_CARET_CARET_CARET, - STATE(2483), 1, - sym_decorator, - ACTIONS(3200), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3202), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3204), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3206), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3198), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3214), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1678), 7, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, + ACTIONS(2047), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [133579] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - ACTIONS(3208), 1, - anon_sym_STAR_STAR, - ACTIONS(3212), 1, - anon_sym_GT_GT, - ACTIONS(3216), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3252), 1, - anon_sym_QMARK, - ACTIONS(3254), 1, - anon_sym_AMP_AMP, - ACTIONS(3256), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3260), 1, - anon_sym_CARET_CARET_CARET, - STATE(2484), 1, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2175), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1878), 1, sym_decorator, - ACTIONS(3200), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3202), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2841), 1, + sym_type_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3100), 1, + sym_function_type, + STATE(3214), 1, + sym__non_function_inline_type, + STATE(3257), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3856), 1, + sym_module_primary_expression, + STATE(4254), 1, + sym_function_type_parameters, + STATE(4272), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2183), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3204), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3206), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3198), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3214), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1712), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [133664] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [92008] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3092), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(2485), 1, + STATE(1879), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1600), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -208938,12 +166208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 22, - anon_sym_EQ_GT, + ACTIONS(1602), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -208961,502 +166234,564 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [133723] = 21, + [92065] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - ACTIONS(3208), 1, - anon_sym_STAR_STAR, - ACTIONS(3212), 1, - anon_sym_GT_GT, - ACTIONS(3216), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3252), 1, - anon_sym_QMARK, - ACTIONS(3254), 1, - anon_sym_AMP_AMP, - ACTIONS(3256), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3260), 1, - anon_sym_CARET_CARET_CARET, - STATE(2486), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(769), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2227), 1, + sym__identifier, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2231), 1, + anon_sym_LPAREN, + ACTIONS(2237), 1, + anon_sym_LBRACK, + ACTIONS(2243), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1437), 1, + sym__type_identifier, + STATE(1457), 1, + sym_type_identifier, + STATE(1488), 1, + sym_type_identifier_path, + STATE(1489), 1, + sym__inline_type, + STATE(1521), 1, + sym__non_function_inline_type, + STATE(1555), 1, + sym_function_type, + STATE(1880), 1, sym_decorator, - ACTIONS(3200), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3202), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2891), 1, + sym_module_identifier, + STATE(3223), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3833), 1, + sym_module_primary_expression, + STATE(4152), 1, + sym_function_type_parameters, + STATE(4285), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2239), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2241), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3204), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3206), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3198), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3214), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1716), 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1577), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [92168] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, + ACTIONS(2195), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [133808] = 21, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1499), 1, + sym__type_identifier, + STATE(1601), 1, + sym__non_function_inline_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1677), 1, + sym_function_type, + STATE(1777), 1, + sym_type_identifier, + STATE(1881), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3261), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4113), 1, + sym_function_type_parameters, + STATE(4274), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [92271] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(743), 1, + sym__type_identifier, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(791), 1, + sym__inline_type, + STATE(804), 1, + sym__non_function_inline_type, + STATE(823), 1, + sym_type_identifier, + STATE(1882), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3265), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4146), 1, + sym_function_type_parameters, + STATE(4279), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [92374] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - ACTIONS(3208), 1, - anon_sym_STAR_STAR, - ACTIONS(3212), 1, - anon_sym_GT_GT, - ACTIONS(3216), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3252), 1, - anon_sym_QMARK, - ACTIONS(3254), 1, - anon_sym_AMP_AMP, - ACTIONS(3256), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3260), 1, - anon_sym_CARET_CARET_CARET, - STATE(2487), 1, + STATE(1875), 1, + aux_sym_variant_type_repeat1, + STATE(1883), 1, sym_decorator, - ACTIONS(3200), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3202), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3204), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3206), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3198), 4, + ACTIONS(1193), 12, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3214), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1720), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [133893] = 15, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3242), 1, - anon_sym_STAR_STAR, - ACTIONS(3246), 1, - anon_sym_GT_GT, - STATE(2488), 1, - sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3222), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3226), 2, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3238), 3, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1195), 25, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3240), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3220), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3248), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 12, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [133966] = 16, + [92433] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3228), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3242), 1, - anon_sym_STAR_STAR, - ACTIONS(3246), 1, - anon_sym_GT_GT, - STATE(2489), 1, + STATE(1875), 1, + aux_sym_variant_type_repeat1, + STATE(1884), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3222), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3226), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3238), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3240), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3220), 4, + ACTIONS(1199), 12, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3248), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 11, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(1201), 25, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [134041] = 18, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3228), 1, + anon_sym_as, anon_sym_AMP_AMP_AMP, - ACTIONS(3232), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3236), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3242), 1, - anon_sym_STAR_STAR, - ACTIONS(3246), 1, - anon_sym_GT_GT, - STATE(2490), 1, - sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3222), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3226), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3238), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3240), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3220), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3248), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 9, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_to, - anon_sym_downto, anon_sym_COLON_GT, - [134120] = 13, + [92492] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3208), 1, - anon_sym_STAR_STAR, - ACTIONS(3212), 1, - anon_sym_GT_GT, - STATE(2491), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1430), 1, + sym_type_identifier, + STATE(1499), 1, + sym__type_identifier, + STATE(1601), 1, + sym__non_function_inline_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1677), 1, + sym_function_type, + STATE(1885), 1, sym_decorator, - ACTIONS(3200), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3202), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2891), 1, + sym_module_identifier, + STATE(3266), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4169), 1, + sym_function_type_parameters, + STATE(4281), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3204), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3206), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1729), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [134189] = 19, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [92595] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3208), 1, - anon_sym_STAR_STAR, - ACTIONS(3212), 1, - anon_sym_GT_GT, - ACTIONS(3216), 1, + ACTIONS(2786), 1, + anon_sym_QMARK, + ACTIONS(2790), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3254), 1, + ACTIONS(2792), 1, anon_sym_AMP_AMP, - ACTIONS(3256), 1, + ACTIONS(2794), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3260), 1, + ACTIONS(2796), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2798), 1, anon_sym_CARET_CARET_CARET, - STATE(2492), 1, + ACTIONS(2804), 1, + anon_sym_STAR_STAR, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + STATE(1886), 1, sym_decorator, - ACTIONS(3200), 2, + ACTIONS(2784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3202), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3210), 2, + ACTIONS(2806), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3204), 3, + ACTIONS(2800), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3206), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3198), 4, + ACTIONS(2782), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3214), 4, + ACTIONS(2810), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 9, + ACTIONS(1832), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_RBRACK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_GT, - [134270] = 11, + [92682] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2518), 1, - anon_sym_DOT, - ACTIONS(2520), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, anon_sym_LBRACK, - STATE(1494), 1, - sym_call_arguments, - STATE(2493), 1, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(1887), 1, sym_decorator, - ACTIONS(3277), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2584), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4189), 1, + sym_abstract_type, + STATE(4372), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1611), 19, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [134335] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [92785] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3134), 1, - anon_sym_EQ_GT, - STATE(2494), 1, + STATE(1888), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1604), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -209464,12 +166799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 24, + ACTIONS(1606), 25, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, @@ -209489,26 +166825,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [134392] = 8, + [92842] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3262), 1, - anon_sym_PIPE, - STATE(2448), 1, - aux_sym_variant_type_repeat1, - STATE(2495), 1, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(1471), 1, + anon_sym_DOT, + STATE(1889), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1183), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -209516,11 +166854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1185), 23, anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_as, anon_sym_AMP_AMP_AMP, @@ -209540,76 +166878,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [134451] = 9, + [92903] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3283), 1, - anon_sym_STAR_STAR, - STATE(2496), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(724), 1, + sym_type_identifier, + STATE(743), 1, + sym__type_identifier, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(791), 1, + sym__inline_type, + STATE(804), 1, + sym__non_function_inline_type, + STATE(1890), 1, sym_decorator, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, + STATE(2891), 1, + sym_module_identifier, + STATE(3268), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4214), 1, + sym_function_type_parameters, + STATE(4283), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1729), 20, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [93006] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(769), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2227), 1, + sym__identifier, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2231), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2237), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [134511] = 7, + ACTIONS(2243), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1437), 1, + sym__type_identifier, + STATE(1457), 1, + sym_type_identifier, + STATE(1488), 1, + sym_type_identifier_path, + STATE(1521), 1, + sym__non_function_inline_type, + STATE(1555), 1, + sym_function_type, + STATE(1564), 1, + sym__inline_type, + STATE(1891), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3271), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3833), 1, + sym_module_primary_expression, + STATE(4289), 1, + sym_abstract_type, + STATE(4295), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2239), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2241), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1577), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [93109] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2497), 1, + STATE(1892), 1, sym_decorator, - STATE(2517), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1538), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -209617,12 +167051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 22, - anon_sym_EQ_GT, + ACTIONS(1540), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -209640,74 +167077,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [134567] = 7, + [93166] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2498), 1, + ACTIONS(2786), 1, + anon_sym_QMARK, + ACTIONS(2790), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2792), 1, + anon_sym_AMP_AMP, + ACTIONS(2794), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2796), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2798), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2804), 1, + anon_sym_STAR_STAR, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + STATE(1893), 1, sym_decorator, - STATE(2517), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1324), 12, - anon_sym_LT, + ACTIONS(2784), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2788), 2, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1322), 22, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, + ACTIONS(2806), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2800), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2782), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2810), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_COLON_GT, - [134623] = 7, + ACTIONS(1862), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [93253] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2497), 1, - aux_sym_variant_type_repeat1, - STATE(2499), 1, + STATE(1894), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, + ACTIONS(1878), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -209715,12 +167168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 22, - anon_sym_EQ_GT, + ACTIONS(1880), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -209738,25 +167194,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [134679] = 7, + [93310] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2498), 1, - aux_sym_variant_type_repeat1, - STATE(2500), 1, + STATE(1895), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1886), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -209764,12 +167219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 22, - anon_sym_EQ_GT, + ACTIONS(1888), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -209787,27 +167245,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [134735] = 8, + [93367] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3175), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(2501), 1, + STATE(1896), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1636), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -209815,11 +167270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 21, + ACTIONS(1638), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -209837,247 +167296,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [134793] = 19, + [93424] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3291), 1, + ACTIONS(2749), 1, + anon_sym_QMARK, + ACTIONS(2753), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3293), 1, + ACTIONS(2755), 1, anon_sym_AMP_AMP, - ACTIONS(3295), 1, + ACTIONS(2757), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3297), 1, + ACTIONS(2759), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2761), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3303), 1, + ACTIONS(2767), 1, anon_sym_STAR_STAR, - ACTIONS(3307), 1, + ACTIONS(2771), 1, anon_sym_GT_GT, - STATE(2502), 1, + ACTIONS(2775), 1, + anon_sym_COLON_GT, + STATE(1897), 1, sym_decorator, - ACTIONS(3287), 2, + ACTIONS(1874), 2, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(2747), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3289), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3305), 2, + ACTIONS(2769), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3299), 3, + ACTIONS(2763), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3301), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3285), 4, + ACTIONS(2745), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3309), 4, + ACTIONS(2773), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 8, + ACTIONS(1876), 7, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_COLON_GT, - [134873] = 13, + [93513] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3283), 1, + ACTIONS(2653), 1, + anon_sym_COLON_GT, + ACTIONS(2820), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2822), 1, + anon_sym_AMP_AMP, + ACTIONS(2824), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2834), 1, anon_sym_STAR_STAR, - ACTIONS(3317), 1, + ACTIONS(2838), 1, anon_sym_GT_GT, - STATE(2503), 1, + STATE(1898), 1, sym_decorator, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3311), 2, + ACTIONS(2816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3315), 2, + ACTIONS(2818), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2836), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3313), 3, + ACTIONS(2830), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1731), 6, + ACTIONS(2832), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2814), 4, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 15, + ACTIONS(2840), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1908), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [134941] = 17, + [93598] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3283), 1, - anon_sym_STAR_STAR, - ACTIONS(3317), 1, - anon_sym_GT_GT, - ACTIONS(3321), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3323), 1, - anon_sym_CARET_CARET_CARET, - STATE(2504), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(1199), 1, + sym__type_identifier, + STATE(1295), 1, + sym__non_function_inline_type, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1411), 1, + sym_type_identifier, + STATE(1899), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3311), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3315), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2891), 1, + sym_module_identifier, + STATE(3251), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4235), 1, + sym_abstract_type, + STATE(4331), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3313), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3319), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3325), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 9, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - [135017] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [93701] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3327), 1, - anon_sym_PIPE, - STATE(2505), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1317), 1, + sym__inline_type, + STATE(1405), 1, + sym_function_type, + STATE(1900), 1, sym_decorator, - STATE(2511), 1, - aux_sym_variant_type_repeat1, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4167), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1318), 22, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [135075] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [93804] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3327), 1, - anon_sym_PIPE, - STATE(2506), 1, + ACTIONS(1396), 1, + anon_sym_DOT, + STATE(1901), 1, sym_decorator, - STATE(2539), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1398), 4, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + ACTIONS(1528), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -210089,12 +167607,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 22, - anon_sym_EQ_GT, + ACTIONS(1530), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -210112,256 +167629,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [135133] = 9, + [93865] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3283), 1, - anon_sym_STAR_STAR, - STATE(2507), 1, - sym_decorator, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1729), 20, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(2047), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [135193] = 17, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2175), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1902), 1, + sym_decorator, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2841), 1, + sym_type_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3080), 1, + sym__inline_type, + STATE(3100), 1, + sym_function_type, + STATE(3214), 1, + sym__non_function_inline_type, + STATE(3232), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3856), 1, + sym_module_primary_expression, + STATE(4244), 1, + sym_abstract_type, + STATE(4389), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2183), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [93968] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3291), 1, + ACTIONS(2653), 1, + anon_sym_COLON_GT, + ACTIONS(2820), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3297), 1, + ACTIONS(2822), 1, + anon_sym_AMP_AMP, + ACTIONS(2824), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2828), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3303), 1, + ACTIONS(2834), 1, anon_sym_STAR_STAR, - ACTIONS(3307), 1, + ACTIONS(2838), 1, anon_sym_GT_GT, - STATE(2508), 1, + ACTIONS(2842), 1, + anon_sym_QMARK, + STATE(1903), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3287), 2, + ACTIONS(2816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3289), 2, + ACTIONS(2818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3305), 2, + ACTIONS(2836), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3299), 3, + ACTIONS(2830), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3301), 3, + ACTIONS(2832), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3285), 4, + ACTIONS(2814), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3309), 4, + ACTIONS(2840), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 9, + ACTIONS(1832), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - [135269] = 21, + [94055] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3283), 1, - anon_sym_STAR_STAR, - ACTIONS(3317), 1, - anon_sym_GT_GT, - ACTIONS(3321), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3323), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3329), 1, - anon_sym_QMARK, - ACTIONS(3331), 1, - anon_sym_AMP_AMP, - ACTIONS(3333), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3335), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3337), 1, - anon_sym_COLON_GT, - STATE(2509), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(1904), 1, sym_decorator, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3311), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3315), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4108), 1, + sym_function_type_parameters, + STATE(4189), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3313), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3319), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3325), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1733), 6, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [135353] = 15, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [94158] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3283), 1, - anon_sym_STAR_STAR, - ACTIONS(3317), 1, - anon_sym_GT_GT, - STATE(2510), 1, + STATE(1905), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3311), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3315), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3313), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3319), 4, + ACTIONS(1542), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3325), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 11, + ACTIONS(1544), 25, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_COLON_GT, - [135425] = 8, + [94215] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3327), 1, - anon_sym_PIPE, - STATE(2511), 1, + STATE(1906), 1, sym_decorator, - STATE(2517), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1640), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -210369,12 +167919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 22, - anon_sym_EQ_GT, + ACTIONS(1642), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -210392,108 +167945,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [135483] = 21, + [94272] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3283), 1, - anon_sym_STAR_STAR, - ACTIONS(3317), 1, - anon_sym_GT_GT, - ACTIONS(3321), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3323), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3329), 1, - anon_sym_QMARK, - ACTIONS(3331), 1, - anon_sym_AMP_AMP, - ACTIONS(3333), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3335), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3337), 1, - anon_sym_COLON_GT, - STATE(2512), 1, + STATE(1907), 1, sym_decorator, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3311), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3315), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3313), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3319), 4, + ACTIONS(1546), 13, + anon_sym_COLON, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3325), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1720), 6, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [135567] = 11, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3303), 1, - anon_sym_STAR_STAR, - STATE(2513), 1, - sym_decorator, - ACTIONS(3287), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3289), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3299), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3301), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 7, - anon_sym_LT, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 17, + ACTIONS(1548), 25, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -210501,6 +167982,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -210508,25 +167996,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [135631] = 7, + [94329] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2514), 1, + STATE(1908), 1, sym_decorator, - ACTIONS(3270), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 11, + ACTIONS(1644), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -210534,12 +168021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 22, + ACTIONS(1646), 25, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -210557,27 +168047,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [135687] = 8, + [94386] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3187), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(2515), 1, + STATE(1909), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1648), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -210585,11 +168072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 21, - anon_sym_EQ_GT, + ACTIONS(1650), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -210607,88 +168098,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [135745] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3283), 1, - anon_sym_STAR_STAR, - ACTIONS(3317), 1, - anon_sym_GT_GT, - ACTIONS(3321), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3323), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3329), 1, - anon_sym_QMARK, - ACTIONS(3331), 1, - anon_sym_AMP_AMP, - ACTIONS(3333), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3335), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3337), 1, - anon_sym_COLON_GT, - STATE(2516), 1, - sym_decorator, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3311), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3315), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3313), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3319), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3325), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1678), 6, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [135829] = 7, + [94443] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3339), 1, - anon_sym_PIPE, - STATE(2517), 2, + STATE(1910), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1652), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -210696,12 +168123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 22, - anon_sym_EQ_GT, + ACTIONS(1654), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -210719,456 +168149,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [135885] = 19, + [94500] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3283), 1, - anon_sym_STAR_STAR, - ACTIONS(3317), 1, - anon_sym_GT_GT, - ACTIONS(3321), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3323), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3331), 1, - anon_sym_AMP_AMP, - ACTIONS(3333), 1, - anon_sym_PIPE_PIPE_PIPE, - STATE(2518), 1, + STATE(1911), 1, sym_decorator, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3311), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3315), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3313), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3319), 4, + ACTIONS(1550), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3325), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 8, - anon_sym_LPAREN, anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_COLON_GT, - [135965] = 16, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3283), 1, - anon_sym_STAR_STAR, - ACTIONS(3317), 1, - anon_sym_GT_GT, - ACTIONS(3321), 1, - anon_sym_AMP_AMP_AMP, - STATE(2519), 1, - sym_decorator, - ACTIONS(1731), 2, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3279), 2, - anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3311), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3315), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3313), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3319), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3325), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 10, + ACTIONS(1552), 25, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [136039] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3283), 1, - anon_sym_STAR_STAR, - ACTIONS(3317), 1, - anon_sym_GT_GT, - ACTIONS(3321), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3323), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3329), 1, - anon_sym_QMARK, - ACTIONS(3331), 1, - anon_sym_AMP_AMP, - ACTIONS(3333), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3335), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3337), 1, - anon_sym_COLON_GT, - STATE(2520), 1, - sym_decorator, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3311), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3315), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3313), 3, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3319), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3325), 4, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1716), 6, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [136123] = 21, + anon_sym_COLON_GT, + [94557] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3291), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3293), 1, - anon_sym_AMP_AMP, - ACTIONS(3295), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3297), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3303), 1, - anon_sym_STAR_STAR, - ACTIONS(3307), 1, - anon_sym_GT_GT, - ACTIONS(3342), 1, - anon_sym_QMARK, - ACTIONS(3344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3346), 1, - anon_sym_COLON_GT, - STATE(2521), 1, + STATE(1912), 1, sym_decorator, - ACTIONS(3287), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3289), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3305), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3299), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3301), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3285), 4, + ACTIONS(1656), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3309), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1678), 6, + ACTIONS(1658), 25, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [136207] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3291), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3293), 1, - anon_sym_AMP_AMP, - ACTIONS(3295), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3297), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3303), 1, - anon_sym_STAR_STAR, - ACTIONS(3307), 1, - anon_sym_GT_GT, - ACTIONS(3342), 1, - anon_sym_QMARK, - ACTIONS(3344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3346), 1, - anon_sym_COLON_GT, - STATE(2522), 1, - sym_decorator, - ACTIONS(3287), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3289), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3305), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3299), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3301), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3285), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3309), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1712), 6, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [136291] = 21, + anon_sym_COLON_GT, + [94614] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3291), 1, + ACTIONS(2786), 1, + anon_sym_QMARK, + ACTIONS(2790), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3293), 1, + ACTIONS(2792), 1, anon_sym_AMP_AMP, - ACTIONS(3295), 1, + ACTIONS(2794), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3297), 1, + ACTIONS(2796), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2798), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3303), 1, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - ACTIONS(3307), 1, + ACTIONS(2808), 1, anon_sym_GT_GT, - ACTIONS(3342), 1, - anon_sym_QMARK, - ACTIONS(3344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3346), 1, + ACTIONS(2812), 1, anon_sym_COLON_GT, - STATE(2523), 1, + STATE(1913), 1, sym_decorator, - ACTIONS(3287), 2, + ACTIONS(2784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3289), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3305), 2, + ACTIONS(2806), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3299), 3, + ACTIONS(2800), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3301), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3285), 4, + ACTIONS(2782), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3309), 4, + ACTIONS(2810), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1716), 6, + ACTIONS(1872), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [136375] = 21, + [94701] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3291), 1, + ACTIONS(2786), 1, + anon_sym_QMARK, + ACTIONS(2790), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3293), 1, + ACTIONS(2792), 1, anon_sym_AMP_AMP, - ACTIONS(3295), 1, + ACTIONS(2794), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3297), 1, + ACTIONS(2796), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2798), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3303), 1, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - ACTIONS(3307), 1, + ACTIONS(2808), 1, anon_sym_GT_GT, - ACTIONS(3342), 1, - anon_sym_QMARK, - ACTIONS(3344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3346), 1, + ACTIONS(2812), 1, anon_sym_COLON_GT, - STATE(2524), 1, + STATE(1914), 1, sym_decorator, - ACTIONS(3287), 2, + ACTIONS(2784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3289), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3305), 2, + ACTIONS(2806), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3299), 3, + ACTIONS(2800), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3301), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3285), 4, + ACTIONS(2782), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3309), 4, + ACTIONS(2810), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1720), 6, + ACTIONS(1876), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [136459] = 6, + [94788] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2525), 1, + STATE(1915), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 11, + ACTIONS(1210), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -211176,10 +168408,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1428), 24, + ACTIONS(1212), 25, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -211201,40 +168434,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [136513] = 9, + [94845] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3303), 1, - anon_sym_STAR_STAR, - STATE(2526), 1, + STATE(1916), 1, sym_decorator, - ACTIONS(3289), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3301), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1664), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 20, + ACTIONS(1666), 25, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -211245,6 +168474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -211252,172 +168485,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [136573] = 16, + [94902] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3291), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3303), 1, - anon_sym_STAR_STAR, - ACTIONS(3307), 1, - anon_sym_GT_GT, - STATE(2527), 1, - sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3287), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3289), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3305), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3299), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3301), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3285), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3309), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 10, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + ACTIONS(2002), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [136647] = 20, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3283), 1, - anon_sym_STAR_STAR, - ACTIONS(3317), 1, - anon_sym_GT_GT, - ACTIONS(3321), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3323), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3331), 1, - anon_sym_AMP_AMP, - ACTIONS(3333), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3335), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3337), 1, - anon_sym_COLON_GT, - STATE(2528), 1, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1386), 1, + sym__inline_type, + STATE(1405), 1, + sym_function_type, + STATE(1443), 1, + sym__type_identifier, + STATE(1518), 1, + sym__non_function_inline_type, + STATE(1619), 1, + sym_type_identifier, + STATE(1917), 1, sym_decorator, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3311), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3315), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2891), 1, + sym_module_identifier, + STATE(3226), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4107), 1, + sym_abstract_type, + STATE(4120), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3313), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3319), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3325), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1737), 7, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [136729] = 11, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [95005] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3283), 1, - anon_sym_STAR_STAR, - STATE(2529), 1, + ACTIONS(2844), 1, + anon_sym_COLON, + STATE(1918), 1, sym_decorator, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3311), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3313), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1731), 7, + ACTIONS(1396), 11, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 17, + ACTIONS(1398), 26, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, anon_sym_DASH_GT, anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -211425,25 +168611,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [136793] = 7, + [95064] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2530), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1027), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(1199), 1, + sym__type_identifier, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1360), 1, + sym__non_function_inline_type, + STATE(1411), 1, + sym_type_identifier, + STATE(1919), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3273), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4237), 1, + sym_abstract_type, + STATE(4326), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [95167] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2612), 1, + anon_sym_COLON, + STATE(1358), 1, + sym_type_annotation, + STATE(1920), 1, sym_decorator, - ACTIONS(3277), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1613), 11, + ACTIONS(1156), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -211451,12 +168713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1611), 22, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(1158), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, anon_sym_QMARK, - anon_sym_catch, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -211474,297 +168738,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [136849] = 21, + [95228] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3283), 1, - anon_sym_STAR_STAR, - ACTIONS(3317), 1, - anon_sym_GT_GT, - ACTIONS(3321), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3323), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3329), 1, - anon_sym_QMARK, - ACTIONS(3331), 1, - anon_sym_AMP_AMP, - ACTIONS(3333), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3335), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3337), 1, - anon_sym_COLON_GT, - STATE(2531), 1, + STATE(1921), 1, sym_decorator, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3311), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3315), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3313), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3319), 4, + ACTIONS(1670), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3325), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1712), 6, - anon_sym_LPAREN, anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [136933] = 20, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3291), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3293), 1, + anon_sym_SLASH, anon_sym_AMP_AMP, - ACTIONS(3295), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3297), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3303), 1, - anon_sym_STAR_STAR, - ACTIONS(3307), 1, - anon_sym_GT_GT, - ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3346), 1, - anon_sym_COLON_GT, - STATE(2532), 1, - sym_decorator, - ACTIONS(3287), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3289), 2, - anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3305), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3299), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3301), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3285), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3309), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1737), 7, + ACTIONS(1672), 25, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [137015] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3291), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3293), 1, - anon_sym_AMP_AMP, - ACTIONS(3295), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3297), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3303), 1, - anon_sym_STAR_STAR, - ACTIONS(3307), 1, - anon_sym_GT_GT, - ACTIONS(3342), 1, - anon_sym_QMARK, - ACTIONS(3344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3346), 1, - anon_sym_COLON_GT, - STATE(2533), 1, - sym_decorator, - ACTIONS(3287), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3289), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3305), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3299), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3301), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3285), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3309), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1733), 6, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [137099] = 18, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3283), 1, anon_sym_STAR_STAR, - ACTIONS(3317), 1, - anon_sym_GT_GT, - ACTIONS(3321), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3323), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3333), 1, - anon_sym_PIPE_PIPE_PIPE, - STATE(2534), 1, - sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3279), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3311), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3315), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3281), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3313), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3319), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3325), 4, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 8, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, anon_sym_COLON_GT, - [137177] = 13, + [95285] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3303), 1, - anon_sym_STAR_STAR, - ACTIONS(3307), 1, - anon_sym_GT_GT, - STATE(2535), 1, + STATE(1922), 1, sym_decorator, - ACTIONS(3287), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3289), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3305), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3299), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3301), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 6, + ACTIONS(1674), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 15, + ACTIONS(1676), 25, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -211772,45 +168826,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [137245] = 9, + [95342] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3303), 1, - anon_sym_STAR_STAR, - STATE(2536), 1, + STATE(1923), 1, sym_decorator, - ACTIONS(3289), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3301), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1678), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 20, + ACTIONS(1680), 25, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -211821,6 +168880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -211828,55 +168891,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [137305] = 15, + [95399] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3303), 1, - anon_sym_STAR_STAR, - ACTIONS(3307), 1, - anon_sym_GT_GT, - STATE(2537), 1, + STATE(1924), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3287), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3289), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3305), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3299), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3301), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3285), 4, + ACTIONS(1682), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3309), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 11, + ACTIONS(1684), 25, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_GT, @@ -211884,87 +168928,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_COLON_GT, - [137377] = 18, + [95456] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3291), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3295), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3297), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3303), 1, - anon_sym_STAR_STAR, - ACTIONS(3307), 1, - anon_sym_GT_GT, - STATE(2538), 1, + STATE(1925), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3287), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3289), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3305), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3299), 3, + ACTIONS(1686), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1688), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3301), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3285), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3309), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, anon_sym_COLON_GT, - [137455] = 8, + [95513] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3327), 1, - anon_sym_PIPE, - STATE(2517), 1, - aux_sym_variant_type_repeat1, - STATE(2539), 1, + STATE(1926), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1690), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -211972,12 +169018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 22, - anon_sym_EQ_GT, + ACTIONS(1692), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -211995,88 +169044,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [137513] = 21, + [95570] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1739), 1, - anon_sym_PIPE, - ACTIONS(3354), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3360), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3362), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3372), 1, - anon_sym_GT_GT, - ACTIONS(3376), 1, - anon_sym_COLON_GT, - STATE(2540), 1, + STATE(1927), 1, sym_decorator, - ACTIONS(3350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3352), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3364), 3, + ACTIONS(1694), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3366), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3348), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3374), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1737), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_QMARK, - [137596] = 8, + anon_sym_COLON_GT, + [95627] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3378), 1, - anon_sym_PIPE, - STATE(2541), 1, + STATE(1928), 1, sym_decorator, - STATE(2582), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1702), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -212084,11 +169120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 21, + ACTIONS(1704), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -212106,26 +169146,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [137653] = 8, + [95684] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3380), 1, - anon_sym_PIPE, - STATE(2542), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1317), 1, + sym__inline_type, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1405), 1, + sym_function_type, + STATE(1443), 1, + sym__type_identifier, + STATE(1563), 1, + sym__non_function_inline_type, + STATE(1619), 1, + sym_type_identifier, + STATE(1929), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3280), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4284), 1, + sym_abstract_type, + STATE(4340), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [95787] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1930), 1, sym_decorator, - STATE(2543), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1706), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -212133,11 +169245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 21, - anon_sym_EQ_GT, + ACTIONS(1708), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -212155,25 +169271,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [137710] = 7, + [95844] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3382), 1, - anon_sym_PIPE, - STATE(2543), 2, + STATE(1931), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1710), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -212181,11 +169296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 21, - anon_sym_EQ_GT, + ACTIONS(1712), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -212203,153 +169322,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [137765] = 21, + [95901] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3389), 1, + ACTIONS(1830), 1, + anon_sym_PIPE, + ACTIONS(2719), 1, + anon_sym_COLON_GT, + ACTIONS(2850), 1, anon_sym_QMARK, - ACTIONS(3393), 1, + ACTIONS(2854), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3395), 1, + ACTIONS(2856), 1, anon_sym_AMP_AMP, - ACTIONS(3397), 1, + ACTIONS(2858), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3399), 1, + ACTIONS(2860), 1, anon_sym_PIPE_PIPE, - ACTIONS(3401), 1, + ACTIONS(2862), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3407), 1, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - ACTIONS(3411), 1, + ACTIONS(2872), 1, anon_sym_GT_GT, - ACTIONS(3415), 1, - anon_sym_COLON_GT, - STATE(2544), 1, + STATE(1932), 1, sym_decorator, - ACTIONS(3387), 2, + ACTIONS(2848), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3391), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3409), 2, + ACTIONS(2870), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3403), 3, + ACTIONS(2864), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3405), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3385), 4, + ACTIONS(2846), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3413), 4, + ACTIONS(2874), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1733), 5, + ACTIONS(1832), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [137848] = 25, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [95990] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3417), 1, - anon_sym_RPAREN, - ACTIONS(3419), 1, + STATE(1933), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1722), 13, anon_sym_COLON, - ACTIONS(3421), 1, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1724), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3427), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3431), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - STATE(2545), 1, - sym_decorator, - STATE(4469), 1, - sym_type_annotation, - STATE(4470), 1, - aux_sym_variant_arguments_repeat1, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3441), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [137939] = 7, + anon_sym_COLON_GT, + [96047] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2546), 1, + STATE(1934), 1, sym_decorator, - STATE(2584), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1726), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -212357,11 +169465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 21, + ACTIONS(1728), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -212379,47 +169491,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [137994] = 7, + [96104] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2547), 1, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_GT_GT, + STATE(1935), 1, sym_decorator, - STATE(2584), 1, - aux_sym_variant_type_repeat1, + ACTIONS(2816), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2818), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2830), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2832), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 18, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [96175] = 9, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + STATE(1936), 1, + sym_decorator, + ACTIONS(2818), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(2832), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 21, + ACTIONS(1812), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -212427,269 +169603,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [138049] = 7, + [96238] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2546), 1, - aux_sym_variant_type_repeat1, - STATE(2548), 1, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_GT_GT, + STATE(1937), 1, sym_decorator, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2816), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2818), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, + ACTIONS(2830), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2832), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(2814), 4, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 21, + ACTIONS(2840), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 14, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [96313] = 18, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2820), 1, anon_sym_AMP_AMP_AMP, + ACTIONS(2824), 1, anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2828), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_GT_GT, + STATE(1938), 1, + sym_decorator, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2816), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2818), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2830), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(2832), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2814), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2840), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + ACTIONS(1812), 11, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_COLON_GT, - [138104] = 17, + [96394] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3354), 1, + ACTIONS(2820), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3362), 1, + ACTIONS(2828), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3368), 1, + ACTIONS(2834), 1, anon_sym_STAR_STAR, - ACTIONS(3372), 1, + ACTIONS(2838), 1, anon_sym_GT_GT, - STATE(2549), 1, + STATE(1939), 1, sym_decorator, - ACTIONS(3350), 2, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3352), 2, + ACTIONS(2818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3370), 2, + ACTIONS(2836), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3364), 3, + ACTIONS(2830), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3366), 3, + ACTIONS(2832), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3348), 4, + ACTIONS(2814), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3374), 4, + ACTIONS(2840), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 7, + ACTIONS(1812), 12, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_and, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_PIPE_PIPE_PIPE, anon_sym_COLON_GT, - [138179] = 19, + [96473] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3354), 1, + ACTIONS(1810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2820), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3356), 1, + ACTIONS(2822), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(2824), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3362), 1, + ACTIONS(2828), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3368), 1, + ACTIONS(2834), 1, anon_sym_STAR_STAR, - ACTIONS(3372), 1, + ACTIONS(2838), 1, anon_sym_GT_GT, - STATE(2550), 1, + STATE(1940), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_PIPE, - anon_sym_PIPE_PIPE, - ACTIONS(3350), 2, + ACTIONS(2816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3352), 2, + ACTIONS(2818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3370), 2, + ACTIONS(2836), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3364), 3, + ACTIONS(2830), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3366), 3, + ACTIONS(2832), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3348), 4, + ACTIONS(2814), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3374), 4, + ACTIONS(2840), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 6, + ACTIONS(1812), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_and, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_COLON_GT, - [138258] = 15, + [96556] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3407), 1, + ACTIONS(2820), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2834), 1, anon_sym_STAR_STAR, - ACTIONS(3411), 1, + ACTIONS(2838), 1, anon_sym_GT_GT, - STATE(2551), 1, + STATE(1941), 1, sym_decorator, - ACTIONS(1731), 2, + ACTIONS(1810), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3387), 2, + ACTIONS(2816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3391), 2, + ACTIONS(2818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3409), 2, + ACTIONS(2836), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3403), 3, + ACTIONS(2830), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3405), 3, + ACTIONS(2832), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3385), 4, + ACTIONS(2814), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3413), 4, + ACTIONS(2840), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 10, + ACTIONS(1812), 13, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [138329] = 7, + [96633] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2547), 1, - aux_sym_variant_type_repeat1, - STATE(2552), 1, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + STATE(1942), 1, sym_decorator, + ACTIONS(2818), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(2832), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 21, + ACTIONS(1812), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -212697,556 +169967,628 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [138384] = 25, + [96696] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2834), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3455), 1, - anon_sym_RPAREN, - ACTIONS(3457), 1, - anon_sym_COMMA, - STATE(2553), 1, + STATE(1943), 1, sym_decorator, - STATE(4433), 1, - sym_type_annotation, - STATE(4435), 1, - aux_sym_variant_arguments_repeat1, - ACTIONS(3425), 2, + ACTIONS(2816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2830), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2832), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(1810), 7, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(1812), 20, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [138475] = 16, + anon_sym_COLON_GT, + [96763] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3354), 1, + ACTIONS(1860), 1, + anon_sym_PIPE, + ACTIONS(2719), 1, + anon_sym_COLON_GT, + ACTIONS(2850), 1, + anon_sym_QMARK, + ACTIONS(2854), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3368), 1, + ACTIONS(2856), 1, + anon_sym_AMP_AMP, + ACTIONS(2858), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2862), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - ACTIONS(3372), 1, + ACTIONS(2872), 1, anon_sym_GT_GT, - STATE(2554), 1, + STATE(1944), 1, sym_decorator, - ACTIONS(3350), 2, + ACTIONS(2848), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3352), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3370), 2, + ACTIONS(2870), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3364), 3, + ACTIONS(2864), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3366), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3348), 4, + ACTIONS(2846), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3374), 4, + ACTIONS(2874), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 8, + ACTIONS(1862), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_and, - anon_sym_QMARK, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [138548] = 13, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [96852] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1223), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2555), 1, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1317), 1, + sym__inline_type, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1405), 1, + sym_function_type, + STATE(1412), 1, + sym_type_identifier, + STATE(1443), 1, + sym__type_identifier, + STATE(1563), 1, + sym__non_function_inline_type, + STATE(1945), 1, sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(5046), 1, - sym__definition_signature, - STATE(5057), 1, - sym_value_identifier, - ACTIONS(1228), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(1231), 2, - aux_sym_value_identifier_token1, + STATE(2891), 1, + sym_module_identifier, + STATE(3290), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4343), 1, + sym_abstract_type, + STATE(4369), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1226), 9, - anon_sym_module, - anon_sym_DOT, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - sym_true, - sym_false, - ACTIONS(1221), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [138615] = 19, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [96955] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3393), 1, + ACTIONS(1870), 1, + anon_sym_PIPE, + ACTIONS(2719), 1, + anon_sym_COLON_GT, + ACTIONS(2850), 1, + anon_sym_QMARK, + ACTIONS(2854), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3395), 1, + ACTIONS(2856), 1, anon_sym_AMP_AMP, - ACTIONS(3397), 1, + ACTIONS(2858), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3401), 1, + ACTIONS(2860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2862), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3407), 1, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - ACTIONS(3411), 1, + ACTIONS(2872), 1, anon_sym_GT_GT, - STATE(2556), 1, + STATE(1946), 1, sym_decorator, - ACTIONS(3387), 2, + ACTIONS(2848), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3391), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3409), 2, + ACTIONS(2870), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3403), 3, + ACTIONS(2864), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3405), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3385), 4, + ACTIONS(2846), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3413), 4, + ACTIONS(2874), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 7, + ACTIONS(1872), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_QMARK, - anon_sym_COLON_GT, - [138694] = 8, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [97044] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3378), 1, + ACTIONS(1874), 1, anon_sym_PIPE, - STATE(2557), 1, - sym_decorator, - STATE(2584), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1256), 11, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1254), 21, + ACTIONS(2719), 1, + anon_sym_COLON_GT, + ACTIONS(2850), 1, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + ACTIONS(2854), 1, anon_sym_AMP_AMP_AMP, + ACTIONS(2856), 1, + anon_sym_AMP_AMP, + ACTIONS(2858), 1, anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2862), 1, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [138751] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3026), 1, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - ACTIONS(3030), 1, + ACTIONS(2872), 1, anon_sym_GT_GT, - ACTIONS(3036), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3038), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3040), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3042), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_QMARK, - ACTIONS(3051), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3053), 1, - anon_sym_COLON_GT, - STATE(2558), 1, + STATE(1947), 1, sym_decorator, - ACTIONS(3018), 2, + ACTIONS(2848), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3020), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3028), 2, + ACTIONS(2870), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3022), 3, + ACTIONS(2864), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3024), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3032), 4, + ACTIONS(2846), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3034), 4, + ACTIONS(2874), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1989), 5, + ACTIONS(1876), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [138834] = 11, + [97133] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - STATE(2559), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1386), 1, + sym__inline_type, + STATE(1405), 1, + sym_function_type, + STATE(1443), 1, + sym__type_identifier, + STATE(1518), 1, + sym__non_function_inline_type, + STATE(1619), 1, + sym_type_identifier, + STATE(1948), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3280), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4200), 1, + sym_function_type_parameters, + STATE(4284), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [97236] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1949), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3080), 1, + sym__inline_type, + STATE(3100), 1, + sym_function_type, + STATE(3282), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3405), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4185), 1, + sym_abstract_type, + STATE(4385), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [97339] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1950), 1, sym_decorator, - ACTIONS(3387), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3391), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3403), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3405), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 7, + ACTIONS(1730), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 16, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1732), 25, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [138897] = 23, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3461), 1, - anon_sym_COLON, - ACTIONS(3467), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3471), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3473), 1, - anon_sym_AMP_AMP, - ACTIONS(3475), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3479), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3485), 1, - anon_sym_STAR_STAR, - ACTIONS(3489), 1, - anon_sym_GT_GT, - ACTIONS(3493), 1, - anon_sym_COLON_GT, - STATE(2560), 1, - sym_decorator, - STATE(4419), 1, - sym_type_annotation, - ACTIONS(3465), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3469), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3487), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3459), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(3481), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3483), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3463), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3491), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [138984] = 25, + anon_sym_COLON_GT, + [97396] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3495), 1, - anon_sym_RPAREN, - ACTIONS(3497), 1, - anon_sym_COMMA, - STATE(2561), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1386), 1, + sym__inline_type, + STATE(1405), 1, + sym_function_type, + STATE(1412), 1, + sym_type_identifier, + STATE(1443), 1, + sym__type_identifier, + STATE(1518), 1, + sym__non_function_inline_type, + STATE(1951), 1, sym_decorator, - STATE(4280), 1, - sym_type_annotation, - STATE(4281), 1, - aux_sym_variant_arguments_repeat1, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2891), 1, + sym_module_identifier, + STATE(3288), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4122), 1, + sym_abstract_type, + STATE(4365), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [139075] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [97499] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3380), 1, - anon_sym_PIPE, - STATE(2543), 1, - aux_sym_variant_type_repeat1, - STATE(2562), 1, + STATE(1952), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1734), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -213254,11 +170596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 21, - anon_sym_EQ_GT, + ACTIONS(1736), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -213276,89 +170622,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [139132] = 22, + [97556] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3354), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3360), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3362), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3372), 1, - anon_sym_GT_GT, - ACTIONS(3376), 1, - anon_sym_COLON_GT, - ACTIONS(3501), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_QMARK, - STATE(2563), 1, + STATE(1953), 1, sym_decorator, - ACTIONS(3350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3352), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3364), 3, + ACTIONS(1738), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1740), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3366), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3348), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3374), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(3499), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - [139217] = 8, + anon_sym_COLON_GT, + [97613] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3378), 1, - anon_sym_PIPE, - STATE(2557), 1, - aux_sym_variant_type_repeat1, - STATE(2564), 1, + STATE(1954), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1742), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -213366,11 +170698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 21, + ACTIONS(1744), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -213388,236 +170724,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [139274] = 25, + [97670] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3505), 1, - anon_sym_RPAREN, - ACTIONS(3507), 1, - anon_sym_COMMA, - STATE(2565), 1, + STATE(1955), 1, sym_decorator, - STATE(4379), 1, - sym_type_annotation, - STATE(4380), 1, - aux_sym_variant_arguments_repeat1, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(1746), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [139365] = 23, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3461), 1, - anon_sym_COLON, - ACTIONS(3467), 1, + ACTIONS(1748), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3471), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3473), 1, - anon_sym_AMP_AMP, - ACTIONS(3475), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3479), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3485), 1, - anon_sym_STAR_STAR, - ACTIONS(3489), 1, - anon_sym_GT_GT, - ACTIONS(3493), 1, - anon_sym_COLON_GT, - STATE(2566), 1, - sym_decorator, - STATE(4490), 1, - sym_type_annotation, - ACTIONS(3465), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3469), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3487), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3481), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3483), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3509), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(3463), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3491), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [139452] = 16, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3393), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3407), 1, anon_sym_STAR_STAR, - ACTIONS(3411), 1, - anon_sym_GT_GT, - STATE(2567), 1, - sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3387), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3391), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3409), 2, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3403), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3405), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3385), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3413), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_QMARK, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [139525] = 9, + [97727] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - STATE(2568), 1, + STATE(1956), 1, sym_decorator, - ACTIONS(3352), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3366), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 10, + ACTIONS(1750), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 18, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, + ACTIONS(1752), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -213625,27 +170826,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [139584] = 8, + [97784] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3275), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(2569), 1, + STATE(1957), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1252), 12, + ACTIONS(1754), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -213653,10 +170851,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1250), 20, + ACTIONS(1756), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -213674,25 +170877,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [139641] = 7, + [97841] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2543), 1, - aux_sym_variant_type_repeat1, - STATE(2570), 1, + STATE(1958), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1758), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -213700,11 +170902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 21, - anon_sym_EQ_GT, + ACTIONS(1760), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -213722,25 +170928,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [139696] = 7, + [97898] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2543), 1, - aux_sym_variant_type_repeat1, - STATE(2571), 1, + STATE(1959), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1766), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -213748,11 +170953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 21, - anon_sym_EQ_GT, + ACTIONS(1768), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -213770,25 +170979,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [139751] = 7, + [97955] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2570), 1, - aux_sym_variant_type_repeat1, - STATE(2572), 1, + STATE(1960), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, + ACTIONS(1882), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -213796,11 +171004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 21, - anon_sym_EQ_GT, + ACTIONS(1884), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -213818,49 +171030,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [139806] = 9, + [98012] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - STATE(2573), 1, + STATE(1961), 1, sym_decorator, - ACTIONS(3391), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3405), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1698), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 19, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1700), 25, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -213868,199 +171081,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [139865] = 22, + [98069] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3354), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3360), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3362), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3372), 1, - anon_sym_GT_GT, - ACTIONS(3376), 1, - anon_sym_COLON_GT, - ACTIONS(3503), 1, - anon_sym_QMARK, - ACTIONS(3513), 1, - anon_sym_PIPE, - STATE(2574), 1, + STATE(1962), 1, sym_decorator, - ACTIONS(3350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3352), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3364), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3366), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3348), 4, + ACTIONS(1910), 13, + anon_sym_COLON, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3374), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(3511), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - [139950] = 11, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - STATE(2575), 1, - sym_decorator, - ACTIONS(3350), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3352), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3364), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3366), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 8, - anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 15, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, + ACTIONS(1912), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [140013] = 18, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3393), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3397), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3401), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3411), 1, - anon_sym_GT_GT, - STATE(2576), 1, - sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3387), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3391), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3409), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3403), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3405), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3385), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3413), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_QMARK, anon_sym_COLON_GT, - [140090] = 7, + [98126] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2571), 1, - aux_sym_variant_type_repeat1, - STATE(2577), 1, + STATE(1963), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1890), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -214068,11 +171157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 21, - anon_sym_EQ_GT, + ACTIONS(1892), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -214090,264 +171183,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [140145] = 23, + [98183] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3461), 1, - anon_sym_COLON, - ACTIONS(3467), 1, - anon_sym_QMARK, - ACTIONS(3471), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3473), 1, - anon_sym_AMP_AMP, - ACTIONS(3475), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3479), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3485), 1, - anon_sym_STAR_STAR, - ACTIONS(3489), 1, - anon_sym_GT_GT, - ACTIONS(3493), 1, - anon_sym_COLON_GT, - STATE(2578), 1, + STATE(1964), 1, sym_decorator, - STATE(4520), 1, - sym_type_annotation, - ACTIONS(3465), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3469), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3487), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3481), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3483), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3515), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(3463), 4, + ACTIONS(1894), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3491), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [140232] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3389), 1, + ACTIONS(1896), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3393), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3395), 1, - anon_sym_AMP_AMP, - ACTIONS(3397), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3401), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3411), 1, - anon_sym_GT_GT, - ACTIONS(3415), 1, - anon_sym_COLON_GT, - STATE(2579), 1, - sym_decorator, - ACTIONS(3387), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3391), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3409), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3403), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3405), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3385), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3413), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(3511), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [140315] = 13, + anon_sym_COLON_GT, + [98240] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3411), 1, - anon_sym_GT_GT, - STATE(2580), 1, + STATE(1965), 1, sym_decorator, - ACTIONS(3387), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3391), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3409), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3403), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3405), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 6, + ACTIONS(1898), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 14, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1900), 25, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [140382] = 17, + [98297] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3393), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3401), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3411), 1, - anon_sym_GT_GT, - STATE(2581), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1027), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(1966), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3387), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3391), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3409), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2584), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4231), 1, + sym_abstract_type, + STATE(4306), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3403), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3405), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3385), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3413), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_QMARK, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - [140457] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [98400] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3378), 1, - anon_sym_PIPE, - STATE(2582), 1, + STATE(1967), 1, sym_decorator, - STATE(2584), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1770), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -214355,11 +171384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 21, + ACTIONS(1772), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -214377,49 +171410,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [140514] = 9, + [98457] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - STATE(2583), 1, + STATE(1968), 1, sym_decorator, - ACTIONS(3391), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3405), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1774), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 19, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1776), 25, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -214427,25 +171461,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [140573] = 7, + [98514] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3517), 1, - anon_sym_PIPE, - STATE(2584), 2, + STATE(1969), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1762), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -214453,11 +171486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 21, + ACTIONS(1764), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -214475,191 +171512,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [140628] = 13, + [98571] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3372), 1, - anon_sym_GT_GT, - STATE(2585), 1, + ACTIONS(2333), 1, + anon_sym_LPAREN, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_LBRACK, + STATE(1085), 1, + sym_call_arguments, + STATE(1970), 1, sym_decorator, - ACTIONS(3350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3352), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2876), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3364), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3366), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 7, + ACTIONS(1528), 12, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 13, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, + ACTIONS(1530), 20, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [140695] = 9, + [98638] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - STATE(2586), 1, + STATE(1971), 1, sym_decorator, - ACTIONS(3352), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3366), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 10, + ACTIONS(1778), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 18, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, + ACTIONS(1780), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [140754] = 20, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3393), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3395), 1, - anon_sym_AMP_AMP, - ACTIONS(3397), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3401), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3411), 1, - anon_sym_GT_GT, - ACTIONS(3415), 1, - anon_sym_COLON_GT, - STATE(2587), 1, - sym_decorator, - ACTIONS(3387), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3391), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3409), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3403), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3405), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3385), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3413), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1737), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_QMARK, - [140835] = 8, + anon_sym_COLON_GT, + [98695] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3380), 1, - anon_sym_PIPE, - STATE(2562), 1, - aux_sym_variant_type_repeat1, - STATE(2588), 1, + STATE(1972), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1782), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -214667,11 +171644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 21, - anon_sym_EQ_GT, + ACTIONS(1784), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -214689,88 +171670,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [140892] = 21, + [98752] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3389), 1, - anon_sym_QMARK, - ACTIONS(3393), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3395), 1, - anon_sym_AMP_AMP, - ACTIONS(3397), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3401), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3407), 1, - anon_sym_STAR_STAR, - ACTIONS(3411), 1, - anon_sym_GT_GT, - ACTIONS(3415), 1, - anon_sym_COLON_GT, - STATE(2589), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1317), 1, + sym__inline_type, + STATE(1405), 1, + sym_function_type, + STATE(1973), 1, sym_decorator, - ACTIONS(3387), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3391), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3409), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4351), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3403), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3405), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3385), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3413), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(3499), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [140975] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [98855] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3380), 1, - anon_sym_PIPE, - STATE(2542), 1, - aux_sym_variant_type_repeat1, - STATE(2590), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1317), 1, + sym__inline_type, + STATE(1405), 1, + sym_function_type, + STATE(1974), 1, + sym_decorator, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2824), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4364), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [98958] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(1975), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1528), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -214778,11 +171843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 21, - anon_sym_EQ_GT, + ACTIONS(1530), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -214800,413 +171869,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [141032] = 25, + [99015] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3520), 1, - anon_sym_RPAREN, - ACTIONS(3522), 1, - anon_sym_COMMA, - STATE(2591), 1, + STATE(1976), 1, sym_decorator, - STATE(4416), 1, - sym_type_annotation, - STATE(4417), 1, - aux_sym_variant_arguments_repeat1, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(1790), 13, + anon_sym_COLON, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [141123] = 15, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3372), 1, - anon_sym_GT_GT, - STATE(2592), 1, - sym_decorator, - ACTIONS(3350), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3352), 2, + anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1731), 3, - anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3364), 3, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1792), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3366), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3348), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3374), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [141194] = 18, + [99072] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3354), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3362), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3372), 1, - anon_sym_GT_GT, - STATE(2593), 1, + STATE(1977), 1, sym_decorator, - ACTIONS(3350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3352), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_PIPE, + ACTIONS(1937), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3364), 3, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1939), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3366), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3348), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3374), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_QMARK, anon_sym_COLON_GT, - [141271] = 22, + [99129] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1735), 1, - anon_sym_PIPE, - ACTIONS(3354), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3360), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3362), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3368), 1, - anon_sym_STAR_STAR, - ACTIONS(3372), 1, - anon_sym_GT_GT, - ACTIONS(3376), 1, - anon_sym_COLON_GT, - ACTIONS(3503), 1, - anon_sym_QMARK, - STATE(2594), 1, + STATE(1978), 1, sym_decorator, - ACTIONS(3350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3352), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2735), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3364), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3366), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1733), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - ACTIONS(3348), 4, + ACTIONS(1528), 11, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3374), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [141356] = 25, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, + ACTIONS(1530), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(3431), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3524), 1, - anon_sym_RPAREN, - ACTIONS(3526), 1, - anon_sym_COMMA, - STATE(2595), 1, - sym_decorator, - STATE(4531), 1, - sym_type_annotation, - STATE(4533), 1, - aux_sym_variant_arguments_repeat1, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3441), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [141447] = 21, + anon_sym_COLON_GT, + [99188] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3534), 1, - anon_sym_QMARK, - ACTIONS(3538), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3540), 1, - anon_sym_AMP_AMP, - ACTIONS(3542), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3546), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3552), 1, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - ACTIONS(3556), 1, + ACTIONS(2872), 1, anon_sym_GT_GT, - ACTIONS(3560), 1, - anon_sym_COLON_GT, - STATE(2596), 1, + STATE(1979), 1, sym_decorator, - ACTIONS(3532), 2, + ACTIONS(2848), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3536), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3554), 2, + ACTIONS(2870), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3548), 3, + ACTIONS(2864), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3550), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3528), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(3530), 4, + ACTIONS(1810), 7, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3558), 4, + ACTIONS(1812), 17, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [141529] = 9, + anon_sym_COLON_GT, + [99259] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3485), 1, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - STATE(2597), 1, + STATE(1980), 1, sym_decorator, - ACTIONS(3469), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3483), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 10, - anon_sym_COLON, + ACTIONS(1810), 10, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 17, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(1812), 22, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -215220,388 +172135,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [141587] = 15, + [99322] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3485), 1, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - ACTIONS(3489), 1, + ACTIONS(2872), 1, anon_sym_GT_GT, - STATE(2598), 1, + STATE(1981), 1, sym_decorator, - ACTIONS(3465), 2, + ACTIONS(2848), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3469), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3487), 2, + ACTIONS(2870), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_COLON, + ACTIONS(1810), 3, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3481), 3, + ACTIONS(2864), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3483), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3463), 4, + ACTIONS(2846), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3491), 4, + ACTIONS(2874), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [141657] = 24, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, + ACTIONS(1812), 13, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3431), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, anon_sym_COLON_GT, - ACTIONS(3562), 1, - anon_sym_RPAREN, - ACTIONS(3564), 1, - anon_sym_COMMA, - STATE(2599), 1, - sym_decorator, - STATE(4664), 1, - sym_type_annotation, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [141745] = 18, + [99397] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3471), 1, + ACTIONS(2854), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3475), 1, + ACTIONS(2858), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3479), 1, + ACTIONS(2862), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3485), 1, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - ACTIONS(3489), 1, + ACTIONS(2872), 1, anon_sym_GT_GT, - STATE(2600), 1, + STATE(1982), 1, sym_decorator, - ACTIONS(3465), 2, + ACTIONS(2848), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3469), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3487), 2, + ACTIONS(2870), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_COLON, + ACTIONS(1810), 3, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3481), 3, + ACTIONS(2864), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3483), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3463), 4, + ACTIONS(2846), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3491), 4, + ACTIONS(2874), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(1812), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_COLON_GT, - [141821] = 17, + [99478] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3471), 1, + ACTIONS(2854), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3479), 1, + ACTIONS(2862), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3485), 1, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - ACTIONS(3489), 1, + ACTIONS(2872), 1, anon_sym_GT_GT, - STATE(2601), 1, + STATE(1983), 1, sym_decorator, - ACTIONS(3465), 2, + ACTIONS(2848), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3469), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3487), 2, + ACTIONS(2870), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_COLON, + ACTIONS(1810), 3, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3481), 3, + ACTIONS(2864), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3483), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3463), 4, + ACTIONS(2846), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3491), 4, + ACTIONS(2874), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(1812), 11, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_PIPE_PIPE_PIPE, anon_sym_COLON_GT, - [141895] = 19, + [99557] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3471), 1, + ACTIONS(2854), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3473), 1, + ACTIONS(2856), 1, anon_sym_AMP_AMP, - ACTIONS(3475), 1, + ACTIONS(2858), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3479), 1, + ACTIONS(2862), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3485), 1, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - ACTIONS(3489), 1, + ACTIONS(2872), 1, anon_sym_GT_GT, - STATE(2602), 1, + STATE(1984), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_COLON, + ACTIONS(1810), 2, + anon_sym_PIPE, anon_sym_PIPE_PIPE, - ACTIONS(3465), 2, + ACTIONS(2848), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3469), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3487), 2, + ACTIONS(2870), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3481), 3, + ACTIONS(2864), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3483), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3463), 4, + ACTIONS(2846), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3491), 4, + ACTIONS(2874), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(1812), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_COLON_GT, - [141973] = 13, + [99640] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3485), 1, + ACTIONS(2854), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - ACTIONS(3489), 1, + ACTIONS(2872), 1, anon_sym_GT_GT, - STATE(2603), 1, + STATE(1985), 1, sym_decorator, - ACTIONS(3465), 2, + ACTIONS(2848), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3469), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3487), 2, + ACTIONS(2870), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3481), 3, + ACTIONS(1810), 3, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2864), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3483), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 7, - anon_sym_COLON, + ACTIONS(2846), 4, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 12, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, + ACTIONS(2874), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + ACTIONS(1812), 12, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [142039] = 9, + [99717] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3485), 1, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - STATE(2604), 1, + STATE(1986), 1, sym_decorator, - ACTIONS(3469), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3483), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 10, - anon_sym_COLON, + ACTIONS(1810), 10, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 17, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(1812), 22, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -215615,47 +172499,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [142097] = 11, + [99780] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3485), 1, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - STATE(2605), 1, + STATE(1987), 1, sym_decorator, - ACTIONS(3465), 2, + ACTIONS(2848), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3469), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3481), 3, + ACTIONS(2864), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3483), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 8, - anon_sym_COLON, + ACTIONS(1810), 8, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 14, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(1812), 19, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -215666,288 +172555,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [142159] = 24, + [99847] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3566), 1, - anon_sym_RPAREN, - ACTIONS(3568), 1, - anon_sym_COMMA, - STATE(2606), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2175), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1988), 1, sym_decorator, - STATE(4740), 1, - sym_type_annotation, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2841), 1, + sym_type_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3100), 1, + sym_function_type, + STATE(3211), 1, + sym__non_function_inline_type, + STATE(3232), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3856), 1, + sym_module_primary_expression, + STATE(4244), 1, + sym_abstract_type, + STATE(4248), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2183), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [142247] = 22, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [99950] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1735), 1, - anon_sym_PIPE, - ACTIONS(3574), 1, - anon_sym_QMARK, - ACTIONS(3578), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3580), 1, - anon_sym_AMP_AMP, - ACTIONS(3582), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3584), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3586), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3592), 1, - anon_sym_STAR_STAR, - ACTIONS(3596), 1, - anon_sym_GT_GT, - ACTIONS(3600), 1, - anon_sym_COLON_GT, - STATE(2607), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1027), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(1989), 1, sym_decorator, - ACTIONS(3572), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3576), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2584), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3244), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4189), 1, + sym_abstract_type, + STATE(4372), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1733), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(3588), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3590), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3598), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [142331] = 21, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [100053] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1739), 1, - anon_sym_PIPE, - ACTIONS(3578), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3580), 1, - anon_sym_AMP_AMP, - ACTIONS(3582), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3584), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3586), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3592), 1, - anon_sym_STAR_STAR, - ACTIONS(3596), 1, - anon_sym_GT_GT, - ACTIONS(3600), 1, - anon_sym_COLON_GT, - STATE(2608), 1, + STATE(1990), 1, sym_decorator, - ACTIONS(3572), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3576), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2729), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3588), 3, + ACTIONS(1528), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 23, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3590), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(1737), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3598), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [142413] = 13, + anon_sym_COLON_GT, + [100112] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - STATE(2609), 1, + STATE(1991), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 6, + ACTIONS(1528), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 13, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1530), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [142479] = 9, + [100169] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - STATE(2610), 1, + STATE(1992), 1, sym_decorator, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1798), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 18, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1800), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -215955,395 +172857,482 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [142537] = 15, + [100226] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - STATE(2611), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1317), 1, + sym__inline_type, + STATE(1405), 1, + sym_function_type, + STATE(1993), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2772), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4071), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [100329] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1027), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(1199), 1, + sym__type_identifier, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1360), 1, + sym__non_function_inline_type, + STATE(1411), 1, + sym_type_identifier, + STATE(1994), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3251), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4141), 1, + sym_function_type_parameters, + STATE(4235), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [142607] = 18, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [100432] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - STATE(2612), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1386), 1, + sym__inline_type, + STATE(1405), 1, + sym_function_type, + STATE(1995), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2772), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3252), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4071), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4399), 1, + sym_abstract_type, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 6, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COLON_GT, - [142683] = 17, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [100535] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - STATE(2613), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1996), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3080), 1, + sym__inline_type, + STATE(3100), 1, + sym_function_type, + STATE(3256), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3405), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4099), 1, + sym_function_type_parameters, + STATE(4267), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 7, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - [142757] = 22, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [100638] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3574), 1, - anon_sym_QMARK, - ACTIONS(3578), 1, + ACTIONS(2653), 1, + anon_sym_COLON_GT, + ACTIONS(2820), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3580), 1, + ACTIONS(2822), 1, anon_sym_AMP_AMP, - ACTIONS(3582), 1, + ACTIONS(2824), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3584), 1, + ACTIONS(2826), 1, anon_sym_PIPE_PIPE, - ACTIONS(3586), 1, + ACTIONS(2828), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3592), 1, + ACTIONS(2834), 1, anon_sym_STAR_STAR, - ACTIONS(3596), 1, + ACTIONS(2838), 1, anon_sym_GT_GT, - ACTIONS(3600), 1, - anon_sym_COLON_GT, - ACTIONS(3626), 1, - anon_sym_PIPE, - STATE(2614), 1, + ACTIONS(2842), 1, + anon_sym_QMARK, + STATE(1997), 1, sym_decorator, - ACTIONS(3572), 2, + ACTIONS(2816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3576), 2, + ACTIONS(2818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3594), 2, + ACTIONS(2836), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3528), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(3588), 3, + ACTIONS(2830), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3590), 3, + ACTIONS(2832), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3570), 4, + ACTIONS(2814), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3598), 4, + ACTIONS(2840), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [142841] = 19, + ACTIONS(1872), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [100725] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(2653), 1, + anon_sym_COLON_GT, + ACTIONS(2820), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, + ACTIONS(2822), 1, + anon_sym_AMP_AMP, + ACTIONS(2824), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, + ACTIONS(2826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2828), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - STATE(2615), 1, - sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 6, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COLON_GT, - [142919] = 16, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3610), 1, + ACTIONS(2834), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(2838), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - STATE(2616), 1, + ACTIONS(2842), 1, + anon_sym_QMARK, + STATE(1998), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3602), 2, + ACTIONS(2816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2836), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(2830), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2832), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2814), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2840), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 8, - anon_sym_LBRACE, + ACTIONS(1876), 9, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [142991] = 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [100812] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - STATE(2617), 1, + ACTIONS(2431), 1, + anon_sym_LPAREN, + ACTIONS(2878), 1, + anon_sym_COLON, + STATE(1637), 1, + sym_type_annotation, + STATE(1999), 1, sym_decorator, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, + STATE(2147), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1148), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 18, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1150), 22, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -216351,73 +173340,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [143049] = 11, + [100877] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - STATE(2618), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2175), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(2000), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2841), 1, + sym_type_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3080), 1, + sym__inline_type, + STATE(3100), 1, + sym_function_type, + STATE(3214), 1, + sym__non_function_inline_type, + STATE(3257), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3856), 1, + sym_module_primary_expression, + STATE(4254), 1, + sym_function_type_parameters, + STATE(4272), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2183), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1729), 15, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [143111] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [100980] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3630), 1, - anon_sym_PIPE, - STATE(2619), 1, + STATE(2001), 1, sym_decorator, - STATE(2621), 1, - aux_sym_variant_type_repeat1, + ACTIONS(2731), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1528), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -216429,10 +173440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 20, + ACTIONS(1530), 25, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -216450,26 +173466,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [143167] = 8, + [101039] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3630), 1, - anon_sym_PIPE, - STATE(2620), 1, + STATE(2002), 1, sym_decorator, - STATE(2621), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 11, + ACTIONS(1594), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -216477,10 +173491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 20, + ACTIONS(1596), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -216498,25 +173517,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [143223] = 7, + [101096] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3632), 1, - anon_sym_PIPE, - STATE(2621), 2, + STATE(2003), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1328), 11, + ACTIONS(1632), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -216524,10 +173542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 20, + ACTIONS(1634), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -216545,86 +173568,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [143277] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - STATE(2622), 1, - sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1733), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [143359] = 7, + [101153] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2621), 1, - aux_sym_variant_type_repeat1, - STATE(2623), 1, + STATE(2004), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1554), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -216632,10 +173593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 20, + ACTIONS(1556), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -216653,25 +173619,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [143413] = 7, + [101210] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2621), 1, - aux_sym_variant_type_repeat1, - STATE(2624), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1035), 1, + sym_function_type, + STATE(1073), 1, + sym_type_identifier, + STATE(1199), 1, + sym__type_identifier, + STATE(1295), 1, + sym__non_function_inline_type, + STATE(1301), 1, + sym__inline_type, + STATE(1339), 1, + sym_type_identifier_path, + STATE(2005), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3255), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4262), 1, + sym_abstract_type, + STATE(4383), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [101313] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1499), 1, + sym__type_identifier, + STATE(1601), 1, + sym__non_function_inline_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1660), 1, + sym__inline_type, + STATE(1677), 1, + sym_function_type, + STATE(1777), 1, + sym_type_identifier, + STATE(2006), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3261), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4113), 1, + sym_function_type_parameters, + STATE(4274), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [101416] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2395), 1, + anon_sym_EQ_GT, + STATE(2007), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1324), 12, + ACTIONS(1396), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -216679,10 +173793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 20, + ACTIONS(1398), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -216700,194 +173819,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [143467] = 20, + [101475] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, + ACTIONS(2653), 1, anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - STATE(2625), 1, - sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1737), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [143547] = 22, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1735), 1, - anon_sym_COLON, - ACTIONS(3467), 1, - anon_sym_QMARK, - ACTIONS(3471), 1, + ACTIONS(2820), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3473), 1, + ACTIONS(2822), 1, anon_sym_AMP_AMP, - ACTIONS(3475), 1, + ACTIONS(2824), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3477), 1, + ACTIONS(2826), 1, anon_sym_PIPE_PIPE, - ACTIONS(3479), 1, + ACTIONS(2828), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3485), 1, + ACTIONS(2834), 1, anon_sym_STAR_STAR, - ACTIONS(3489), 1, + ACTIONS(2838), 1, anon_sym_GT_GT, - ACTIONS(3493), 1, - anon_sym_COLON_GT, - STATE(2626), 1, + ACTIONS(2842), 1, + anon_sym_QMARK, + STATE(2008), 1, sym_decorator, - ACTIONS(3465), 2, + ACTIONS(2816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3469), 2, + ACTIONS(2818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3487), 2, + ACTIONS(2836), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1733), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(3481), 3, + ACTIONS(2830), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3483), 3, + ACTIONS(2832), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3463), 4, + ACTIONS(2814), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3491), 4, + ACTIONS(2840), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [143631] = 7, + ACTIONS(1862), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [101562] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2623), 1, - aux_sym_variant_type_repeat1, - STATE(2627), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(2009), 1, sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2726), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4227), 1, + sym_function_type_parameters, + STATE(4231), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 12, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1318), 20, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_SLASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [143685] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [101665] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2624), 1, - aux_sym_variant_type_repeat1, - STATE(2628), 1, + STATE(2010), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 12, + ACTIONS(1558), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -216895,10 +173984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 20, + ACTIONS(1560), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -216916,62 +174010,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [143739] = 25, + [101722] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(131), 1, + ACTIONS(129), 1, anon_sym_type, - ACTIONS(209), 1, + ACTIONS(683), 1, anon_sym_module, - ACTIONS(1993), 1, - anon_sym_LBRACE, - ACTIONS(1999), 1, + ACTIONS(1616), 1, anon_sym_unpack, - ACTIONS(2007), 1, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, - aux_sym_type_identifier_token1, - ACTIONS(2013), 1, - sym__escape_identifier, - ACTIONS(2015), 1, + ACTIONS(2221), 1, sym_unit_type, - ACTIONS(2751), 1, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(3639), 1, - anon_sym_LPAREN, - STATE(2629), 1, - sym_decorator, - STATE(2895), 1, - sym_type_identifier_path, - STATE(2914), 1, + STATE(743), 1, sym__type_identifier, - STATE(2935), 1, + STATE(751), 1, + sym__inline_type, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(804), 1, + sym__non_function_inline_type, + STATE(823), 1, sym_type_identifier, - STATE(3322), 1, + STATE(2011), 1, + sym_decorator, + STATE(2891), 1, sym_module_identifier, - STATE(3928), 1, + STATE(3265), 1, aux_sym_polymorphic_type_repeat1, - STATE(4326), 1, + STATE(3775), 1, sym_module_primary_expression, - STATE(4577), 1, - sym__non_function_inline_type, - STATE(4801), 1, + STATE(4146), 1, + sym_function_type_parameters, + STATE(4279), 1, sym_abstract_type, - ACTIONS(2009), 2, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, anon_sym_LBRACK_GT, anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, + STATE(2896), 4, sym_module_unpack, sym_parenthesized_module_expression, sym_module_identifier_path, sym_functor_use, - STATE(1047), 9, + STATE(788), 9, sym_polymorphic_type, sym_tuple_type, sym_polyvar_type, @@ -216981,333 +174084,293 @@ static const uint16_t ts_small_parse_table[] = { sym__as_aliasing_non_function_inline_type, sym_module_pack, sym_unit, - [143829] = 21, + [101825] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1739), 1, - anon_sym_COLON, - ACTIONS(3471), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3473), 1, - anon_sym_AMP_AMP, - ACTIONS(3475), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3479), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3485), 1, - anon_sym_STAR_STAR, - ACTIONS(3489), 1, - anon_sym_GT_GT, - ACTIONS(3493), 1, - anon_sym_COLON_GT, - STATE(2630), 1, + STATE(2012), 1, sym_decorator, - ACTIONS(3465), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3469), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3487), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3481), 3, + ACTIONS(1660), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1662), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3483), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(1737), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(3463), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3491), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [143911] = 24, + anon_sym_COLON_GT, + [101882] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, + STATE(2013), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1802), 13, anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, + anon_sym_STAR, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3641), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1804), 25, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(3643), 1, anon_sym_COMMA, - STATE(2631), 1, - sym_decorator, - STATE(4556), 1, - sym_type_annotation, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3441), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [143999] = 24, + anon_sym_COLON_GT, + [101939] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3641), 1, - anon_sym_RPAREN, - ACTIONS(3643), 1, - anon_sym_COMMA, - STATE(2632), 1, + ACTIONS(2777), 1, + anon_sym_PIPE, + STATE(1871), 1, + aux_sym_variant_type_repeat1, + STATE(2014), 1, sym_decorator, - STATE(4773), 1, - sym_type_annotation, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(1247), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1249), 25, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [144087] = 13, + anon_sym_COLON_GT, + [102000] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3552), 1, - anon_sym_STAR_STAR, - ACTIONS(3556), 1, - anon_sym_GT_GT, - STATE(2633), 1, + ACTIONS(2777), 1, + anon_sym_PIPE, + STATE(1874), 1, + aux_sym_variant_type_repeat1, + STATE(2015), 1, sym_decorator, - ACTIONS(3532), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3536), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3554), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3548), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3550), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 6, + ACTIONS(1193), 11, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 13, + ACTIONS(1195), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [144153] = 24, + [102061] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2808), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3645), 1, - anon_sym_RPAREN, - ACTIONS(3647), 1, - anon_sym_COMMA, - STATE(2634), 1, + STATE(2016), 1, sym_decorator, - STATE(4706), 1, - sym_type_annotation, - ACTIONS(3425), 2, + ACTIONS(2784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2806), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2800), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(1810), 6, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(1812), 18, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [144241] = 9, + anon_sym_COLON_GT, + [102132] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3552), 1, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - STATE(2635), 1, + STATE(2017), 1, sym_decorator, - ACTIONS(3536), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3550), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1810), 9, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, @@ -217317,12 +174380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 18, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1812), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -217336,386 +174404,419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [144299] = 15, + [102195] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3552), 1, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - ACTIONS(3556), 1, + ACTIONS(2808), 1, anon_sym_GT_GT, - STATE(2636), 1, + STATE(2018), 1, sym_decorator, - ACTIONS(1731), 2, + ACTIONS(1810), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3532), 2, + ACTIONS(2784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3536), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3554), 2, + ACTIONS(2806), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3548), 3, + ACTIONS(2800), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3550), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3530), 4, + ACTIONS(2782), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3558), 4, + ACTIONS(2810), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 9, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1812), 14, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [144369] = 18, + [102270] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3538), 1, + ACTIONS(2790), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3542), 1, + ACTIONS(2794), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3546), 1, + ACTIONS(2798), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3552), 1, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - ACTIONS(3556), 1, + ACTIONS(2808), 1, anon_sym_GT_GT, - STATE(2637), 1, + STATE(2019), 1, sym_decorator, - ACTIONS(1731), 2, + ACTIONS(1810), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3532), 2, + ACTIONS(2784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3536), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3554), 2, + ACTIONS(2806), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3548), 3, + ACTIONS(2800), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3550), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3530), 4, + ACTIONS(2782), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3558), 4, + ACTIONS(2810), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 6, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1812), 11, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_COLON_GT, - [144445] = 17, + [102351] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3538), 1, + ACTIONS(2790), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3546), 1, + ACTIONS(2798), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3552), 1, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - ACTIONS(3556), 1, + ACTIONS(2808), 1, anon_sym_GT_GT, - STATE(2638), 1, + STATE(2020), 1, sym_decorator, - ACTIONS(1731), 2, + ACTIONS(1810), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3532), 2, + ACTIONS(2784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3536), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3554), 2, + ACTIONS(2806), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3548), 3, + ACTIONS(2800), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3550), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3530), 4, + ACTIONS(2782), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3558), 4, + ACTIONS(2810), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 7, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1812), 12, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_PIPE_PIPE_PIPE, anon_sym_COLON_GT, - [144519] = 19, + [102430] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1731), 1, + ACTIONS(1810), 1, anon_sym_PIPE_PIPE, - ACTIONS(3538), 1, + ACTIONS(2790), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3540), 1, + ACTIONS(2792), 1, anon_sym_AMP_AMP, - ACTIONS(3542), 1, + ACTIONS(2794), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3546), 1, + ACTIONS(2798), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3552), 1, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - ACTIONS(3556), 1, + ACTIONS(2808), 1, anon_sym_GT_GT, - STATE(2639), 1, + STATE(2021), 1, sym_decorator, - ACTIONS(3532), 2, + ACTIONS(2784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3536), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3554), 2, + ACTIONS(2806), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3548), 3, + ACTIONS(2800), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3550), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3530), 4, + ACTIONS(2782), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3558), 4, + ACTIONS(2810), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 6, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1812), 11, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_COLON_GT, - [144597] = 16, + [102513] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3538), 1, + ACTIONS(2790), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3552), 1, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - ACTIONS(3556), 1, + ACTIONS(2808), 1, anon_sym_GT_GT, - STATE(2640), 1, + STATE(2022), 1, sym_decorator, - ACTIONS(1731), 2, + ACTIONS(1810), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3532), 2, + ACTIONS(2784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3536), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3554), 2, + ACTIONS(2806), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3548), 3, + ACTIONS(2800), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3550), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3530), 4, + ACTIONS(2782), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3558), 4, + ACTIONS(2810), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 8, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1812), 13, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [144669] = 13, + [102590] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3592), 1, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - ACTIONS(3596), 1, - anon_sym_GT_GT, - STATE(2641), 1, + STATE(2023), 1, sym_decorator, - ACTIONS(3572), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3576), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3588), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3590), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 7, + ACTIONS(1810), 9, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 12, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1812), 23, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [144735] = 9, + [102653] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3592), 1, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - STATE(2642), 1, + STATE(2024), 1, sym_decorator, - ACTIONS(3576), 2, + ACTIONS(2784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3590), 3, + ACTIONS(2800), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 10, + ACTIONS(1810), 7, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 17, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1812), 20, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -217723,333 +174824,484 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [144793] = 15, + [102720] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3592), 1, + ACTIONS(2786), 1, + anon_sym_QMARK, + ACTIONS(2790), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2792), 1, + anon_sym_AMP_AMP, + ACTIONS(2794), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2796), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2798), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - ACTIONS(3596), 1, + ACTIONS(2808), 1, anon_sym_GT_GT, - STATE(2643), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + STATE(2025), 1, sym_decorator, - ACTIONS(3572), 2, + ACTIONS(2784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3576), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3594), 2, + ACTIONS(2806), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3588), 3, + ACTIONS(2800), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3590), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3570), 4, + ACTIONS(2782), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3598), 4, + ACTIONS(2810), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 8, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1904), 9, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [144863] = 18, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [102807] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3578), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3582), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3586), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3592), 1, - anon_sym_STAR_STAR, - ACTIONS(3596), 1, - anon_sym_GT_GT, - STATE(2644), 1, + STATE(2026), 1, sym_decorator, - ACTIONS(3572), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3576), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_PIPE, + ACTIONS(1562), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3588), 3, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1564), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3590), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3598), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_COLON_GT, - [144939] = 17, + [102864] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1027), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(1073), 1, + sym_type_identifier, + STATE(1199), 1, + sym__type_identifier, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1360), 1, + sym__non_function_inline_type, + STATE(2027), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3275), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4260), 1, + sym_abstract_type, + STATE(4382), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [102967] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3578), 1, + ACTIONS(2790), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3586), 1, + ACTIONS(2792), 1, + anon_sym_AMP_AMP, + ACTIONS(2794), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2796), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2798), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3592), 1, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - ACTIONS(3596), 1, + ACTIONS(2808), 1, anon_sym_GT_GT, - STATE(2645), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + STATE(2028), 1, sym_decorator, - ACTIONS(3572), 2, + ACTIONS(2784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3576), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3594), 2, + ACTIONS(2806), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3588), 3, + ACTIONS(2800), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3590), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3570), 4, + ACTIONS(2782), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3598), 4, + ACTIONS(2810), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 6, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1908), 10, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - [145013] = 19, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [103052] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3578), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3580), 1, - anon_sym_AMP_AMP, - ACTIONS(3582), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3586), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3592), 1, - anon_sym_STAR_STAR, - ACTIONS(3596), 1, - anon_sym_GT_GT, - STATE(2646), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(769), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2227), 1, + sym__identifier, + ACTIONS(2229), 1, + anon_sym_LBRACE, + ACTIONS(2231), 1, + anon_sym_LPAREN, + ACTIONS(2237), 1, + anon_sym_LBRACK, + ACTIONS(2243), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1437), 1, + sym__type_identifier, + STATE(1457), 1, + sym_type_identifier, + STATE(1488), 1, + sym_type_identifier_path, + STATE(1489), 1, + sym__inline_type, + STATE(1521), 1, + sym__non_function_inline_type, + STATE(1555), 1, + sym_function_type, + STATE(2029), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3271), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3833), 1, + sym_module_primary_expression, + STATE(4289), 1, + sym_abstract_type, + STATE(4295), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2239), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2241), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1577), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [103155] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(2030), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_PIPE, - anon_sym_PIPE_PIPE, - ACTIONS(3572), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3576), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3588), 3, + ACTIONS(1566), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1568), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3590), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3598), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_COLON_GT, - [145091] = 16, + [103212] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3578), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3592), 1, - anon_sym_STAR_STAR, - ACTIONS(3596), 1, - anon_sym_GT_GT, - STATE(2647), 1, + STATE(1883), 1, + aux_sym_variant_type_repeat1, + STATE(2031), 1, sym_decorator, - ACTIONS(3572), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3576), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3594), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, + ACTIONS(1247), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3588), 3, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1249), 25, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3590), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3570), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3598), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [145163] = 9, + [103271] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3592), 1, - anon_sym_STAR_STAR, - STATE(2648), 1, + STATE(1884), 1, + aux_sym_variant_type_repeat1, + STATE(2032), 1, sym_decorator, - ACTIONS(3576), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3590), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 10, + ACTIONS(1193), 12, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 17, + ACTIONS(1195), 25, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -218057,50 +175309,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [145221] = 11, + [103330] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3592), 1, - anon_sym_STAR_STAR, - STATE(2649), 1, + STATE(2033), 1, sym_decorator, - ACTIONS(3572), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3576), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3588), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3590), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 8, + ACTIONS(1570), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 14, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1572), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -218108,26 +175360,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [145283] = 8, + [103387] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3630), 1, - anon_sym_PIPE, - STATE(2619), 1, - aux_sym_variant_type_repeat1, - STATE(2650), 1, + STATE(2034), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1320), 11, + ACTIONS(1814), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -218135,10 +175385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 20, + ACTIONS(1816), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -218156,26 +175411,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [145339] = 8, + [103444] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3630), 1, - anon_sym_PIPE, - STATE(2620), 1, - aux_sym_variant_type_repeat1, - STATE(2651), 1, + STATE(2035), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1256), 11, + ACTIONS(1574), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -218183,10 +175436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1254), 20, + ACTIONS(1576), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_catch, - anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, @@ -218204,48 +175462,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [145395] = 9, + [103501] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3552), 1, - anon_sym_STAR_STAR, - STATE(2652), 1, + STATE(2036), 1, sym_decorator, - ACTIONS(3536), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3550), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1578), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 18, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1580), 25, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -218253,784 +175513,840 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [145453] = 11, + [103558] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3552), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1499), 1, + sym__type_identifier, + STATE(1601), 1, + sym__non_function_inline_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1660), 1, + sym__inline_type, + STATE(1677), 1, + sym_function_type, + STATE(1777), 1, + sym_type_identifier, + STATE(2037), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3269), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4109), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4395), 1, + sym_function_type_parameters, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [103661] = 13, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2767), 1, anon_sym_STAR_STAR, - STATE(2653), 1, + ACTIONS(2771), 1, + anon_sym_GT_GT, + STATE(2038), 1, sym_decorator, - ACTIONS(3532), 2, + ACTIONS(2747), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3536), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, + ACTIONS(2769), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3548), 3, + ACTIONS(2763), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3550), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 7, + ACTIONS(1810), 8, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, + anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 15, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1812), 16, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [145515] = 24, + [103732] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2767), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3649), 1, - anon_sym_RPAREN, - ACTIONS(3651), 1, - anon_sym_COMMA, - STATE(2654), 1, + STATE(2039), 1, sym_decorator, - STATE(4561), 1, - sym_type_annotation, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(1810), 11, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(1812), 21, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [145603] = 20, + anon_sym_COLON_GT, + [103795] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3538), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3540), 1, - anon_sym_AMP_AMP, - ACTIONS(3542), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3546), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3552), 1, + ACTIONS(2767), 1, anon_sym_STAR_STAR, - ACTIONS(3556), 1, + ACTIONS(2771), 1, anon_sym_GT_GT, - ACTIONS(3560), 1, - anon_sym_COLON_GT, - STATE(2655), 1, + STATE(2040), 1, sym_decorator, - ACTIONS(3532), 2, + ACTIONS(2747), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3536), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3554), 2, + ACTIONS(2769), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3548), 3, + ACTIONS(2763), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3550), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3530), 4, + ACTIONS(1810), 4, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2745), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3558), 4, + ACTIONS(2773), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1737), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1812), 12, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - [145683] = 24, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [103870] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2753), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(2757), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(2761), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2767), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2771), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3649), 1, - anon_sym_RPAREN, - ACTIONS(3651), 1, - anon_sym_COMMA, - STATE(2656), 1, + STATE(2041), 1, sym_decorator, - STATE(4761), 1, - sym_type_annotation, - ACTIONS(3425), 2, + ACTIONS(2747), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2769), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2763), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(1810), 4, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2745), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(2773), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [145771] = 24, + ACTIONS(1812), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_GT, + [103951] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2753), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(2761), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2767), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2771), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3645), 1, - anon_sym_RPAREN, - ACTIONS(3647), 1, - anon_sym_COMMA, - STATE(2657), 1, + STATE(2042), 1, sym_decorator, - STATE(4602), 1, - sym_type_annotation, - ACTIONS(3425), 2, + ACTIONS(2747), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2769), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2763), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(1810), 4, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2745), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(2773), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [145859] = 24, + ACTIONS(1812), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [104030] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2753), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(2755), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(2757), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(2761), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2767), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2771), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3562), 1, - anon_sym_RPAREN, - ACTIONS(3564), 1, - anon_sym_COMMA, - STATE(2658), 1, + STATE(2043), 1, sym_decorator, - STATE(5030), 1, - sym_type_annotation, - ACTIONS(3425), 2, + ACTIONS(2747), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2769), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(1810), 3, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_PIPE_PIPE, + ACTIONS(2763), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2745), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(2773), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [145947] = 21, + ACTIONS(1812), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_GT, + [104113] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3534), 1, - anon_sym_QMARK, - ACTIONS(3538), 1, + ACTIONS(2753), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3540), 1, - anon_sym_AMP_AMP, - ACTIONS(3542), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3544), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3546), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3552), 1, + ACTIONS(2767), 1, anon_sym_STAR_STAR, - ACTIONS(3556), 1, + ACTIONS(2771), 1, anon_sym_GT_GT, - ACTIONS(3560), 1, - anon_sym_COLON_GT, - STATE(2659), 1, + STATE(2044), 1, sym_decorator, - ACTIONS(3532), 2, + ACTIONS(2747), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3536), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3554), 2, + ACTIONS(2769), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3548), 3, + ACTIONS(2763), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3550), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1733), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(3530), 4, + ACTIONS(1810), 4, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2745), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3558), 4, + ACTIONS(2773), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [146029] = 23, + ACTIONS(1812), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [104190] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2767), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - STATE(2660), 1, + STATE(2045), 1, sym_decorator, - STATE(4623), 1, - sym_type_annotation, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3653), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(1810), 11, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(1812), 21, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [146115] = 24, + anon_sym_COLON_GT, + [104253] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2767), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3655), 1, - anon_sym_RPAREN, - ACTIONS(3657), 1, - anon_sym_COMMA, - STATE(2661), 1, + STATE(2046), 1, sym_decorator, - STATE(4558), 1, - sym_type_annotation, - ACTIONS(3425), 2, + ACTIONS(2747), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2763), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(1810), 9, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(1812), 18, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [146203] = 24, + anon_sym_COLON_GT, + [104320] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3427), 1, + ACTIONS(1902), 1, + anon_sym_PIPE, + ACTIONS(2719), 1, + anon_sym_COLON_GT, + ACTIONS(2850), 1, anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2854), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(2856), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(2858), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, + ACTIONS(2860), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(2862), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2872), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3655), 1, - anon_sym_RPAREN, - ACTIONS(3657), 1, - anon_sym_COMMA, - STATE(2662), 1, + STATE(2047), 1, sym_decorator, - STATE(5040), 1, - sym_type_annotation, - ACTIONS(3425), 2, + ACTIONS(2848), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2870), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2864), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2846), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(2874), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [146291] = 16, + ACTIONS(1904), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [104409] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3471), 1, + ACTIONS(1906), 1, + anon_sym_PIPE, + ACTIONS(2719), 1, + anon_sym_COLON_GT, + ACTIONS(2854), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3485), 1, + ACTIONS(2856), 1, + anon_sym_AMP_AMP, + ACTIONS(2858), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2862), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2868), 1, anon_sym_STAR_STAR, - ACTIONS(3489), 1, + ACTIONS(2872), 1, anon_sym_GT_GT, - STATE(2663), 1, + STATE(2048), 1, sym_decorator, - ACTIONS(3465), 2, + ACTIONS(2848), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3469), 2, + ACTIONS(2852), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3487), 2, + ACTIONS(2870), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3481), 3, + ACTIONS(2864), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3483), 3, + ACTIONS(2866), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3463), 4, + ACTIONS(2846), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3491), 4, + ACTIONS(2874), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(1908), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [146363] = 23, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [104496] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3659), 1, + STATE(2049), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1582), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1584), 25, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(3661), 1, anon_sym_COMMA, - ACTIONS(3667), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3671), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3673), 1, - anon_sym_AMP_AMP, - ACTIONS(3675), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3679), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - ACTIONS(3689), 1, - anon_sym_GT_GT, - STATE(2664), 1, - sym_decorator, - STATE(4467), 1, - aux_sym_tuple_repeat1, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3687), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3681), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3683), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3663), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3691), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [146448] = 9, + anon_sym_COLON_GT, + [104553] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - STATE(2665), 1, + STATE(2050), 1, sym_decorator, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3443), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 10, + ACTIONS(1586), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 16, + ACTIONS(1588), 25, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -219038,386 +176354,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [146505] = 22, + [104610] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3695), 1, - anon_sym_COLON, - STATE(2666), 1, + STATE(2051), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1786), 13, + anon_sym_COLON, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3693), 2, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1788), 25, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3441), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [146588] = 13, + anon_sym_COLON_GT, + [104667] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - STATE(2667), 1, + STATE(2052), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 7, + ACTIONS(1914), 13, anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 11, + ACTIONS(1916), 25, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [146653] = 18, + [104724] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - STATE(2668), 1, + STATE(2053), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, + ACTIONS(1810), 13, anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3441), 3, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(1729), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_GT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [146728] = 17, + anon_sym_COLON_GT, + [104781] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - STATE(2669), 1, + STATE(2054), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, + ACTIONS(1918), 13, anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3441), 3, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1920), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PIPE_PIPE_PIPE, anon_sym_COLON_GT, - [146801] = 19, + [104838] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - STATE(2670), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2039), 1, + anon_sym_module, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(2055), 1, sym_decorator, - ACTIONS(1731), 2, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3100), 1, + sym_function_type, + STATE(3256), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3338), 1, + sym__inline_type, + STATE(3392), 1, + sym__non_function_inline_type, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4267), 1, + sym_abstract_type, + STATE(4386), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [104941] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(2056), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1922), 13, anon_sym_COLON, - anon_sym_PIPE_PIPE, - ACTIONS(3425), 2, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + anon_sym_GT, + anon_sym_DOT, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3441), 3, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1924), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(1729), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_GT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [146878] = 16, + anon_sym_COLON_GT, + [104998] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - STATE(2671), 1, + STATE(2057), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, + ACTIONS(1590), 13, anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3441), 3, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1592), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [146949] = 9, + [105055] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - STATE(2672), 1, + STATE(2058), 1, sym_decorator, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3443), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 10, + ACTIONS(1926), 13, anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 16, + ACTIONS(1928), 25, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -219425,49 +176785,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [147006] = 11, + [105112] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - STATE(2673), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(1499), 1, + sym__type_identifier, + STATE(1585), 1, + sym__non_function_inline_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1677), 1, + sym_function_type, + STATE(1777), 1, + sym_type_identifier, + STATE(2059), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, + STATE(2891), 1, + sym_module_identifier, + STATE(3261), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4274), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + STATE(4396), 1, + sym_function_type_parameters, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [105215] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(2060), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1396), 13, anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 13, + ACTIONS(1398), 25, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -219475,1904 +176910,2317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [147067] = 22, + [105272] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1735), 1, - anon_sym_COLON, - ACTIONS(3427), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1386), 1, + sym__inline_type, + STATE(1405), 1, + sym_function_type, + STATE(2061), 1, + sym_decorator, + STATE(2532), 1, + sym_type_identifier, + STATE(2625), 1, + sym__type_identifier, + STATE(2694), 1, + sym_type_identifier_path, + STATE(2772), 1, + sym__non_function_inline_type, + STATE(2891), 1, + sym_module_identifier, + STATE(3201), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3655), 1, + sym_module_primary_expression, + STATE(4249), 1, + sym_abstract_type, + STATE(4336), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [105375] = 22, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2749), 1, anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2753), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(2755), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(2757), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, + ACTIONS(2759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(2761), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2767), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2771), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, + ACTIONS(2775), 1, anon_sym_COLON_GT, - STATE(2674), 1, + STATE(2062), 1, sym_decorator, - ACTIONS(1733), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3425), 2, + ACTIONS(1902), 2, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(2747), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2769), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2763), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2745), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(2773), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [147150] = 23, + ACTIONS(1904), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [105464] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3667), 1, - anon_sym_QMARK, - ACTIONS(3671), 1, + ACTIONS(2753), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3673), 1, + ACTIONS(2755), 1, anon_sym_AMP_AMP, - ACTIONS(3675), 1, + ACTIONS(2757), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3677), 1, + ACTIONS(2759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3679), 1, + ACTIONS(2761), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, + ACTIONS(2767), 1, anon_sym_STAR_STAR, - ACTIONS(3689), 1, + ACTIONS(2771), 1, anon_sym_GT_GT, - ACTIONS(3697), 1, - anon_sym_RPAREN, - ACTIONS(3699), 1, - anon_sym_COMMA, - STATE(2675), 1, + ACTIONS(2775), 1, + anon_sym_COLON_GT, + STATE(2063), 1, sym_decorator, - STATE(4434), 1, - aux_sym_tuple_repeat1, - ACTIONS(3665), 2, + ACTIONS(1906), 2, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(2747), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3669), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3687), 2, + ACTIONS(2769), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3681), 3, + ACTIONS(2763), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3683), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3663), 4, + ACTIONS(2745), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3691), 4, + ACTIONS(2773), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [147235] = 23, + ACTIONS(1908), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [105551] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1430), 1, + sym_type_identifier, + STATE(1499), 1, + sym__type_identifier, + STATE(1601), 1, + sym__non_function_inline_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1660), 1, + sym__inline_type, + STATE(1677), 1, + sym_function_type, + STATE(2064), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3188), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4135), 1, + sym_function_type_parameters, + STATE(4219), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [105654] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(729), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + anon_sym_LBRACK, + ACTIONS(2010), 1, + sym_unit_type, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1382), 1, + sym_type_identifier_path, + STATE(1386), 1, + sym__inline_type, + STATE(1405), 1, + sym_function_type, + STATE(1412), 1, + sym_type_identifier, + STATE(1443), 1, + sym__type_identifier, + STATE(1518), 1, + sym__non_function_inline_type, + STATE(2065), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3290), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3846), 1, + sym_module_primary_expression, + STATE(4081), 1, + sym_function_type_parameters, + STATE(4343), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2004), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1394), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [105757] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(2066), 1, + sym_decorator, + ACTIONS(2737), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1528), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, - ACTIONS(3620), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [105816] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(724), 1, + sym_type_identifier, + STATE(743), 1, + sym__type_identifier, + STATE(751), 1, + sym__inline_type, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(804), 1, + sym__non_function_inline_type, + STATE(2067), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3190), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4253), 1, + sym_abstract_type, + STATE(4357), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [105919] = 9, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + ACTIONS(2880), 1, + anon_sym_EQ_GT, + STATE(2068), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1396), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, anon_sym_PIPE_PIPE, - ACTIONS(3701), 1, - anon_sym_COMMA, - ACTIONS(3703), 1, - anon_sym_RBRACK, - STATE(2676), 1, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1398), 24, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [105982] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, + anon_sym_module, + ACTIONS(1610), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, + anon_sym_LBRACK, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(1961), 1, + anon_sym_LPAREN, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1027), 1, + sym__inline_type, + STATE(1035), 1, + sym_function_type, + STATE(1073), 1, + sym_type_identifier, + STATE(1199), 1, + sym__type_identifier, + STATE(1339), 1, + sym_type_identifier_path, + STATE(1360), 1, + sym__non_function_inline_type, + STATE(2069), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3255), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3682), 1, + sym_module_primary_expression, + STATE(4262), 1, + sym_abstract_type, + STATE(4390), 1, + sym_function_type_parameters, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [106085] = 29, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(743), 1, + sym__type_identifier, + STATE(786), 1, + sym__non_function_inline_type, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(791), 1, + sym__inline_type, + STATE(823), 1, + sym_type_identifier, + STATE(2070), 1, sym_decorator, - STATE(4332), 1, - aux_sym_array_repeat1, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2891), 1, + sym_module_identifier, + STATE(3265), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4181), 1, + sym_function_type_parameters, + STATE(4279), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [147320] = 23, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [106188] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(2749), 1, + anon_sym_QMARK, + ACTIONS(2753), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(2755), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, + ACTIONS(2757), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3705), 1, - anon_sym_COMMA, - ACTIONS(3707), 1, - anon_sym_RBRACK, - STATE(2677), 1, + ACTIONS(2761), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2767), 1, + anon_sym_STAR_STAR, + ACTIONS(2771), 1, + anon_sym_GT_GT, + ACTIONS(2775), 1, + anon_sym_COLON_GT, + STATE(2071), 1, sym_decorator, - STATE(4255), 1, - aux_sym_array_repeat1, - ACTIONS(3602), 2, + ACTIONS(1830), 2, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(2747), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2769), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(2763), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2745), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2773), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [147405] = 23, + ACTIONS(1832), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [106277] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3711), 1, - anon_sym_RBRACK, - STATE(2678), 1, + STATE(2072), 1, sym_decorator, - STATE(4384), 1, - aux_sym_array_repeat1, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(1852), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [147490] = 23, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3667), 1, + ACTIONS(1854), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3671), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3673), 1, - anon_sym_AMP_AMP, - ACTIONS(3675), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3679), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - ACTIONS(3689), 1, - anon_sym_GT_GT, - ACTIONS(3713), 1, - anon_sym_RPAREN, - ACTIONS(3715), 1, - anon_sym_COMMA, - STATE(2679), 1, - sym_decorator, - STATE(4230), 1, - aux_sym_tuple_repeat1, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3687), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3681), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3683), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3663), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3691), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [147575] = 23, + anon_sym_COLON_GT, + [106334] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, + ACTIONS(2653), 1, anon_sym_COLON_GT, - ACTIONS(3667), 1, - anon_sym_QMARK, - ACTIONS(3671), 1, + ACTIONS(2820), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3673), 1, + ACTIONS(2822), 1, anon_sym_AMP_AMP, - ACTIONS(3675), 1, + ACTIONS(2824), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3677), 1, + ACTIONS(2826), 1, anon_sym_PIPE_PIPE, - ACTIONS(3679), 1, + ACTIONS(2828), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, + ACTIONS(2834), 1, anon_sym_STAR_STAR, - ACTIONS(3689), 1, + ACTIONS(2838), 1, anon_sym_GT_GT, - ACTIONS(3717), 1, - anon_sym_RPAREN, - ACTIONS(3719), 1, - anon_sym_COMMA, - STATE(2680), 1, + ACTIONS(2842), 1, + anon_sym_QMARK, + STATE(2073), 1, sym_decorator, - STATE(4286), 1, - aux_sym_tuple_repeat1, - ACTIONS(3665), 2, + ACTIONS(2816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3669), 2, + ACTIONS(2818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3687), 2, + ACTIONS(2836), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3681), 3, + ACTIONS(2830), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3683), 3, + ACTIONS(2832), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3663), 4, + ACTIONS(2814), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3691), 4, + ACTIONS(2840), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [147660] = 21, + ACTIONS(1904), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [106421] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - STATE(2681), 1, + STATE(2074), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2027), 3, - anon_sym_RBRACE, + ACTIONS(1856), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1858), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3606), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [147741] = 21, + anon_sym_COLON_GT, + [106478] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1739), 1, - anon_sym_COLON, - ACTIONS(3431), 1, + ACTIONS(2749), 1, + anon_sym_QMARK, + ACTIONS(2753), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(2755), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(2757), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, + ACTIONS(2759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(2761), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2767), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2771), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, + ACTIONS(2775), 1, anon_sym_COLON_GT, - STATE(2682), 1, + STATE(2075), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(1860), 2, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(2747), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2751), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2769), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1737), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - ACTIONS(3441), 3, + ACTIONS(2763), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2765), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2745), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(2773), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [147822] = 23, + ACTIONS(1862), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [106567] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3721), 1, - anon_sym_COMMA, - ACTIONS(3723), 1, - anon_sym_RBRACK, - STATE(2683), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2187), 1, + anon_sym_LBRACE, + ACTIONS(2189), 1, + anon_sym_LPAREN, + ACTIONS(2195), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1430), 1, + sym_type_identifier, + STATE(1499), 1, + sym__type_identifier, + STATE(1601), 1, + sym__non_function_inline_type, + STATE(1618), 1, + sym_type_identifier_path, + STATE(1660), 1, + sym__inline_type, + STATE(1677), 1, + sym_function_type, + STATE(2076), 1, sym_decorator, - STATE(4354), 1, - aux_sym_array_repeat1, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2891), 1, + sym_module_identifier, + STATE(3266), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3854), 1, + sym_module_primary_expression, + STATE(4169), 1, + sym_function_type_parameters, + STATE(4281), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2197), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [147907] = 23, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1667), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [106670] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3725), 1, - anon_sym_COMMA, - ACTIONS(3727), 1, - anon_sym_RBRACK, - STATE(2684), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(683), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2203), 1, + sym__identifier, + ACTIONS(2205), 1, + anon_sym_LBRACE, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, + sym_unit_type, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(724), 1, + sym_type_identifier, + STATE(743), 1, + sym__type_identifier, + STATE(751), 1, + sym__inline_type, + STATE(787), 1, + sym_type_identifier_path, + STATE(789), 1, + sym_function_type, + STATE(804), 1, + sym__non_function_inline_type, + STATE(2077), 1, sym_decorator, - STATE(4356), 1, - aux_sym_array_repeat1, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2891), 1, + sym_module_identifier, + STATE(3268), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3775), 1, + sym_module_primary_expression, + STATE(4214), 1, + sym_function_type_parameters, + STATE(4283), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2215), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2219), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [147992] = 23, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(788), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [106773] = 29, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3667), 1, - anon_sym_QMARK, - ACTIONS(3671), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3673), 1, - anon_sym_AMP_AMP, - ACTIONS(3675), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3679), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - ACTIONS(3689), 1, - anon_sym_GT_GT, - ACTIONS(3729), 1, - anon_sym_RPAREN, - ACTIONS(3731), 1, - anon_sym_COMMA, - STATE(2685), 1, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(401), 1, + anon_sym_module, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2035), 1, + anon_sym_LBRACE, + ACTIONS(2037), 1, + anon_sym_LPAREN, + ACTIONS(2047), 1, + anon_sym_LBRACK, + ACTIONS(2053), 1, + sym_unit_type, + ACTIONS(2175), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(995), 1, + sym__inline_type, + STATE(2078), 1, sym_decorator, - STATE(4386), 1, - aux_sym_tuple_repeat1, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3687), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2841), 1, + sym_type_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2929), 1, + sym__type_identifier, + STATE(3100), 1, + sym_function_type, + STATE(3211), 1, + sym__non_function_inline_type, + STATE(3257), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3856), 1, + sym_module_primary_expression, + STATE(4106), 1, + sym_function_type_parameters, + STATE(4272), 1, + sym_abstract_type, + STATE(4392), 1, + sym__function_type_parameter_list, + ACTIONS(2049), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(2183), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3681), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3683), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3663), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3691), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [148077] = 23, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(3059), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [106876] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3733), 1, - anon_sym_COMMA, - ACTIONS(3735), 1, - anon_sym_RBRACK, - STATE(2686), 1, + STATE(2079), 1, sym_decorator, - STATE(4443), 1, - aux_sym_array_repeat1, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(1866), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [148162] = 23, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3667), 1, + ACTIONS(1868), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3671), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3673), 1, - anon_sym_AMP_AMP, - ACTIONS(3675), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3679), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - ACTIONS(3689), 1, - anon_sym_GT_GT, - ACTIONS(3737), 1, - anon_sym_RPAREN, - ACTIONS(3739), 1, - anon_sym_COMMA, - STATE(2687), 1, - sym_decorator, - STATE(4476), 1, - aux_sym_tuple_repeat1, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3687), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3681), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3683), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3663), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3691), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [148247] = 23, + anon_sym_COLON_GT, + [106933] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3667), 1, - anon_sym_QMARK, - ACTIONS(3671), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3673), 1, - anon_sym_AMP_AMP, - ACTIONS(3675), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3679), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - ACTIONS(3689), 1, - anon_sym_GT_GT, - ACTIONS(3741), 1, - anon_sym_RPAREN, - ACTIONS(3743), 1, - anon_sym_COMMA, - STATE(2688), 1, + STATE(2080), 1, sym_decorator, - STATE(4346), 1, - aux_sym_tuple_repeat1, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3687), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3681), 3, + ACTIONS(1794), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1796), 25, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3683), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3663), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3691), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [148332] = 15, + anon_sym_COLON_GT, + [106990] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - STATE(2689), 1, + STATE(2081), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2096), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1731), 3, + ACTIONS(1199), 13, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3423), 4, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - ACTIONS(1729), 7, + ACTIONS(1201), 23, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [148401] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3749), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3757), 1, - anon_sym_AMP_AMP, - ACTIONS(3759), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3763), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3769), 1, - anon_sym_STAR_STAR, - ACTIONS(3773), 1, - anon_sym_GT_GT, - ACTIONS(3777), 1, - anon_sym_COLON_GT, - STATE(2690), 1, - sym_decorator, - ACTIONS(3747), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3751), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3753), 2, - anon_sym_to, - anon_sym_downto, - ACTIONS(3771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3765), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3767), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3745), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3775), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [148481] = 22, + anon_sym_COLON_GT, + [107048] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2886), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3779), 1, - anon_sym_LBRACE, - STATE(1109), 1, - sym_block, - STATE(2691), 1, + STATE(2082), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(1810), 10, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(1812), 21, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [148563] = 15, + anon_sym_COLON_GT, + [107110] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3685), 1, + ACTIONS(2886), 1, anon_sym_STAR_STAR, - ACTIONS(3689), 1, + ACTIONS(2896), 1, anon_sym_GT_GT, - STATE(2692), 1, + STATE(2083), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3687), 2, + ACTIONS(2890), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2894), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3681), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3683), 3, + ACTIONS(1810), 3, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3663), 4, + ACTIONS(2892), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2888), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3691), 4, + ACTIONS(2898), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 7, + ACTIONS(1812), 12, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [148631] = 21, + [107184] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3749), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(2886), 1, + anon_sym_STAR_STAR, + ACTIONS(2896), 1, + anon_sym_GT_GT, + ACTIONS(2900), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3757), 1, - anon_sym_AMP_AMP, - ACTIONS(3759), 1, + ACTIONS(2902), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3763), 1, + ACTIONS(2904), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3769), 1, - anon_sym_STAR_STAR, - ACTIONS(3773), 1, - anon_sym_GT_GT, - ACTIONS(3777), 1, - anon_sym_COLON_GT, - STATE(2693), 1, + STATE(2084), 1, sym_decorator, - ACTIONS(3747), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3751), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3771), 2, + ACTIONS(2890), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2894), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3781), 2, - anon_sym_to, - anon_sym_downto, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3765), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3767), 3, + ACTIONS(1810), 3, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3745), 4, + ACTIONS(2892), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2888), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3775), 4, + ACTIONS(2898), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [148711] = 22, + ACTIONS(1812), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_GT, + [107264] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2886), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(2896), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(2900), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, + ACTIONS(2904), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3779), 1, - anon_sym_LBRACE, - STATE(1490), 1, - sym_block, - STATE(2694), 1, + STATE(2085), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2890), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2894), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(1810), 3, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [148793] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3667), 1, - anon_sym_QMARK, - ACTIONS(3671), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3673), 1, - anon_sym_AMP_AMP, - ACTIONS(3675), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3679), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - ACTIONS(3689), 1, - anon_sym_GT_GT, - STATE(2695), 1, - sym_decorator, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3687), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3693), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3681), 3, + ACTIONS(2892), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3683), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3663), 4, + ACTIONS(2888), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3691), 4, + ACTIONS(2898), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [148873] = 18, + ACTIONS(1812), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [107342] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3671), 1, + ACTIONS(2886), 1, + anon_sym_STAR_STAR, + ACTIONS(2896), 1, + anon_sym_GT_GT, + ACTIONS(2900), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3675), 1, + ACTIONS(2902), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3679), 1, + ACTIONS(2904), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - ACTIONS(3689), 1, - anon_sym_GT_GT, - STATE(2696), 1, - sym_decorator, - ACTIONS(1731), 2, + ACTIONS(2906), 1, anon_sym_AMP_AMP, + STATE(2086), 1, + sym_decorator, + ACTIONS(1810), 2, + anon_sym_COLON, anon_sym_PIPE_PIPE, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3687), 2, + ACTIONS(2890), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2894), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3681), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3683), 3, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1729), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_GT, - ACTIONS(3663), 4, + ACTIONS(2892), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2888), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3691), 4, + ACTIONS(2898), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [148947] = 17, + ACTIONS(1812), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_GT, + [107424] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3671), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3679), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, + ACTIONS(2886), 1, anon_sym_STAR_STAR, - ACTIONS(3689), 1, + ACTIONS(2896), 1, anon_sym_GT_GT, - STATE(2697), 1, - sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, + ACTIONS(2900), 1, + anon_sym_AMP_AMP_AMP, + STATE(2087), 1, + sym_decorator, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3687), 2, + ACTIONS(2890), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2894), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3681), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3683), 3, + ACTIONS(1810), 3, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3663), 4, + ACTIONS(2892), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2888), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3691), 4, + ACTIONS(2898), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 5, + ACTIONS(1812), 11, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [149019] = 22, + [107500] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2886), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3783), 1, - anon_sym_LBRACE, - STATE(2698), 1, + STATE(2088), 1, sym_decorator, - STATE(2979), 1, - sym_block, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(1810), 10, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(1812), 21, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [149101] = 22, + anon_sym_COLON_GT, + [107562] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2886), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3785), 1, - anon_sym_LBRACE, - STATE(1994), 1, - sym_block, - STATE(2699), 1, + STATE(2089), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2890), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2892), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 8, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(1812), 18, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [149183] = 22, + anon_sym_COLON_GT, + [107628] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, + ACTIONS(1902), 1, + anon_sym_COLON, + ACTIONS(2812), 1, anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2886), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(2896), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(2900), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, + ACTIONS(2902), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, + ACTIONS(2904), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(2906), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(2908), 1, anon_sym_QMARK, - ACTIONS(3637), 1, + ACTIONS(2910), 1, anon_sym_PIPE_PIPE, - ACTIONS(3787), 1, - anon_sym_LBRACE, - STATE(1917), 1, - sym_block, - STATE(2700), 1, + STATE(2090), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2890), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2894), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2892), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2888), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2898), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [149265] = 22, + ACTIONS(1904), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [107716] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, + ACTIONS(1906), 1, + anon_sym_COLON, + ACTIONS(2812), 1, anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2886), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(2896), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(2900), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, + ACTIONS(2902), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, + ACTIONS(2904), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(2906), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, + ACTIONS(2910), 1, anon_sym_PIPE_PIPE, - ACTIONS(3787), 1, - anon_sym_LBRACE, - STATE(2224), 1, - sym_block, - STATE(2701), 1, + STATE(2091), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2890), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2894), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2892), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2888), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2898), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [149347] = 21, + ACTIONS(1908), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [107802] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3667), 1, - anon_sym_QMARK, - ACTIONS(3671), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3673), 1, - anon_sym_AMP_AMP, - ACTIONS(3675), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3679), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - ACTIONS(3689), 1, - anon_sym_GT_GT, - STATE(2702), 1, + STATE(2092), 1, sym_decorator, - ACTIONS(3665), 2, + STATE(2105), 1, + aux_sym_variant_type_repeat1, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1247), 12, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3669), 2, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3687), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3789), 2, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1249), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3681), 3, + anon_sym_and, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3683), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3663), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3691), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [149427] = 22, + anon_sym_COLON_GT, + [107860] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3791), 1, - anon_sym_LBRACE, - STATE(951), 1, - sym_block, - STATE(2703), 1, + ACTIONS(2741), 1, + anon_sym_EQ_GT, + STATE(2093), 1, sym_decorator, - ACTIONS(3602), 2, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1396), 11, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + anon_sym_GT, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3612), 2, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1398), 25, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [107918] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2912), 1, + anon_sym_PIPE, + STATE(2094), 1, + sym_decorator, + STATE(2096), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(1193), 12, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1195), 23, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [149509] = 19, + anon_sym_COLON_GT, + [107978] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3671), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3673), 1, - anon_sym_AMP_AMP, - ACTIONS(3675), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3679), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - ACTIONS(3689), 1, - anon_sym_GT_GT, - STATE(2704), 1, + ACTIONS(2912), 1, + anon_sym_PIPE, + STATE(2095), 1, sym_decorator, - ACTIONS(3665), 2, + STATE(2096), 1, + aux_sym_variant_type_repeat1, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1199), 12, + anon_sym_COLON, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3669), 2, + anon_sym_GT, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3687), 2, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1201), 23, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [108038] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2914), 1, + anon_sym_PIPE, + STATE(2096), 2, + sym_decorator, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3681), 3, + ACTIONS(1203), 12, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1205), 23, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3683), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(1729), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_GT, - ACTIONS(3663), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3691), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [149585] = 11, + anon_sym_COLON_GT, + [108096] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - STATE(2705), 1, + ACTIONS(2912), 1, + anon_sym_PIPE, + STATE(2094), 1, + aux_sym_variant_type_repeat1, + STATE(2097), 1, sym_decorator, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3681), 3, + ACTIONS(1247), 12, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1249), 23, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3683), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(1731), 7, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [108156] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2912), 1, + anon_sym_PIPE, + STATE(2095), 1, + aux_sym_variant_type_repeat1, + STATE(2098), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1193), 12, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 13, + ACTIONS(1195), 23, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -221380,744 +179228,941 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [149645] = 22, + [108216] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_LBRACE, - STATE(761), 1, - sym_block, - STATE(2706), 1, + STATE(2096), 1, + aux_sym_variant_type_repeat1, + STATE(2099), 1, sym_decorator, - ACTIONS(3602), 2, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1193), 13, + anon_sym_COLON, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3612), 2, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1195), 23, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [108274] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2917), 1, + anon_sym_PIPE, + STATE(2100), 1, + sym_decorator, + STATE(2115), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(1247), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1249), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [149727] = 21, + anon_sym_COLON_GT, + [108334] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2886), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(2896), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - STATE(2707), 1, + STATE(2101), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2890), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2894), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3795), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2892), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 7, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(1812), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [149807] = 22, + anon_sym_COLON_GT, + [108404] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, + ACTIONS(1830), 1, + anon_sym_COLON, + ACTIONS(2812), 1, anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2886), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(2896), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(2900), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, + ACTIONS(2902), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, + ACTIONS(2904), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(2906), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(2908), 1, anon_sym_QMARK, - ACTIONS(3637), 1, + ACTIONS(2910), 1, anon_sym_PIPE_PIPE, - ACTIONS(3797), 1, - anon_sym_LBRACE, - STATE(1491), 1, - sym_block, - STATE(2708), 1, + STATE(2102), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2890), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2894), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2892), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2888), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2898), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [149889] = 21, + ACTIONS(1832), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [108492] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3749), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3757), 1, - anon_sym_AMP_AMP, - ACTIONS(3759), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3763), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3769), 1, - anon_sym_STAR_STAR, - ACTIONS(3773), 1, - anon_sym_GT_GT, - ACTIONS(3777), 1, - anon_sym_COLON_GT, - STATE(2709), 1, + ACTIONS(2743), 1, + anon_sym_COLON, + STATE(1666), 1, + sym_type_annotation, + STATE(2103), 1, sym_decorator, - ACTIONS(3747), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3751), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3799), 2, - anon_sym_to, - anon_sym_downto, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3765), 3, + ACTIONS(1156), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1158), 23, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3767), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3745), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3775), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [149969] = 20, + anon_sym_COLON_GT, + [108552] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3671), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3673), 1, - anon_sym_AMP_AMP, - ACTIONS(3675), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3679), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - ACTIONS(3689), 1, - anon_sym_GT_GT, - STATE(2710), 1, + ACTIONS(2333), 1, + anon_sym_LPAREN, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_LBRACK, + STATE(1085), 1, + sym_call_arguments, + STATE(2104), 1, sym_decorator, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3687), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2919), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1737), 3, + ACTIONS(1528), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, - ACTIONS(3681), 3, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3683), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3663), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3691), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [150047] = 22, + anon_sym_COLON_GT, + [108618] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3791), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_block, - STATE(2711), 1, + STATE(2105), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(2117), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(1193), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1195), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [150129] = 21, + anon_sym_COLON_GT, + [108676] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - STATE(2712), 1, + STATE(2106), 1, sym_decorator, - ACTIONS(3602), 2, + STATE(2117), 1, + aux_sym_variant_type_repeat1, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1199), 12, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3801), 2, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1201), 24, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3606), 3, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [150209] = 21, + anon_sym_COLON_GT, + [108734] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, + ACTIONS(1860), 1, + anon_sym_COLON, + ACTIONS(2812), 1, anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2886), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(2896), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(2900), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, + ACTIONS(2902), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, + ACTIONS(2904), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(2906), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(2908), 1, anon_sym_QMARK, - ACTIONS(3637), 1, + ACTIONS(2910), 1, anon_sym_PIPE_PIPE, - STATE(2713), 1, + STATE(2107), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2890), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2894), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3803), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2892), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2888), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2898), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [150289] = 16, + ACTIONS(1862), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [108822] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3671), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - ACTIONS(3689), 1, - anon_sym_GT_GT, - STATE(2714), 1, + STATE(2108), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3687), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2876), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3681), 3, + ACTIONS(1528), 12, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 23, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3683), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3663), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3691), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [150359] = 21, + [108880] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3749), 1, + ACTIONS(2917), 1, + anon_sym_PIPE, + STATE(2109), 1, + sym_decorator, + STATE(2117), 1, + aux_sym_variant_type_repeat1, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1199), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1201), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, anon_sym_QMARK, - ACTIONS(3755), 1, + anon_sym_as, anon_sym_AMP_AMP_AMP, - ACTIONS(3757), 1, - anon_sym_AMP_AMP, - ACTIONS(3759), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3763), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3769), 1, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3773), 1, - anon_sym_GT_GT, - ACTIONS(3777), 1, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_COLON_GT, - STATE(2715), 1, + [108940] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2917), 1, + anon_sym_PIPE, + STATE(2109), 1, + aux_sym_variant_type_repeat1, + STATE(2110), 1, sym_decorator, - ACTIONS(3747), 2, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1193), 11, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3751), 2, + anon_sym_GT, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3771), 2, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1195), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3805), 2, - anon_sym_to, - anon_sym_downto, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [109000] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(2106), 1, + aux_sym_variant_type_repeat1, + STATE(2111), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3765), 3, + ACTIONS(1193), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1195), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3767), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3745), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3775), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [150439] = 22, + anon_sym_COLON_GT, + [109058] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, + ACTIONS(1870), 1, + anon_sym_COLON, + ACTIONS(2812), 1, anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2886), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(2896), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(2900), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, + ACTIONS(2902), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, + ACTIONS(2904), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(2906), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(2908), 1, anon_sym_QMARK, - ACTIONS(3637), 1, + ACTIONS(2910), 1, anon_sym_PIPE_PIPE, - ACTIONS(3797), 1, - anon_sym_LBRACE, - STATE(1813), 1, - sym_block, - STATE(2716), 1, + STATE(2112), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2890), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2894), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2892), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2888), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2898), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [150521] = 13, + ACTIONS(1872), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [109146] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - ACTIONS(3689), 1, - anon_sym_GT_GT, - STATE(2717), 1, + ACTIONS(2647), 1, + anon_sym_EQ_GT, + STATE(2113), 1, sym_decorator, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3687), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3681), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3683), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 6, + ACTIONS(1396), 11, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 11, + ACTIONS(1398), 25, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [150585] = 9, + [109204] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3685), 1, + ACTIONS(1874), 1, + anon_sym_COLON, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(2886), 1, anon_sym_STAR_STAR, - STATE(2718), 1, + ACTIONS(2896), 1, + anon_sym_GT_GT, + ACTIONS(2900), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2902), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2904), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2906), 1, + anon_sym_AMP_AMP, + ACTIONS(2908), 1, + anon_sym_QMARK, + ACTIONS(2910), 1, + anon_sym_PIPE_PIPE, + STATE(2114), 1, sym_decorator, - ACTIONS(3669), 2, + ACTIONS(2882), 2, anon_sym_SLASH, anon_sym_STAR, + ACTIONS(2890), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2894), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3683), 3, + ACTIONS(2884), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(2892), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2888), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2898), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1876), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [109292] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2917), 1, + anon_sym_PIPE, + STATE(2115), 1, + sym_decorator, + STATE(2117), 1, + aux_sym_variant_type_repeat1, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1193), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 16, + ACTIONS(1195), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_and, anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -222125,46 +180170,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [150641] = 9, + [109352] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3769), 1, - anon_sym_STAR_STAR, - STATE(2719), 1, + ACTIONS(1400), 1, + anon_sym_EQ, + ACTIONS(1404), 1, + anon_sym_COLON_EQ, + STATE(2116), 1, sym_decorator, - ACTIONS(3751), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3767), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1396), 11, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 16, + ACTIONS(1398), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_to, - anon_sym_downto, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -222172,430 +180222,369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [150697] = 15, + [109412] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3769), 1, - anon_sym_STAR_STAR, - ACTIONS(3773), 1, - anon_sym_GT_GT, - STATE(2720), 1, + ACTIONS(2921), 1, + anon_sym_PIPE, + STATE(2117), 2, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3747), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3751), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3765), 3, + ACTIONS(1203), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1205), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3767), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3745), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3775), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 7, - anon_sym_QMARK, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [150765] = 18, + [109470] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3755), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3759), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3763), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3769), 1, - anon_sym_STAR_STAR, - ACTIONS(3773), 1, - anon_sym_GT_GT, - STATE(2721), 1, + STATE(2099), 1, + aux_sym_variant_type_repeat1, + STATE(2118), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3747), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3751), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3765), 3, + ACTIONS(1247), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1249), 23, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3767), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(1729), 4, - anon_sym_QMARK, - anon_sym_to, - anon_sym_downto, - anon_sym_COLON_GT, - ACTIONS(3745), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3775), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [150839] = 17, + anon_sym_COLON_GT, + [109528] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3755), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3763), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3769), 1, - anon_sym_STAR_STAR, - ACTIONS(3773), 1, - anon_sym_GT_GT, - STATE(2722), 1, + STATE(2081), 1, + aux_sym_variant_type_repeat1, + STATE(2119), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3747), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3751), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3765), 3, + ACTIONS(1193), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1195), 23, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3767), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3745), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3775), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 5, - anon_sym_QMARK, - anon_sym_to, - anon_sym_downto, - anon_sym_PIPE_PIPE_PIPE, anon_sym_COLON_GT, - [150911] = 19, + [109586] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3755), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3757), 1, - anon_sym_AMP_AMP, - ACTIONS(3759), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3763), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3769), 1, - anon_sym_STAR_STAR, - ACTIONS(3773), 1, - anon_sym_GT_GT, - STATE(2723), 1, + ACTIONS(2600), 1, + sym_regex_flags, + STATE(2120), 1, sym_decorator, - ACTIONS(3747), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3751), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3765), 3, + ACTIONS(1501), 13, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1503), 23, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3767), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(1729), 4, - anon_sym_QMARK, - anon_sym_to, - anon_sym_downto, - anon_sym_COLON_GT, - ACTIONS(3745), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3775), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [150987] = 22, + anon_sym_COLON_GT, + [109644] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3807), 1, - anon_sym_LBRACE, - STATE(1520), 1, - sym_block, - STATE(2724), 1, + ACTIONS(2333), 1, + anon_sym_LPAREN, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_LBRACK, + STATE(1085), 1, + sym_call_arguments, + STATE(2121), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2924), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(1528), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 20, + anon_sym_QMARK, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [151069] = 16, + anon_sym_COLON_GT, + [109710] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3755), 1, + ACTIONS(2932), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3769), 1, + ACTIONS(2934), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2942), 1, anon_sym_STAR_STAR, - ACTIONS(3773), 1, + ACTIONS(2946), 1, anon_sym_GT_GT, - STATE(2725), 1, + STATE(2122), 1, sym_decorator, - ACTIONS(1731), 2, + ACTIONS(1810), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3747), 2, + ACTIONS(2928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3751), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3771), 2, + ACTIONS(2944), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3765), 3, + ACTIONS(2938), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3767), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3745), 4, + ACTIONS(2926), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3775), 4, + ACTIONS(2948), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 6, + ACTIONS(1812), 9, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_to, anon_sym_downto, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [151139] = 9, + [109789] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3769), 1, - anon_sym_STAR_STAR, - STATE(2726), 1, + STATE(2123), 1, sym_decorator, - ACTIONS(3751), 2, - anon_sym_SLASH, - anon_sym_STAR, + STATE(2146), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3767), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1199), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 16, + ACTIONS(1201), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - anon_sym_to, - anon_sym_downto, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_GT, - [151195] = 11, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3769), 1, - anon_sym_STAR_STAR, - STATE(2727), 1, - sym_decorator, - ACTIONS(3747), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3751), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3765), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3767), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(1731), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1729), 13, - anon_sym_QMARK, - anon_sym_to, - anon_sym_downto, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -222603,344 +180592,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [151255] = 22, + [109846] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(2956), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, + ACTIONS(2958), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, + ACTIONS(2960), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(2966), 1, + anon_sym_STAR_STAR, + ACTIONS(2970), 1, + anon_sym_GT_GT, + STATE(2124), 1, + sym_decorator, + ACTIONS(1810), 2, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, anon_sym_PIPE_PIPE, - ACTIONS(3807), 1, - anon_sym_LBRACE, - STATE(1910), 1, - sym_block, - STATE(2728), 1, - sym_decorator, - ACTIONS(3602), 2, + ACTIONS(2952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2968), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(2962), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2950), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2972), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [151337] = 22, + ACTIONS(1812), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_GT, + [109925] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(2956), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, + ACTIONS(2960), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(2966), 1, + anon_sym_STAR_STAR, + ACTIONS(2970), 1, + anon_sym_GT_GT, + STATE(2125), 1, + sym_decorator, + ACTIONS(1810), 2, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, anon_sym_PIPE_PIPE, - ACTIONS(3779), 1, - anon_sym_LBRACE, - STATE(1397), 1, - sym_block, - STATE(2729), 1, - sym_decorator, - ACTIONS(3602), 2, + ACTIONS(2952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2968), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(2962), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2950), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2972), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [151419] = 22, + ACTIONS(1812), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [110002] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(1810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2956), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, + ACTIONS(2958), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, + ACTIONS(2960), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(2966), 1, + anon_sym_STAR_STAR, + ACTIONS(2970), 1, + anon_sym_GT_GT, + ACTIONS(2974), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3779), 1, - anon_sym_LBRACE, - STATE(1484), 1, - sym_block, - STATE(2730), 1, + STATE(2126), 1, sym_decorator, - ACTIONS(3602), 2, + ACTIONS(2952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2968), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(2962), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2950), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2972), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [151501] = 21, + ACTIONS(1812), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_GT, + [110083] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2956), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2966), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(2970), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + STATE(2127), 1, + sym_decorator, + ACTIONS(1810), 2, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, anon_sym_PIPE_PIPE, - STATE(2731), 1, - sym_decorator, - ACTIONS(3602), 2, + ACTIONS(2952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2968), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3809), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(2962), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2950), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2972), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [151581] = 21, + ACTIONS(1812), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [110158] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - STATE(2732), 1, + ACTIONS(2976), 1, + anon_sym_PIPE, + STATE(2128), 1, sym_decorator, - ACTIONS(3602), 2, + STATE(2146), 1, + aux_sym_variant_type_repeat1, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1193), 12, + anon_sym_COLON, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + anon_sym_GT, anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3811), 2, - anon_sym_RBRACE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1195), 22, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3606), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [151661] = 9, + anon_sym_COLON_GT, + [110217] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - STATE(2733), 1, + ACTIONS(2976), 1, + anon_sym_PIPE, + STATE(2128), 1, + aux_sym_variant_type_repeat1, + STATE(2129), 1, sym_decorator, - ACTIONS(3669), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3683), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1247), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 16, + ACTIONS(1249), 22, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -222948,1266 +180936,1200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [151717] = 21, + [110276] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3667), 1, - anon_sym_QMARK, - ACTIONS(3671), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3673), 1, - anon_sym_AMP_AMP, - ACTIONS(3675), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3679), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3685), 1, - anon_sym_STAR_STAR, - ACTIONS(3689), 1, - anon_sym_GT_GT, - STATE(2734), 1, + ACTIONS(2333), 1, + anon_sym_LPAREN, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_LBRACK, + STATE(1085), 1, + sym_call_arguments, + STATE(2130), 1, sym_decorator, - ACTIONS(1733), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3665), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3669), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3687), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2978), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3681), 3, + ACTIONS(1528), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 19, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3683), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3663), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3691), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [151797] = 22, + anon_sym_COLON_GT, + [110341] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3783), 1, - anon_sym_LBRACE, - STATE(2735), 1, + STATE(2131), 1, sym_decorator, - STATE(2915), 1, - sym_block, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2924), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(1528), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 23, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [151879] = 22, + anon_sym_COLON_GT, + [110398] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3785), 1, - anon_sym_LBRACE, - STATE(1997), 1, - sym_block, - STATE(2736), 1, + ACTIONS(2880), 1, + anon_sym_EQ_GT, + STATE(2132), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(1396), 11, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [151961] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3749), 1, + ACTIONS(1398), 24, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3755), 1, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3757), 1, - anon_sym_AMP_AMP, - ACTIONS(3759), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3763), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3769), 1, - anon_sym_STAR_STAR, - ACTIONS(3773), 1, - anon_sym_GT_GT, - ACTIONS(3777), 1, - anon_sym_COLON_GT, - STATE(2737), 1, - sym_decorator, - ACTIONS(1733), 2, - anon_sym_to, - anon_sym_downto, - ACTIONS(3747), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3751), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3765), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3767), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3745), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3775), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [152041] = 20, + anon_sym_COLON_GT, + [110455] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3755), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3757), 1, - anon_sym_AMP_AMP, - ACTIONS(3759), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3763), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3769), 1, - anon_sym_STAR_STAR, - ACTIONS(3773), 1, - anon_sym_GT_GT, - ACTIONS(3777), 1, - anon_sym_COLON_GT, - STATE(2738), 1, + STATE(2133), 1, sym_decorator, - ACTIONS(3747), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3751), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2919), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1737), 3, + ACTIONS(1528), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 23, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_to, - anon_sym_downto, - ACTIONS(3765), 3, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3767), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3745), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3775), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [152119] = 22, + anon_sym_COLON_GT, + [110512] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2942), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(2946), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3797), 1, - anon_sym_LBRACE, - STATE(1718), 1, - sym_block, - STATE(2739), 1, + STATE(2134), 1, sym_decorator, - ACTIONS(3602), 2, + ACTIONS(2928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2944), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(2938), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(1810), 6, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(1812), 16, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [152201] = 22, + anon_sym_COLON_GT, + [110581] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2942), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3797), 1, - anon_sym_LBRACE, - STATE(1876), 1, - sym_block, - STATE(2740), 1, + STATE(2135), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(1810), 9, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(1812), 21, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [152283] = 21, + anon_sym_COLON_GT, + [110642] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2942), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(2946), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + STATE(2136), 1, + sym_decorator, + ACTIONS(1810), 2, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, anon_sym_PIPE_PIPE, - STATE(2741), 1, - sym_decorator, - ACTIONS(3602), 2, + ACTIONS(2928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2944), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3813), 2, - anon_sym_COMMA, - anon_sym_RBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(2938), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2926), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2948), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [152363] = 21, + ACTIONS(1812), 12, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [110715] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3749), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(2932), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3757), 1, - anon_sym_AMP_AMP, - ACTIONS(3759), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3763), 1, + ACTIONS(2936), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3769), 1, + ACTIONS(2942), 1, anon_sym_STAR_STAR, - ACTIONS(3773), 1, + ACTIONS(2946), 1, anon_sym_GT_GT, - ACTIONS(3777), 1, - anon_sym_COLON_GT, - STATE(2742), 1, + STATE(2137), 1, sym_decorator, - ACTIONS(3747), 2, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3751), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3771), 2, + ACTIONS(2944), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3815), 2, - anon_sym_to, - anon_sym_downto, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3765), 3, + ACTIONS(2938), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3767), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3745), 4, + ACTIONS(2926), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3775), 4, + ACTIONS(2948), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [152443] = 22, + ACTIONS(1812), 10, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [110792] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(1810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2932), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, + ACTIONS(2934), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, + ACTIONS(2936), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(2942), 1, + anon_sym_STAR_STAR, + ACTIONS(2946), 1, + anon_sym_GT_GT, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3787), 1, - anon_sym_LBRACE, - STATE(1572), 1, - sym_block, - STATE(2743), 1, + STATE(2138), 1, sym_decorator, - ACTIONS(3602), 2, + ACTIONS(2928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2944), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(2938), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2926), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2948), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [152525] = 22, + ACTIONS(1812), 9, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + anon_sym_COLON_GT, + [110873] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2932), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2942), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(2946), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + STATE(2139), 1, + sym_decorator, + ACTIONS(1810), 2, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, anon_sym_PIPE_PIPE, - ACTIONS(3793), 1, - anon_sym_LBRACE, - STATE(871), 1, - sym_block, - STATE(2744), 1, - sym_decorator, - ACTIONS(3602), 2, + ACTIONS(2928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(2944), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(2938), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2926), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(2948), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [152607] = 22, + ACTIONS(1812), 11, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [110948] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(2942), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3787), 1, - anon_sym_LBRACE, - STATE(2209), 1, - sym_block, - STATE(2745), 1, + STATE(2140), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(1810), 9, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(1812), 21, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [152689] = 13, + anon_sym_COLON_GT, + [111009] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3769), 1, + ACTIONS(2942), 1, anon_sym_STAR_STAR, - ACTIONS(3773), 1, - anon_sym_GT_GT, - STATE(2746), 1, + STATE(2141), 1, sym_decorator, - ACTIONS(3747), 2, + ACTIONS(2928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3751), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3771), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3765), 3, + ACTIONS(2938), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3767), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 6, + ACTIONS(1810), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 11, + ACTIONS(1812), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_to, anon_sym_downto, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [152753] = 21, + [111074] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3821), 1, - anon_sym_QMARK, - ACTIONS(3823), 1, - anon_sym_catch, - ACTIONS(3827), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(2932), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3829), 1, - anon_sym_AMP_AMP, - ACTIONS(3831), 1, + ACTIONS(2934), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3833), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3835), 1, + ACTIONS(2936), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3841), 1, + ACTIONS(2942), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(2946), 1, anon_sym_GT_GT, - ACTIONS(3849), 1, - anon_sym_COLON_GT, - STATE(2747), 1, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2982), 1, + anon_sym_QMARK, + ACTIONS(2984), 1, + anon_sym_PIPE_PIPE, + STATE(2142), 1, sym_decorator, - ACTIONS(3819), 2, + ACTIONS(2928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3825), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3843), 2, + ACTIONS(2944), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3837), 3, + ACTIONS(2938), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3839), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3817), 4, + ACTIONS(2926), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3847), 4, + ACTIONS(2948), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [152832] = 21, + ACTIONS(1904), 7, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + [111159] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2966), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2970), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3851), 1, - anon_sym_COLON, - STATE(2748), 1, + STATE(2143), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2968), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2962), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2950), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(2972), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [152911] = 21, + ACTIONS(1812), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [111232] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(2932), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(2934), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(2936), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2942), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2946), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3853), 1, - anon_sym_COLON, - STATE(2749), 1, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2984), 1, + anon_sym_PIPE_PIPE, + STATE(2144), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(2928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2944), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2938), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2926), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(2948), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [152990] = 21, + ACTIONS(1908), 8, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + [111315] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3855), 1, + ACTIONS(1465), 1, anon_sym_COLON, - STATE(2750), 1, + ACTIONS(2986), 1, + anon_sym_EQ_GT, + STATE(2145), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(1385), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1387), 23, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [153069] = 21, + anon_sym_COLON_GT, + [111374] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, + ACTIONS(2989), 1, + anon_sym_PIPE, + STATE(2146), 2, + sym_decorator, + aux_sym_variant_type_repeat1, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1203), 12, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1205), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - ACTIONS(3431), 1, + anon_sym_as, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_COLON_GT, - ACTIONS(3857), 1, + [111431] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2878), 1, anon_sym_COLON, - STATE(2751), 1, + STATE(1666), 1, + sym_type_annotation, + STATE(2147), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(1156), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1158), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3451), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [153148] = 21, + anon_sym_COLON_GT, + [111490] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3821), 1, - anon_sym_QMARK, - ACTIONS(3827), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3829), 1, - anon_sym_AMP_AMP, - ACTIONS(3831), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3833), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3835), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3841), 1, + ACTIONS(2966), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, - anon_sym_GT_GT, - ACTIONS(3849), 1, - anon_sym_COLON_GT, - ACTIONS(3859), 1, - anon_sym_catch, - STATE(2752), 1, + STATE(2148), 1, sym_decorator, - ACTIONS(3819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3825), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3843), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3837), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3839), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3817), 4, + ACTIONS(1810), 9, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3847), 4, + ACTIONS(1812), 21, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [153227] = 21, + anon_sym_COLON_GT, + [111551] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3861), 1, - anon_sym_LBRACE, - STATE(2753), 1, + ACTIONS(2600), 1, + sym_regex_flags, + STATE(2149), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(1501), 12, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_catch, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1503), 23, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [153306] = 13, + anon_sym_COLON_GT, + [111608] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3841), 1, - anon_sym_STAR_STAR, - ACTIONS(3845), 1, - anon_sym_GT_GT, - STATE(2754), 1, + ACTIONS(2333), 1, + anon_sym_LPAREN, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_LBRACK, + STATE(1085), 1, + sym_call_arguments, + STATE(2150), 1, sym_decorator, - ACTIONS(3819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3825), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3843), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2992), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3837), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3839), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 6, + ACTIONS(1528), 11, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 10, + ACTIONS(1530), 19, anon_sym_QMARK, anon_sym_catch, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [153369] = 9, + [111673] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3841), 1, - anon_sym_STAR_STAR, - STATE(2755), 1, + ACTIONS(2976), 1, + anon_sym_PIPE, + STATE(2151), 1, sym_decorator, - ACTIONS(3825), 2, - anon_sym_SLASH, - anon_sym_STAR, + STATE(2168), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3839), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1193), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 15, + ACTIONS(1195), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - anon_sym_catch, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -224215,373 +182137,415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [153424] = 21, + [111732] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2966), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3863), 1, - anon_sym_COLON, - STATE(2756), 1, + STATE(2152), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(2952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2962), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(1810), 7, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(1812), 18, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [153503] = 15, + anon_sym_COLON_GT, + [111797] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3841), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(2956), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2958), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2960), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2966), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(2970), 1, anon_sym_GT_GT, - STATE(2757), 1, - sym_decorator, - ACTIONS(1731), 2, + ACTIONS(2974), 1, anon_sym_AMP_AMP, + ACTIONS(2994), 1, + anon_sym_QMARK, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(3819), 2, + STATE(2153), 1, + sym_decorator, + ACTIONS(2952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3825), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3843), 2, + ACTIONS(2968), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3837), 3, + ACTIONS(2962), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3839), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3817), 4, + ACTIONS(2950), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3847), 4, + ACTIONS(2972), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 6, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [153570] = 18, + ACTIONS(1904), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [111882] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3827), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3831), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3835), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3841), 1, + ACTIONS(2966), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(2970), 1, anon_sym_GT_GT, - STATE(2758), 1, + STATE(2154), 1, sym_decorator, - ACTIONS(1731), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3819), 2, + ACTIONS(2952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3825), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3843), 2, + ACTIONS(2968), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1729), 3, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_COLON_GT, - ACTIONS(3837), 3, + ACTIONS(2962), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3839), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3817), 4, + ACTIONS(1810), 6, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3847), 4, + ACTIONS(1812), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [153643] = 17, + anon_sym_COLON_GT, + [111951] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3827), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(2956), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3835), 1, + ACTIONS(2958), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2960), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3841), 1, + ACTIONS(2966), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(2970), 1, anon_sym_GT_GT, - STATE(2759), 1, - sym_decorator, - ACTIONS(1731), 2, + ACTIONS(2974), 1, anon_sym_AMP_AMP, + ACTIONS(2994), 1, + anon_sym_QMARK, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(3819), 2, + STATE(2155), 1, + sym_decorator, + ACTIONS(2952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3825), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3843), 2, + ACTIONS(2968), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3837), 3, + ACTIONS(2962), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3839), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1729), 4, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - ACTIONS(3817), 4, + ACTIONS(2950), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3847), 4, + ACTIONS(2972), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [153714] = 19, + ACTIONS(1832), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [112036] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3827), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(2956), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3829), 1, - anon_sym_AMP_AMP, - ACTIONS(3831), 1, + ACTIONS(2958), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3835), 1, + ACTIONS(2960), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3841), 1, + ACTIONS(2966), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(2970), 1, anon_sym_GT_GT, - STATE(2760), 1, + ACTIONS(2974), 1, + anon_sym_AMP_AMP, + ACTIONS(2994), 1, + anon_sym_QMARK, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + STATE(2156), 1, sym_decorator, - ACTIONS(3819), 2, + ACTIONS(2952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3825), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3843), 2, + ACTIONS(2968), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1729), 3, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_COLON_GT, - ACTIONS(3837), 3, + ACTIONS(2962), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3839), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3817), 4, + ACTIONS(2950), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3847), 4, + ACTIONS(2972), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [153789] = 16, + ACTIONS(1862), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [112121] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3827), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(2956), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3841), 1, + ACTIONS(2958), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2960), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2966), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(2970), 1, anon_sym_GT_GT, - STATE(2761), 1, - sym_decorator, - ACTIONS(1731), 2, + ACTIONS(2974), 1, anon_sym_AMP_AMP, + ACTIONS(2994), 1, + anon_sym_QMARK, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(3819), 2, + STATE(2157), 1, + sym_decorator, + ACTIONS(2952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3825), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3843), 2, + ACTIONS(2968), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3837), 3, + ACTIONS(2962), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3839), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3817), 4, + ACTIONS(2950), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3847), 4, + ACTIONS(2972), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 5, - anon_sym_QMARK, - anon_sym_catch, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, - anon_sym_COLON_GT, - [153858] = 9, + ACTIONS(1872), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [112206] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3841), 1, - anon_sym_STAR_STAR, - STATE(2762), 1, + STATE(2158), 1, sym_decorator, - ACTIONS(3825), 2, - anon_sym_SLASH, - anon_sym_STAR, + STATE(2163), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3839), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1247), 13, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 15, + ACTIONS(1249), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - anon_sym_catch, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -224589,47 +182553,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [153913] = 11, + [112263] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3841), 1, - anon_sym_STAR_STAR, - STATE(2763), 1, + STATE(2123), 1, + aux_sym_variant_type_repeat1, + STATE(2159), 1, sym_decorator, - ACTIONS(3819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3825), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3837), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3839), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 7, + ACTIONS(1193), 13, + anon_sym_COLON, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 12, + ACTIONS(1195), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - anon_sym_catch, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -224637,385 +182603,535 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [153972] = 21, + [112320] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(2956), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(2958), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(2960), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2966), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2970), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3865), 1, - anon_sym_COLON, - STATE(2764), 1, + ACTIONS(2974), 1, + anon_sym_AMP_AMP, + ACTIONS(2994), 1, + anon_sym_QMARK, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + STATE(2160), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(2952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2968), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2962), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2950), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(2972), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [154051] = 21, + ACTIONS(1876), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [112405] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(2956), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(2958), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(2960), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2966), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2970), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3867), 1, - anon_sym_COLON, - STATE(2765), 1, + ACTIONS(2974), 1, + anon_sym_AMP_AMP, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + STATE(2161), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(2952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2954), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2968), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2962), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2964), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2950), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(2972), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [154130] = 21, + ACTIONS(1908), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [112488] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3869), 1, - anon_sym_EQ_GT, - ACTIONS(3875), 1, + ACTIONS(2966), 1, + anon_sym_STAR_STAR, + STATE(2162), 1, + sym_decorator, + ACTIONS(2954), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2964), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 21, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3879), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3881), 1, - anon_sym_AMP_AMP, - ACTIONS(3883), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3885), 1, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [112549] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(2146), 1, + aux_sym_variant_type_repeat1, + STATE(2163), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1193), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3887), 1, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1195), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - ACTIONS(3893), 1, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(3897), 1, - anon_sym_GT_GT, - ACTIONS(3901), 1, + anon_sym_SLASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_COLON_GT, - STATE(2766), 1, + [112606] = 21, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(2932), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2934), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2942), 1, + anon_sym_STAR_STAR, + ACTIONS(2946), 1, + anon_sym_GT_GT, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2982), 1, + anon_sym_QMARK, + ACTIONS(2984), 1, + anon_sym_PIPE_PIPE, + STATE(2164), 1, sym_decorator, - ACTIONS(3873), 2, + ACTIONS(2928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3877), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3895), 2, + ACTIONS(2944), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3889), 3, + ACTIONS(2938), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3891), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3871), 4, + ACTIONS(2926), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3899), 4, + ACTIONS(2948), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [154209] = 21, + ACTIONS(1832), 7, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + [112691] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(2932), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(2934), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(2936), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2942), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2946), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3903), 1, - anon_sym_COLON, - STATE(2767), 1, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2982), 1, + anon_sym_QMARK, + ACTIONS(2984), 1, + anon_sym_PIPE_PIPE, + STATE(2165), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(2928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2944), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2938), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2926), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(2948), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [154288] = 21, + ACTIONS(1862), 7, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + [112776] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(2932), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(2934), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(2936), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2942), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2946), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3905), 1, - anon_sym_COLON, - STATE(2768), 1, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2982), 1, + anon_sym_QMARK, + ACTIONS(2984), 1, + anon_sym_PIPE_PIPE, + STATE(2166), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(2928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2944), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2938), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2926), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(2948), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [154367] = 13, + ACTIONS(1872), 7, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + [112861] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3893), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(2932), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(2934), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2942), 1, anon_sym_STAR_STAR, - ACTIONS(3897), 1, + ACTIONS(2946), 1, anon_sym_GT_GT, - STATE(2769), 1, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2982), 1, + anon_sym_QMARK, + ACTIONS(2984), 1, + anon_sym_PIPE_PIPE, + STATE(2167), 1, sym_decorator, - ACTIONS(3873), 2, + ACTIONS(2928), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3877), 2, + ACTIONS(2930), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3895), 2, + ACTIONS(2944), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3889), 3, + ACTIONS(2938), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3891), 3, + ACTIONS(2940), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 6, + ACTIONS(2926), 4, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 10, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, + ACTIONS(2948), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_COLON_GT, - [154430] = 9, + ACTIONS(1876), 7, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_to, + anon_sym_downto, + [112946] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3893), 1, - anon_sym_STAR_STAR, - STATE(2770), 1, + ACTIONS(2976), 1, + anon_sym_PIPE, + STATE(2146), 1, + aux_sym_variant_type_repeat1, + STATE(2168), 1, sym_decorator, - ACTIONS(3877), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3891), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1199), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 15, - anon_sym_EQ_GT, + ACTIONS(1201), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_SLASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -225023,479 +183139,457 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [154485] = 21, + [113005] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, + ACTIONS(3002), 1, anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(3006), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(3008), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(3010), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, + ACTIONS(3012), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(3014), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(3020), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(3024), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, + ACTIONS(3028), 1, anon_sym_COLON_GT, - ACTIONS(3907), 1, - anon_sym_COLON, - STATE(2771), 1, + STATE(2169), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(3000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(3022), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(3016), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(3026), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [154564] = 21, + ACTIONS(1904), 6, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [113089] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3909), 1, - anon_sym_LBRACE, - STATE(2772), 1, + STATE(2170), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(1810), 9, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [154643] = 15, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3893), 1, - anon_sym_STAR_STAR, - ACTIONS(3897), 1, - anon_sym_GT_GT, - STATE(2773), 1, - sym_decorator, - ACTIONS(1731), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3877), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3895), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3889), 3, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 20, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3891), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3871), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3899), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 6, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP_AMP, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [154710] = 18, + [113149] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3879), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3883), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3887), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3893), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3897), 1, - anon_sym_GT_GT, - STATE(2774), 1, - sym_decorator, - ACTIONS(1731), 2, + ACTIONS(3040), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3042), 1, anon_sym_AMP_AMP, + ACTIONS(3044), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3046), 1, anon_sym_PIPE_PIPE, - ACTIONS(3873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3877), 2, + ACTIONS(3048), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3054), 1, + anon_sym_GT_GT, + STATE(2171), 1, + sym_decorator, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3895), 2, + ACTIONS(3038), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3052), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1729), 3, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_COLON_GT, - ACTIONS(3889), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3891), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3871), 4, + ACTIONS(3050), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3036), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3899), 4, + ACTIONS(3056), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [154783] = 17, + ACTIONS(1908), 7, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [113231] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3879), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3887), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3893), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3897), 1, + ACTIONS(3054), 1, anon_sym_GT_GT, - STATE(2775), 1, + STATE(2172), 1, sym_decorator, - ACTIONS(1731), 2, + ACTIONS(1810), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3877), 2, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3895), 2, + ACTIONS(3038), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3052), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3889), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3891), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1729), 4, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_COLON_GT, - ACTIONS(3871), 4, + ACTIONS(3050), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3036), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3899), 4, + ACTIONS(3056), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [154854] = 19, + ACTIONS(1812), 11, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [113303] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3879), 1, + ACTIONS(3034), 1, + anon_sym_STAR_STAR, + ACTIONS(3040), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3881), 1, - anon_sym_AMP_AMP, - ACTIONS(3883), 1, + ACTIONS(3044), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3887), 1, + ACTIONS(3048), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3893), 1, - anon_sym_STAR_STAR, - ACTIONS(3897), 1, + ACTIONS(3054), 1, anon_sym_GT_GT, - STATE(2776), 1, + STATE(2173), 1, sym_decorator, - ACTIONS(3873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3877), 2, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3895), 2, + ACTIONS(3038), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3052), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1729), 3, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_COLON_GT, - ACTIONS(3889), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3891), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3871), 4, + ACTIONS(3050), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3036), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3899), 4, + ACTIONS(3056), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [154929] = 16, + ACTIONS(1812), 8, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_GT, + [113381] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3879), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3893), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3897), 1, + ACTIONS(3040), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3048), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3054), 1, anon_sym_GT_GT, - STATE(2777), 1, + STATE(2174), 1, sym_decorator, - ACTIONS(1731), 2, + ACTIONS(1810), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3877), 2, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3895), 2, + ACTIONS(3038), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3052), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3889), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3891), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3871), 4, + ACTIONS(3050), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3036), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3899), 4, + ACTIONS(3056), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1729), 5, - anon_sym_EQ_GT, + ACTIONS(1812), 9, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_PIPE_PIPE_PIPE, - anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - [154998] = 9, + [113457] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3893), 1, + ACTIONS(3020), 1, anon_sym_STAR_STAR, - STATE(2778), 1, + ACTIONS(3024), 1, + anon_sym_GT_GT, + STATE(2175), 1, sym_decorator, - ACTIONS(3877), 2, + ACTIONS(3000), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, + ACTIONS(3022), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3891), 3, + ACTIONS(3016), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 9, + ACTIONS(1810), 6, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 15, + ACTIONS(1812), 15, + anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [155053] = 11, + [113525] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3893), 1, + ACTIONS(3020), 1, anon_sym_STAR_STAR, - STATE(2779), 1, + STATE(2176), 1, sym_decorator, - ACTIONS(3873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3877), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3889), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3891), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(1731), 7, + ACTIONS(1810), 9, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1729), 12, + ACTIONS(1812), 20, + anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, anon_sym_PIPE_PIPE_PIPE, anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_LT_EQ, @@ -225503,2475 +183597,2102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_COLON_GT, - [155112] = 21, + [113585] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1733), 1, - anon_sym_EQ_GT, - ACTIONS(3875), 1, - anon_sym_QMARK, - ACTIONS(3879), 1, + ACTIONS(1810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_STAR_STAR, + ACTIONS(3040), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3881), 1, + ACTIONS(3042), 1, anon_sym_AMP_AMP, - ACTIONS(3883), 1, + ACTIONS(3044), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3885), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3887), 1, + ACTIONS(3048), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3893), 1, - anon_sym_STAR_STAR, - ACTIONS(3897), 1, + ACTIONS(3054), 1, anon_sym_GT_GT, - ACTIONS(3901), 1, - anon_sym_COLON_GT, - STATE(2780), 1, + STATE(2177), 1, sym_decorator, - ACTIONS(3873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3877), 2, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3895), 2, + ACTIONS(3038), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3052), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3889), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3891), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3871), 4, + ACTIONS(3050), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3036), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3899), 4, + ACTIONS(3056), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [155191] = 20, + ACTIONS(1812), 8, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_GT, + [113665] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3879), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3881), 1, - anon_sym_AMP_AMP, - ACTIONS(3883), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3885), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3887), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3893), 1, + ACTIONS(3020), 1, anon_sym_STAR_STAR, - ACTIONS(3897), 1, + ACTIONS(3024), 1, anon_sym_GT_GT, - ACTIONS(3901), 1, - anon_sym_COLON_GT, - STATE(2781), 1, + STATE(2178), 1, sym_decorator, - ACTIONS(1737), 2, - anon_sym_EQ_GT, - anon_sym_QMARK, - ACTIONS(3873), 2, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3877), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3895), 2, + ACTIONS(3022), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3889), 3, + ACTIONS(3016), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3891), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3871), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3899), 4, + ACTIONS(3026), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [155268] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3427), 1, + ACTIONS(1812), 11, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3431), 1, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + anon_sym_COLON_GT, + [113737] = 16, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(3040), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3054), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3911), 1, - anon_sym_COLON, - STATE(2782), 1, + STATE(2179), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(3038), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3052), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(3050), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3036), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(3056), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [155347] = 21, + ACTIONS(1812), 10, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [113811] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, + ACTIONS(3002), 1, anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(3006), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(3008), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(3010), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, + ACTIONS(3012), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(3014), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(3020), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(3024), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, + ACTIONS(3028), 1, anon_sym_COLON_GT, - ACTIONS(3913), 1, - anon_sym_COLON, - STATE(2783), 1, + STATE(2180), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(3000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(3022), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(3016), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(3026), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [155426] = 21, + ACTIONS(1876), 6, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [113895] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1733), 1, - anon_sym_catch, - ACTIONS(3821), 1, - anon_sym_QMARK, - ACTIONS(3827), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(3034), 1, + anon_sym_STAR_STAR, + ACTIONS(3040), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3829), 1, + ACTIONS(3042), 1, anon_sym_AMP_AMP, - ACTIONS(3831), 1, + ACTIONS(3044), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3833), 1, + ACTIONS(3046), 1, anon_sym_PIPE_PIPE, - ACTIONS(3835), 1, + ACTIONS(3048), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3841), 1, - anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(3054), 1, anon_sym_GT_GT, - ACTIONS(3849), 1, - anon_sym_COLON_GT, - STATE(2784), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + STATE(2181), 1, sym_decorator, - ACTIONS(3819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3825), 2, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3843), 2, + ACTIONS(3038), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3052), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3837), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3839), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3817), 4, + ACTIONS(3050), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3036), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3847), 4, + ACTIONS(3056), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [155505] = 21, + ACTIONS(1832), 6, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [113979] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(3034), 1, + anon_sym_STAR_STAR, + ACTIONS(3040), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(3042), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(3044), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, + ACTIONS(3046), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(3048), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(3054), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3915), 1, - anon_sym_COLON, - STATE(2785), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + STATE(2182), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(3038), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3052), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(3050), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3036), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(3056), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [155584] = 21, + ACTIONS(1862), 6, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [114063] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(3034), 1, + anon_sym_STAR_STAR, + ACTIONS(3040), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(3042), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(3044), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, + ACTIONS(3046), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(3048), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(3054), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3917), 1, - anon_sym_COLON, - STATE(2786), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + STATE(2183), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(3038), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3052), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(3050), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3036), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(3056), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [155663] = 21, + ACTIONS(1872), 6, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [114147] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2812), 1, + anon_sym_COLON_GT, + ACTIONS(3034), 1, + anon_sym_STAR_STAR, + ACTIONS(3040), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(3042), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(3044), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, + ACTIONS(3046), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(3048), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(3054), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3919), 1, - anon_sym_COLON, - STATE(2787), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + STATE(2184), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(3038), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3052), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(3050), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3036), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(3056), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [155742] = 21, + ACTIONS(1876), 6, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [114231] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(3002), 1, + anon_sym_QMARK, + ACTIONS(3006), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(3008), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, + ACTIONS(3010), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3012), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_RBRACK, - STATE(2788), 1, + ACTIONS(3014), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3020), 1, + anon_sym_STAR_STAR, + ACTIONS(3024), 1, + anon_sym_GT_GT, + ACTIONS(3028), 1, + anon_sym_COLON_GT, + STATE(2185), 1, sym_decorator, - ACTIONS(3602), 2, + ACTIONS(3000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(3022), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(3016), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(3026), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [155821] = 21, + ACTIONS(1872), 6, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [114315] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3923), 1, - anon_sym_COLON, - STATE(2789), 1, + STATE(2186), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(1810), 9, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(1812), 20, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [155900] = 21, + anon_sym_COLON_GT, + [114375] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(3006), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, + ACTIONS(3010), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, + ACTIONS(3014), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(3020), 1, + anon_sym_STAR_STAR, + ACTIONS(3024), 1, + anon_sym_GT_GT, + STATE(2187), 1, + sym_decorator, + ACTIONS(1810), 2, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, anon_sym_PIPE_PIPE, - ACTIONS(3925), 1, - anon_sym_LBRACE, - STATE(2790), 1, - sym_decorator, - ACTIONS(3602), 2, + ACTIONS(3000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(3022), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(3016), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(3026), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [155979] = 21, + ACTIONS(1812), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_GT, + [114453] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3927), 1, - anon_sym_RBRACK, - STATE(2791), 1, + STATE(2188), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(3038), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(3050), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 7, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(1812), 17, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [156058] = 6, + anon_sym_COLON_GT, + [114517] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2792), 1, + STATE(2189), 1, sym_decorator, + ACTIONS(2978), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1226), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, + ACTIONS(1528), 11, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1221), 17, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 22, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [156107] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3821), 1, anon_sym_QMARK, - ACTIONS(3827), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3829), 1, - anon_sym_AMP_AMP, - ACTIONS(3831), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3833), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3835), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3841), 1, - anon_sym_STAR_STAR, - ACTIONS(3845), 1, - anon_sym_GT_GT, - ACTIONS(3849), 1, - anon_sym_COLON_GT, - ACTIONS(3929), 1, - anon_sym_catch, - STATE(2793), 1, - sym_decorator, - ACTIONS(3819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3825), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3843), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3837), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3839), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3817), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3847), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [156186] = 21, + anon_sym_COLON_GT, + [114573] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, + ACTIONS(2812), 1, anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(3040), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, + ACTIONS(3042), 1, + anon_sym_AMP_AMP, + ACTIONS(3044), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, + ACTIONS(3046), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3048), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(3054), 1, + anon_sym_GT_GT, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3931), 1, - anon_sym_RBRACK, - STATE(2794), 1, + STATE(2190), 1, sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(3038), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3052), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(3050), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3036), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(3056), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [156265] = 21, + ACTIONS(1904), 6, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [114657] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(3006), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3020), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(3024), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + STATE(2191), 1, + sym_decorator, + ACTIONS(1810), 2, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, anon_sym_PIPE_PIPE, - ACTIONS(3933), 1, - anon_sym_LBRACE, - STATE(2795), 1, - sym_decorator, - ACTIONS(3602), 2, + ACTIONS(3000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(3022), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(3016), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(3026), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [156344] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2796), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1383), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1381), 17, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, + ACTIONS(1812), 10, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT, anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [156393] = 21, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [114731] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(3006), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(3008), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(3010), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, + ACTIONS(3012), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(3014), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(3020), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(3024), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, + ACTIONS(3028), 1, anon_sym_COLON_GT, - ACTIONS(3935), 1, - anon_sym_COLON, - STATE(2797), 1, + STATE(2192), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(3000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(3022), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(3016), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(3026), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [156472] = 21, + ACTIONS(1908), 7, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [114813] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(3002), 1, + anon_sym_QMARK, + ACTIONS(3006), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(3008), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, + ACTIONS(3010), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3012), 1, anon_sym_PIPE_PIPE, - ACTIONS(3937), 1, - anon_sym_LBRACE, - STATE(2798), 1, + ACTIONS(3014), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3020), 1, + anon_sym_STAR_STAR, + ACTIONS(3024), 1, + anon_sym_GT_GT, + ACTIONS(3028), 1, + anon_sym_COLON_GT, + STATE(2193), 1, sym_decorator, - ACTIONS(3602), 2, + ACTIONS(3000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(3022), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(3016), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(3026), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [156551] = 21, + ACTIONS(1832), 6, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [114897] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(3020), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3939), 1, - anon_sym_COLON, - STATE(2799), 1, + STATE(2194), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(1810), 9, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(1812), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [156630] = 21, + anon_sym_COLON_GT, + [114957] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(3054), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3941), 1, - anon_sym_COLON, - STATE(2800), 1, + STATE(2195), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(3030), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(3038), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3052), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3032), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(3050), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1810), 6, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(1812), 15, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [156709] = 21, + anon_sym_COLON_GT, + [115025] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(3020), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3943), 1, - anon_sym_RBRACE, - STATE(2801), 1, + STATE(2196), 1, sym_decorator, - ACTIONS(3602), 2, + ACTIONS(3000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(3016), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(1810), 7, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(1812), 17, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [156788] = 10, + anon_sym_COLON_GT, + [115089] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1432), 1, - anon_sym_DOT, - ACTIONS(2634), 1, - anon_sym_EQ_GT, - STATE(2802), 1, + STATE(2197), 1, sym_decorator, - ACTIONS(1428), 2, + ACTIONS(2992), 2, anon_sym_DASH_GT, anon_sym_PIPE_GT, - ACTIONS(3947), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3945), 12, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, + ACTIONS(1528), 11, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(3950), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [156845] = 20, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3827), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3829), 1, anon_sym_AMP_AMP, - ACTIONS(3831), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3833), 1, anon_sym_PIPE_PIPE, - ACTIONS(3835), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3841), 1, - anon_sym_STAR_STAR, - ACTIONS(3845), 1, + anon_sym_STAR, anon_sym_GT_GT, - ACTIONS(3849), 1, - anon_sym_COLON_GT, - STATE(2803), 1, - sym_decorator, - ACTIONS(1737), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1530), 22, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_catch, - ACTIONS(3819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3825), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3843), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3837), 3, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3839), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3817), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3847), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [156922] = 21, + anon_sym_COLON_GT, + [115145] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3821), 1, - anon_sym_QMARK, - ACTIONS(3827), 1, + ACTIONS(3006), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3829), 1, - anon_sym_AMP_AMP, - ACTIONS(3831), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3833), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3835), 1, + ACTIONS(3014), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3841), 1, + ACTIONS(3020), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(3024), 1, anon_sym_GT_GT, - ACTIONS(3849), 1, - anon_sym_COLON_GT, - ACTIONS(3952), 1, - anon_sym_catch, - STATE(2804), 1, + STATE(2198), 1, sym_decorator, - ACTIONS(3819), 2, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3825), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3843), 2, + ACTIONS(3022), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3837), 3, + ACTIONS(3016), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3839), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3817), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3847), 4, + ACTIONS(3026), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [157001] = 21, + ACTIONS(1812), 9, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [115221] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3954), 1, - anon_sym_COLON, - STATE(2805), 1, + STATE(2199), 1, sym_decorator, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3429), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(3443), 3, - anon_sym_STAR_DOT, - anon_sym_PERCENT, - anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(1396), 11, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - [157080] = 21, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(1398), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_LBRACE, - STATE(2806), 1, - sym_decorator, - ACTIONS(3602), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3604), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3612), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3606), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3618), 4, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [157159] = 21, + anon_sym_COLON_GT, + [115275] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(3002), 1, + anon_sym_QMARK, + ACTIONS(3006), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(3008), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, + ACTIONS(3010), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3012), 1, anon_sym_PIPE_PIPE, - ACTIONS(3958), 1, - anon_sym_RBRACK, - STATE(2807), 1, + ACTIONS(3014), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3020), 1, + anon_sym_STAR_STAR, + ACTIONS(3024), 1, + anon_sym_GT_GT, + ACTIONS(3028), 1, + anon_sym_COLON_GT, + STATE(2200), 1, sym_decorator, - ACTIONS(3602), 2, + ACTIONS(3000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(3022), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(3016), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(3026), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [157238] = 21, + ACTIONS(1862), 6, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [115359] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3821), 1, - anon_sym_QMARK, - ACTIONS(3827), 1, + ACTIONS(1810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3006), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3829), 1, + ACTIONS(3008), 1, anon_sym_AMP_AMP, - ACTIONS(3831), 1, + ACTIONS(3010), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3833), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3835), 1, + ACTIONS(3014), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3841), 1, + ACTIONS(3020), 1, anon_sym_STAR_STAR, - ACTIONS(3845), 1, + ACTIONS(3024), 1, anon_sym_GT_GT, - ACTIONS(3849), 1, - anon_sym_COLON_GT, - ACTIONS(3960), 1, - anon_sym_catch, - STATE(2808), 1, + STATE(2201), 1, sym_decorator, - ACTIONS(3819), 2, + ACTIONS(3000), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3825), 2, + ACTIONS(3004), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3843), 2, + ACTIONS(3022), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3837), 3, + ACTIONS(3016), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3839), 3, + ACTIONS(3018), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3817), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3847), 4, + ACTIONS(3026), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [157317] = 21, + ACTIONS(1812), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_COLON_GT, + [115439] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(3066), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, - anon_sym_AMP_AMP, - ACTIONS(3435), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(3072), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(3076), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3962), 1, - anon_sym_COLON, - STATE(2809), 1, + STATE(2202), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3062), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(3064), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(3074), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(3068), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3070), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(3060), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(3078), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [157396] = 21, + ACTIONS(1812), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [115512] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, + ACTIONS(3066), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3072), 1, anon_sym_STAR_STAR, - ACTIONS(3614), 1, + ACTIONS(3076), 1, anon_sym_GT_GT, - ACTIONS(3620), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, - anon_sym_AMP_AMP, - ACTIONS(3635), 1, + ACTIONS(3082), 1, anon_sym_QMARK, - ACTIONS(3637), 1, + ACTIONS(3084), 1, + anon_sym_AMP_AMP, + ACTIONS(3086), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3088), 1, anon_sym_PIPE_PIPE, - ACTIONS(3964), 1, - anon_sym_RBRACK, - STATE(2810), 1, + ACTIONS(3090), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3092), 1, + anon_sym_COLON_GT, + STATE(2203), 1, sym_decorator, - ACTIONS(3602), 2, + ACTIONS(3062), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(3064), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(3074), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(3068), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(3070), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(3060), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(3078), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [157475] = 21, + ACTIONS(3080), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [115595] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3821), 1, - anon_sym_QMARK, - ACTIONS(3827), 1, + ACTIONS(1810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3066), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3829), 1, + ACTIONS(3072), 1, + anon_sym_STAR_STAR, + ACTIONS(3076), 1, + anon_sym_GT_GT, + ACTIONS(3084), 1, anon_sym_AMP_AMP, - ACTIONS(3831), 1, + ACTIONS(3086), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3833), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3835), 1, + ACTIONS(3090), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3841), 1, - anon_sym_STAR_STAR, - ACTIONS(3845), 1, - anon_sym_GT_GT, - ACTIONS(3849), 1, - anon_sym_COLON_GT, - ACTIONS(3966), 1, - anon_sym_catch, - STATE(2811), 1, + STATE(2204), 1, sym_decorator, - ACTIONS(3819), 2, + ACTIONS(3062), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3825), 2, + ACTIONS(3064), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3843), 2, + ACTIONS(3074), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3837), 3, + ACTIONS(3068), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3839), 3, + ACTIONS(3070), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3817), 4, + ACTIONS(3060), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3847), 4, + ACTIONS(3078), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [157554] = 21, + ACTIONS(1812), 7, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_COLON_GT, + [115674] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, + ACTIONS(2786), 1, anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(2790), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(2792), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(2794), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, + ACTIONS(2796), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(2798), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(2804), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(2808), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, + ACTIONS(2812), 1, anon_sym_COLON_GT, - ACTIONS(3968), 1, - anon_sym_COLON, - STATE(2812), 1, + STATE(2205), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(2784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(2788), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(2806), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(2800), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(2802), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(2782), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(2810), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [157633] = 21, + ACTIONS(1804), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [115757] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, - anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(3066), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(3072), 1, + anon_sym_STAR_STAR, + ACTIONS(3076), 1, + anon_sym_GT_GT, + ACTIONS(3082), 1, + anon_sym_QMARK, + ACTIONS(3084), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(3086), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, + ACTIONS(3088), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(3090), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3449), 1, - anon_sym_GT_GT, - ACTIONS(3453), 1, + ACTIONS(3092), 1, anon_sym_COLON_GT, - ACTIONS(3970), 1, - anon_sym_COLON, - STATE(2813), 1, + STATE(2206), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(3062), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(3064), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(3074), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(3068), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3070), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(3060), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(3078), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [157712] = 21, + ACTIONS(1904), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [115840] = 25, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3453), 1, - anon_sym_COLON_GT, - ACTIONS(3610), 1, - anon_sym_STAR_STAR, - ACTIONS(3614), 1, - anon_sym_GT_GT, - ACTIONS(3620), 1, + ACTIONS(3094), 1, + anon_sym_RPAREN, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3098), 1, + anon_sym_COMMA, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3622), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3624), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3628), 1, + ACTIONS(3110), 1, anon_sym_AMP_AMP, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, anon_sym_PIPE_PIPE, - ACTIONS(3972), 1, - anon_sym_RBRACK, - STATE(2814), 1, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + STATE(2207), 1, sym_decorator, - ACTIONS(3602), 2, + STATE(3769), 1, + sym_type_annotation, + STATE(3771), 1, + aux_sym_variant_arguments_repeat1, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3604), 2, + ACTIONS(3106), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3612), 2, + ACTIONS(3124), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3606), 3, + ACTIONS(3118), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3608), 3, + ACTIONS(3120), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3616), 4, + ACTIONS(3100), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3618), 4, + ACTIONS(3128), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [157791] = 21, + [115931] = 25, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(3108), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(3110), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(3112), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, + ACTIONS(3114), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(3116), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(3122), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(3126), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, + ACTIONS(3130), 1, anon_sym_COLON_GT, - ACTIONS(3974), 1, - anon_sym_COLON, - STATE(2815), 1, + ACTIONS(3132), 1, + anon_sym_RPAREN, + ACTIONS(3134), 1, + anon_sym_COMMA, + STATE(2208), 1, sym_decorator, - ACTIONS(3425), 2, + STATE(3830), 1, + sym_type_annotation, + STATE(3923), 1, + aux_sym_variant_arguments_repeat1, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(3106), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(3124), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(3118), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3120), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(3100), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(3128), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [157870] = 21, + [116022] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3427), 1, + ACTIONS(3140), 1, + anon_sym_PIPE, + ACTIONS(3142), 1, anon_sym_QMARK, - ACTIONS(3431), 1, + ACTIONS(3146), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(3433), 1, + ACTIONS(3148), 1, anon_sym_AMP_AMP, - ACTIONS(3435), 1, + ACTIONS(3150), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(3437), 1, + ACTIONS(3152), 1, anon_sym_PIPE_PIPE, - ACTIONS(3439), 1, + ACTIONS(3154), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3445), 1, + ACTIONS(3160), 1, anon_sym_STAR_STAR, - ACTIONS(3449), 1, + ACTIONS(3164), 1, anon_sym_GT_GT, - ACTIONS(3453), 1, + ACTIONS(3168), 1, anon_sym_COLON_GT, - ACTIONS(3976), 1, - anon_sym_COLON, - STATE(2816), 1, + STATE(2209), 1, sym_decorator, - ACTIONS(3425), 2, + ACTIONS(3138), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3429), 2, + ACTIONS(3144), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3447), 2, + ACTIONS(3162), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3441), 3, + ACTIONS(3156), 3, anon_sym_PLUS_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(3443), 3, + ACTIONS(3158), 3, anon_sym_STAR_DOT, anon_sym_PERCENT, anon_sym_SLASH_DOT, - ACTIONS(3423), 4, + ACTIONS(3080), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + ACTIONS(3136), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3451), 4, + ACTIONS(3166), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - [157949] = 6, + [116107] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2817), 1, + ACTIONS(3072), 1, + anon_sym_STAR_STAR, + STATE(2210), 1, sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1628), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, + ACTIONS(3064), 2, anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1626), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [157997] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2818), 1, - sym_decorator, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1533), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1531), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(3070), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158045] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2819), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1652), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1650), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158093] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 19, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [116166] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2820), 1, + ACTIONS(3072), 1, + anon_sym_STAR_STAR, + ACTIONS(3076), 1, + anon_sym_GT_GT, + STATE(2211), 1, sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1226), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, + ACTIONS(3062), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3064), 2, anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1221), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158141] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2821), 1, - sym_decorator, + anon_sym_STAR, + ACTIONS(3074), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1672), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1670), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(3068), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3070), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158189] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2822), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1668), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1666), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_SLASH_DOT, + ACTIONS(1810), 6, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158237] = 6, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 14, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [116233] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2823), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1527), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1525), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, + ACTIONS(1140), 1, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158285] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2824), 1, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2212), 1, sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1537), 13, - anon_sym_module, + STATE(3888), 1, + sym_formal_parameters, + STATE(4222), 1, + sym__definition_signature, + STATE(4378), 1, + sym_value_identifier, + ACTIONS(1135), 2, + sym__identifier, + sym__escape_identifier, + ACTIONS(1145), 2, anon_sym_unpack, - anon_sym_DOT, anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1535), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158333] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2825), 1, - sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1676), 13, + ACTIONS(1143), 9, anon_sym_module, - anon_sym_unpack, anon_sym_DOT, - anon_sym_async, anon_sym_if, anon_sym_switch, anon_sym_try, anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, sym_true, sym_false, - ACTIONS(1674), 16, + ACTIONS(1138), 16, sym__list_constructor, sym__dict_constructor, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_LT, anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, @@ -227984,12219 +185705,17148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, aux_sym_template_string_token1, anon_sym_SQUOTE, - [158381] = 9, + [116300] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1432), 1, - anon_sym_DOT, - STATE(2826), 1, + ACTIONS(3172), 1, + anon_sym_COLON, + ACTIONS(3178), 1, + anon_sym_QMARK, + ACTIONS(3182), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3184), 1, + anon_sym_AMP_AMP, + ACTIONS(3186), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3188), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3190), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_GT_GT, + ACTIONS(3204), 1, + anon_sym_COLON_GT, + STATE(2213), 1, sym_decorator, - ACTIONS(1428), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - ACTIONS(3947), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3945), 12, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - ACTIONS(3950), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, + STATE(3706), 1, + sym_type_annotation, + ACTIONS(3176), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3180), 2, anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - [158435] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2827), 1, - sym_decorator, + anon_sym_STAR, + ACTIONS(3198), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1632), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1630), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, + ACTIONS(3170), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(3192), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158483] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2828), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1987), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1985), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_SLASH_DOT, + ACTIONS(3174), 4, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158531] = 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3202), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [116387] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2829), 1, + ACTIONS(3072), 1, + anon_sym_STAR_STAR, + STATE(2214), 1, sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1640), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, + ACTIONS(3064), 2, anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1638), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158579] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(2830), 1, - sym_decorator, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1664), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1662), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(3070), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158627] = 6, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 19, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [116446] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2831), 1, + ACTIONS(3072), 1, + anon_sym_STAR_STAR, + STATE(2215), 1, sym_decorator, + ACTIONS(3062), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3064), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1636), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1634), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(3068), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3070), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158675] = 6, + anon_sym_SLASH_DOT, + ACTIONS(1810), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 16, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [116509] = 25, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2832), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3206), 1, + anon_sym_RPAREN, + ACTIONS(3208), 1, + anon_sym_COMMA, + STATE(2216), 1, sym_decorator, + STATE(3744), 1, + sym_type_annotation, + STATE(3745), 1, + aux_sym_variant_arguments_repeat1, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1656), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1654), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158723] = 6, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [116600] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2833), 1, + ACTIONS(1902), 1, + anon_sym_PIPE, + ACTIONS(3142), 1, + anon_sym_QMARK, + ACTIONS(3146), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3148), 1, + anon_sym_AMP_AMP, + ACTIONS(3150), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3152), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3154), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3160), 1, + anon_sym_STAR_STAR, + ACTIONS(3164), 1, + anon_sym_GT_GT, + ACTIONS(3168), 1, + anon_sym_COLON_GT, + STATE(2217), 1, sym_decorator, + ACTIONS(3138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3144), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3162), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1660), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1658), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(3156), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3158), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158771] = 6, + anon_sym_SLASH_DOT, + ACTIONS(1904), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + ACTIONS(3136), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3166), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [116685] = 25, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2834), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3210), 1, + anon_sym_RPAREN, + ACTIONS(3212), 1, + anon_sym_COMMA, + STATE(2218), 1, sym_decorator, + STATE(3717), 1, + sym_type_annotation, + STATE(3724), 1, + aux_sym_variant_arguments_repeat1, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1648), 13, - anon_sym_module, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1646), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158819] = 7, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [116776] = 25, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2835), 1, - sym_decorator, - ACTIONS(3978), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(3950), 12, + ACTIONS(129), 1, + anon_sym_type, + ACTIONS(205), 1, anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(3945), 14, - sym__list_constructor, - sym__dict_constructor, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1610), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1624), 1, anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_PERCENT, + ACTIONS(1630), 1, + sym_unit_type, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158868] = 6, + ACTIONS(3214), 1, + anon_sym_LPAREN, + STATE(2219), 1, + sym_decorator, + STATE(2490), 1, + sym_type_identifier, + STATE(2518), 1, + sym_type_identifier_path, + STATE(2537), 1, + sym__type_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3270), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3742), 1, + sym_module_primary_expression, + STATE(3960), 1, + sym__non_function_inline_type, + STATE(4231), 1, + sym_abstract_type, + ACTIONS(1626), 2, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + STATE(1014), 9, + sym_polymorphic_type, + sym_tuple_type, + sym_polyvar_type, + sym_record_type, + sym_object_type, + sym_generic_type, + sym__as_aliasing_non_function_inline_type, + sym_module_pack, + sym_unit, + [116867] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2836), 1, + ACTIONS(3072), 1, + anon_sym_STAR_STAR, + ACTIONS(3076), 1, + anon_sym_GT_GT, + STATE(2220), 1, sym_decorator, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3062), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3064), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3074), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1622), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1620), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(3068), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3070), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158915] = 6, + anon_sym_SLASH_DOT, + ACTIONS(3060), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3078), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [116938] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2837), 1, + ACTIONS(1906), 1, + anon_sym_PIPE, + ACTIONS(3146), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3148), 1, + anon_sym_AMP_AMP, + ACTIONS(3150), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3152), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3154), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3160), 1, + anon_sym_STAR_STAR, + ACTIONS(3164), 1, + anon_sym_GT_GT, + ACTIONS(3168), 1, + anon_sym_COLON_GT, + STATE(2221), 1, sym_decorator, + ACTIONS(3138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3144), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3162), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1571), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1569), 16, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(3156), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3158), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [158962] = 6, + anon_sym_SLASH_DOT, + ACTIONS(3136), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3166), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1908), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_QMARK, + [117021] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2838), 1, + ACTIONS(3066), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3072), 1, + anon_sym_STAR_STAR, + ACTIONS(3076), 1, + anon_sym_GT_GT, + ACTIONS(3086), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3090), 1, + anon_sym_CARET_CARET_CARET, + STATE(2222), 1, sym_decorator, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3062), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3064), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3074), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3982), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(3980), 14, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, + ACTIONS(3068), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3070), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [159007] = 6, + anon_sym_SLASH_DOT, + ACTIONS(3060), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3078), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 7, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_COLON_GT, + [117098] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2839), 1, + ACTIONS(3172), 1, + anon_sym_COLON, + ACTIONS(3178), 1, + anon_sym_QMARK, + ACTIONS(3182), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3184), 1, + anon_sym_AMP_AMP, + ACTIONS(3186), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3188), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3190), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_GT_GT, + ACTIONS(3204), 1, + anon_sym_COLON_GT, + STATE(2223), 1, sym_decorator, + STATE(3693), 1, + sym_type_annotation, + ACTIONS(3176), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3198), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1951), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1949), 14, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, + ACTIONS(3192), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [159052] = 6, + anon_sym_SLASH_DOT, + ACTIONS(3216), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(3174), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3202), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [117185] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2840), 1, + ACTIONS(3066), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3072), 1, + anon_sym_STAR_STAR, + ACTIONS(3076), 1, + anon_sym_GT_GT, + ACTIONS(3090), 1, + anon_sym_CARET_CARET_CARET, + STATE(2224), 1, sym_decorator, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3062), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3064), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3074), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3986), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(3984), 14, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, + ACTIONS(3068), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3070), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [159097] = 6, + anon_sym_SLASH_DOT, + ACTIONS(3060), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3078), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [117260] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2841), 1, + ACTIONS(3066), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3072), 1, + anon_sym_STAR_STAR, + ACTIONS(3076), 1, + anon_sym_GT_GT, + ACTIONS(3084), 1, + anon_sym_AMP_AMP, + ACTIONS(3086), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3088), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3090), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3092), 1, + anon_sym_COLON_GT, + STATE(2225), 1, sym_decorator, + ACTIONS(3062), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3064), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3074), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3950), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(3945), 14, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, + ACTIONS(3068), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3070), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [159142] = 6, + anon_sym_SLASH_DOT, + ACTIONS(3060), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3078), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1908), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_QMARK, + [117341] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2842), 1, + ACTIONS(3142), 1, + anon_sym_QMARK, + ACTIONS(3146), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3148), 1, + anon_sym_AMP_AMP, + ACTIONS(3150), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3152), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3154), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3160), 1, + anon_sym_STAR_STAR, + ACTIONS(3164), 1, + anon_sym_GT_GT, + ACTIONS(3168), 1, + anon_sym_COLON_GT, + ACTIONS(3220), 1, + anon_sym_PIPE, + STATE(2226), 1, sym_decorator, + ACTIONS(3138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3144), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3162), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3990), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(3988), 14, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, + ACTIONS(3156), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3158), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [159187] = 6, + anon_sym_SLASH_DOT, + ACTIONS(3136), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3166), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(3218), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + [117426] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2843), 1, + ACTIONS(3160), 1, + anon_sym_STAR_STAR, + ACTIONS(3164), 1, + anon_sym_GT_GT, + STATE(2227), 1, sym_decorator, + ACTIONS(3138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3144), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3162), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1895), 12, - anon_sym_module, - anon_sym_unpack, - anon_sym_async, - anon_sym_if, - anon_sym_switch, - anon_sym_try, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(1893), 14, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_POUND, + ACTIONS(3156), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3158), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [159232] = 6, + anon_sym_SLASH_DOT, + ACTIONS(1810), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 13, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [117493] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2844), 1, + ACTIONS(3160), 1, + anon_sym_STAR_STAR, + STATE(2228), 1, sym_decorator, + ACTIONS(3144), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3096), 11, - anon_sym_module, - anon_sym_type, - anon_sym_unpack, - anon_sym_exception, - anon_sym_async, - anon_sym_lazy, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - sym__escape_identifier, - sym_true, - sym_false, - ACTIONS(3094), 13, - sym__list_constructor, - sym__dict_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3158), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 10, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 18, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, anon_sym_QMARK, - anon_sym_POUND, - anon_sym_TILDE, - aux_sym_variant_identifier_token1, - sym_number, - anon_sym_DQUOTE, - aux_sym_template_string_token1, - anon_sym_SQUOTE, - [159275] = 21, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [117552] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3992), 1, - anon_sym_LPAREN, - ACTIONS(3994), 1, - anon_sym_RPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2845), 1, + ACTIONS(3160), 1, + anon_sym_STAR_STAR, + ACTIONS(3164), 1, + anon_sym_GT_GT, + STATE(2229), 1, sym_decorator, - STATE(3483), 1, - sym_module_primary_expression, - STATE(3545), 1, - sym_module_identifier, - STATE(3806), 1, - sym_module_expression, - STATE(4259), 1, - sym_functor_parameter, - STATE(4287), 1, - aux_sym_extension_expression_repeat1, - STATE(4299), 1, - sym_functor_parameters, - STATE(5014), 1, - sym__module_structure, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3144), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3162), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4445), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [159347] = 21, + ACTIONS(1810), 3, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3156), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3158), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3136), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3166), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [117623] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4002), 1, - anon_sym_RBRACE, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_QMARK, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2846), 1, + ACTIONS(3146), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3150), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3154), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3160), 1, + anon_sym_STAR_STAR, + ACTIONS(3164), 1, + anon_sym_GT_GT, + STATE(2230), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4650), 1, - sym__record_element, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3144), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3162), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [159419] = 21, + ACTIONS(1810), 3, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3156), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3158), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3136), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3166), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_QMARK, + anon_sym_COLON_GT, + [117700] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_QMARK, - ACTIONS(4008), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2847), 1, + ACTIONS(3146), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3154), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3160), 1, + anon_sym_STAR_STAR, + ACTIONS(3164), 1, + anon_sym_GT_GT, + STATE(2231), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4650), 1, - sym__record_element, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3144), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3162), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [159491] = 21, + ACTIONS(1810), 3, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3156), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3158), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3136), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3166), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 7, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [117775] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_QMARK, - ACTIONS(4010), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2848), 1, + ACTIONS(3146), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3148), 1, + anon_sym_AMP_AMP, + ACTIONS(3150), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3154), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3160), 1, + anon_sym_STAR_STAR, + ACTIONS(3164), 1, + anon_sym_GT_GT, + STATE(2232), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4650), 1, - sym__record_element, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(1810), 2, + anon_sym_PIPE, + anon_sym_PIPE_PIPE, + ACTIONS(3138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3144), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3162), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [159563] = 21, + ACTIONS(3156), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3158), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3136), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3166), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_QMARK, + anon_sym_COLON_GT, + [117854] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_QMARK, - ACTIONS(4012), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2849), 1, + ACTIONS(3146), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3160), 1, + anon_sym_STAR_STAR, + ACTIONS(3164), 1, + anon_sym_GT_GT, + STATE(2233), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4650), 1, - sym__record_element, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3144), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3162), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [159635] = 21, + ACTIONS(1810), 3, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3156), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3158), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3136), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3166), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [117927] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_QMARK, - ACTIONS(4014), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2850), 1, + ACTIONS(3160), 1, + anon_sym_STAR_STAR, + STATE(2234), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4650), 1, - sym__record_element, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3144), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [159707] = 21, + ACTIONS(3158), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 10, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 18, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [117986] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_QMARK, - ACTIONS(4016), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2851), 1, + ACTIONS(3160), 1, + anon_sym_STAR_STAR, + STATE(2235), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4650), 1, - sym__record_element, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3144), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [159779] = 21, + ACTIONS(3156), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3158), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 15, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [118049] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, + ACTIONS(3066), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3072), 1, + anon_sym_STAR_STAR, + ACTIONS(3076), 1, + anon_sym_GT_GT, + ACTIONS(3082), 1, anon_sym_QMARK, - ACTIONS(4018), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2852), 1, + ACTIONS(3084), 1, + anon_sym_AMP_AMP, + ACTIONS(3086), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3088), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3090), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3092), 1, + anon_sym_COLON_GT, + STATE(2236), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4650), 1, - sym__record_element, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3062), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3064), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3074), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [159851] = 21, + ACTIONS(3068), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3070), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3060), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3078), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(3218), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [118132] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, + ACTIONS(3172), 1, + anon_sym_COLON, + ACTIONS(3178), 1, anon_sym_QMARK, - ACTIONS(4020), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2853), 1, + ACTIONS(3182), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3184), 1, + anon_sym_AMP_AMP, + ACTIONS(3186), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3188), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3190), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_GT_GT, + ACTIONS(3204), 1, + anon_sym_COLON_GT, + STATE(2237), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4650), 1, - sym__record_element, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + STATE(3814), 1, + sym_type_annotation, + ACTIONS(3176), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3198), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [159923] = 21, + ACTIONS(3192), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3222), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(3174), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3202), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [118219] = 25, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, anon_sym_QMARK, - ACTIONS(4022), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2854), 1, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3224), 1, + anon_sym_RPAREN, + ACTIONS(3226), 1, + anon_sym_COMMA, + STATE(2238), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4650), 1, - sym__record_element, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + STATE(3914), 1, + sym_type_annotation, + STATE(3915), 1, + aux_sym_variant_arguments_repeat1, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [159995] = 21, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [118310] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_QMARK, - ACTIONS(4024), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2855), 1, + ACTIONS(3238), 1, + anon_sym_STAR_STAR, + ACTIONS(3242), 1, + anon_sym_GT_GT, + STATE(2239), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4650), 1, - sym__record_element, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3240), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160067] = 21, + ACTIONS(3234), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3236), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3228), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3244), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [118380] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_QMARK, - ACTIONS(4026), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2856), 1, + ACTIONS(3254), 1, + anon_sym_STAR_STAR, + STATE(2240), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4650), 1, - sym__record_element, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3248), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160139] = 21, + ACTIONS(3250), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3252), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 14, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [118442] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, + ACTIONS(3092), 1, + anon_sym_COLON_GT, + ACTIONS(3238), 1, + anon_sym_STAR_STAR, + ACTIONS(3242), 1, + anon_sym_GT_GT, + ACTIONS(3256), 1, anon_sym_QMARK, - ACTIONS(4028), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2857), 1, + ACTIONS(3258), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3260), 1, + anon_sym_AMP_AMP, + ACTIONS(3262), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3264), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3266), 1, + anon_sym_CARET_CARET_CARET, + STATE(2241), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4650), 1, - sym__record_element, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3230), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3240), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160211] = 19, + ACTIONS(3234), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3236), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1904), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(3228), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3244), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [118524] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3992), 1, - anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2858), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + STATE(2242), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3662), 1, - sym_module_primary_expression, - STATE(3953), 1, - sym_module_expression, - STATE(4287), 1, - aux_sym_extension_expression_repeat1, - STATE(4299), 1, - sym_functor_parameters, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - STATE(5031), 2, - sym__module_structure, - sym_type_identifier_path, + STATE(4010), 1, + sym_type_annotation, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3268), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4445), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160278] = 19, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [118610] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3992), 1, - anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2859), 1, + ACTIONS(3182), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3186), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3190), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_GT_GT, + STATE(2243), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3662), 1, - sym_module_primary_expression, - STATE(3953), 1, - sym_module_expression, - STATE(4287), 1, - aux_sym_extension_expression_repeat1, - STATE(4299), 1, - sym_functor_parameters, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - STATE(4795), 2, - sym__module_structure, - sym_type_identifier_path, + ACTIONS(3176), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3198), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4445), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160345] = 19, + ACTIONS(1810), 3, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3192), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3174), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3202), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_COLON_GT, + [118686] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3992), 1, - anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2860), 1, + ACTIONS(3182), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3190), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_GT_GT, + STATE(2244), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3662), 1, - sym_module_primary_expression, - STATE(3953), 1, - sym_module_expression, - STATE(4287), 1, - aux_sym_extension_expression_repeat1, - STATE(4299), 1, - sym_functor_parameters, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - STATE(5062), 2, - sym__module_structure, - sym_type_identifier_path, + ACTIONS(3176), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3198), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4445), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160412] = 19, + ACTIONS(1810), 3, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3192), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3174), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3202), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [118760] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3992), 1, - anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2861), 1, + ACTIONS(3092), 1, + anon_sym_COLON_GT, + ACTIONS(3238), 1, + anon_sym_STAR_STAR, + ACTIONS(3242), 1, + anon_sym_GT_GT, + ACTIONS(3256), 1, + anon_sym_QMARK, + ACTIONS(3258), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3260), 1, + anon_sym_AMP_AMP, + ACTIONS(3262), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3264), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3266), 1, + anon_sym_CARET_CARET_CARET, + STATE(2245), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3662), 1, - sym_module_primary_expression, - STATE(3953), 1, - sym_module_expression, - STATE(4287), 1, - aux_sym_extension_expression_repeat1, - STATE(4299), 1, - sym_functor_parameters, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - STATE(5075), 2, - sym__module_structure, - sym_type_identifier_path, + ACTIONS(3230), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3240), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4445), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160479] = 20, + ACTIONS(3234), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3236), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3228), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3244), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(3270), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [118842] = 24, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, anon_sym_QMARK, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2862), 1, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3272), 1, + anon_sym_RPAREN, + ACTIONS(3274), 1, + anon_sym_COMMA, + STATE(2246), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4268), 1, - sym__record_element, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + STATE(4229), 1, + sym_type_annotation, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160548] = 20, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [118930] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_QMARK, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2863), 1, + ACTIONS(3182), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3184), 1, + anon_sym_AMP_AMP, + ACTIONS(3186), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3190), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_GT_GT, + STATE(2247), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4382), 1, - sym__record_element, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(1810), 2, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + ACTIONS(3176), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3198), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160617] = 19, + ACTIONS(3192), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3174), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3202), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_COLON_GT, + [119008] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3992), 1, - anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2864), 1, + ACTIONS(3182), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_GT_GT, + STATE(2248), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3662), 1, - sym_module_primary_expression, - STATE(3953), 1, - sym_module_expression, - STATE(4287), 1, - aux_sym_extension_expression_repeat1, - STATE(4299), 1, - sym_functor_parameters, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - STATE(4985), 2, - sym__module_structure, - sym_type_identifier_path, + ACTIONS(3176), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3198), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4445), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160684] = 20, + ACTIONS(1810), 3, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3192), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3174), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3202), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [119080] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_QMARK, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2865), 1, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + STATE(2249), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4389), 1, - sym__record_element, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160753] = 19, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 7, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [119154] = 24, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3992), 1, - anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2866), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3298), 1, + anon_sym_RPAREN, + ACTIONS(3300), 1, + anon_sym_COMMA, + STATE(2250), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3662), 1, - sym_module_primary_expression, - STATE(3953), 1, - sym_module_expression, - STATE(4287), 1, - aux_sym_extension_expression_repeat1, - STATE(4299), 1, - sym_functor_parameters, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - STATE(4932), 2, - sym__module_structure, - sym_type_identifier_path, + STATE(4362), 1, + sym_type_annotation, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4445), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160820] = 19, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [119242] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3992), 1, - anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2867), 1, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + STATE(2251), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3662), 1, - sym_module_primary_expression, - STATE(3953), 1, - sym_module_expression, - STATE(4287), 1, - aux_sym_extension_expression_repeat1, - STATE(4299), 1, - sym_functor_parameters, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - STATE(4878), 2, - sym__module_structure, - sym_type_identifier_path, + ACTIONS(3180), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4445), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160887] = 20, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 10, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [119300] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_QMARK, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2868), 1, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + STATE(2252), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4279), 1, - sym__record_element, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3176), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3180), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [160956] = 20, + ACTIONS(3192), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 8, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [119362] = 24, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, anon_sym_QMARK, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2869), 1, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3302), 1, + anon_sym_RPAREN, + ACTIONS(3304), 1, + anon_sym_COMMA, + STATE(2253), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4453), 1, - sym__record_element, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + STATE(4315), 1, + sym_type_annotation, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161025] = 20, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [119450] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, + ACTIONS(1902), 1, + anon_sym_PIPE, + ACTIONS(3168), 1, + anon_sym_COLON_GT, + ACTIONS(3254), 1, + anon_sym_STAR_STAR, + ACTIONS(3308), 1, anon_sym_QMARK, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2870), 1, + ACTIONS(3310), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3312), 1, + anon_sym_AMP_AMP, + ACTIONS(3314), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3316), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3318), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3322), 1, + anon_sym_GT_GT, + STATE(2254), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4365), 1, - sym__record_element, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3248), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3320), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161094] = 20, + ACTIONS(1904), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(3250), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3252), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3306), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3324), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [119534] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(89), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_QMARK, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2871), 1, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + STATE(2255), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4377), 1, - sym__record_field_name, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4650), 1, - sym__record_element, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4613), 3, - sym_record_field, - sym__record_pun_field, - sym_spread_element, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161163] = 19, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 18, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [119592] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3992), 1, - anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2872), 1, + ACTIONS(1906), 1, + anon_sym_COLON, + ACTIONS(3182), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3184), 1, + anon_sym_AMP_AMP, + ACTIONS(3186), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3188), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3190), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_GT_GT, + ACTIONS(3204), 1, + anon_sym_COLON_GT, + STATE(2256), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3662), 1, - sym_module_primary_expression, - STATE(3953), 1, - sym_module_expression, - STATE(4287), 1, - aux_sym_extension_expression_repeat1, - STATE(4299), 1, - sym_functor_parameters, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - STATE(4787), 2, - sym__module_structure, - sym_type_identifier_path, + ACTIONS(3176), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3198), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4445), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161230] = 19, + ACTIONS(3192), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1908), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(3174), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3202), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [119674] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3992), 1, - anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2873), 1, + ACTIONS(3238), 1, + anon_sym_STAR_STAR, + ACTIONS(3242), 1, + anon_sym_GT_GT, + ACTIONS(3258), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3262), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3266), 1, + anon_sym_CARET_CARET_CARET, + STATE(2257), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3662), 1, - sym_module_primary_expression, - STATE(3953), 1, - sym_module_expression, - STATE(4287), 1, - aux_sym_extension_expression_repeat1, - STATE(4299), 1, - sym_functor_parameters, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, - STATE(4808), 2, - sym__module_structure, - sym_type_identifier_path, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3240), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4445), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161297] = 19, + ACTIONS(3234), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3236), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3228), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3244), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON_GT, + [119750] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4032), 1, - anon_sym_await, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2874), 1, + ACTIONS(1810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + STATE(2258), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3580), 1, - sym_module_expression, - STATE(4334), 1, - sym_functor_parameters, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3684), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161363] = 19, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COLON_GT, + [119828] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4040), 1, - anon_sym_await, - STATE(2875), 1, + ACTIONS(3092), 1, + anon_sym_COLON_GT, + ACTIONS(3238), 1, + anon_sym_STAR_STAR, + ACTIONS(3242), 1, + anon_sym_GT_GT, + ACTIONS(3258), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3260), 1, + anon_sym_AMP_AMP, + ACTIONS(3262), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3264), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3266), 1, + anon_sym_CARET_CARET_CARET, + STATE(2259), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3553), 1, - sym_module_expression, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(4539), 1, - sym_functor_parameters, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3230), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3240), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3684), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161429] = 19, + ACTIONS(3234), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3236), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3228), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3244), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1908), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_QMARK, + [119908] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4042), 1, - anon_sym_await, - STATE(2876), 1, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + STATE(2260), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3548), 1, - sym_module_expression, - STATE(4334), 1, - sym_functor_parameters, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3693), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161495] = 19, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [119978] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + STATE(2261), 1, + sym_decorator, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, anon_sym_PERCENT, - ACTIONS(3797), 1, + anon_sym_SLASH_DOT, + ACTIONS(1810), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 13, anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4044), 1, - anon_sym_await, - STATE(2877), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [120044] = 13, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(3254), 1, + anon_sym_STAR_STAR, + ACTIONS(3322), 1, + anon_sym_GT_GT, + STATE(2262), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3550), 1, - sym_module_expression, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(4539), 1, - sym_functor_parameters, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3248), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3320), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3693), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161561] = 18, + ACTIONS(3250), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3252), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 12, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [120110] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2878), 1, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_GT_GT, + STATE(2263), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3474), 1, - sym_module_expression, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(4538), 1, - sym_functor_parameters, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3176), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3198), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3594), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161624] = 18, + ACTIONS(1810), 3, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3192), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3174), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3202), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [120180] = 24, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2879), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3330), 1, + anon_sym_RPAREN, + ACTIONS(3332), 1, + anon_sym_COMMA, + STATE(2264), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3501), 1, - sym_module_expression, - STATE(4334), 1, - sym_functor_parameters, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + STATE(4021), 1, + sym_type_annotation, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3594), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161687] = 18, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [120268] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2880), 1, + ACTIONS(3168), 1, + anon_sym_COLON_GT, + ACTIONS(3254), 1, + anon_sym_STAR_STAR, + ACTIONS(3308), 1, + anon_sym_QMARK, + ACTIONS(3310), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3312), 1, + anon_sym_AMP_AMP, + ACTIONS(3314), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3316), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3318), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3322), 1, + anon_sym_GT_GT, + ACTIONS(3334), 1, + anon_sym_PIPE, + STATE(2265), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3578), 1, - sym_module_expression, - STATE(4334), 1, - sym_functor_parameters, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3248), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3320), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3722), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161750] = 18, + ACTIONS(3250), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3252), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3270), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(3306), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3324), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [120352] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2881), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + STATE(2266), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3511), 1, - sym_module_expression, - STATE(4334), 1, - sym_functor_parameters, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3636), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161813] = 18, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1908), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [120432] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3992), 1, - anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2882), 1, + ACTIONS(1902), 1, + anon_sym_COLON, + ACTIONS(3178), 1, + anon_sym_QMARK, + ACTIONS(3182), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3184), 1, + anon_sym_AMP_AMP, + ACTIONS(3186), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3188), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3190), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_GT_GT, + ACTIONS(3204), 1, + anon_sym_COLON_GT, + STATE(2267), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(4096), 1, - sym_module_expression, - STATE(4287), 1, - aux_sym_extension_expression_repeat1, - STATE(4299), 1, - sym_functor_parameters, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3176), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3198), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4574), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161876] = 18, + ACTIONS(1904), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(3192), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3174), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3202), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [120516] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3992), 1, - anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2883), 1, + ACTIONS(3254), 1, + anon_sym_STAR_STAR, + ACTIONS(3322), 1, + anon_sym_GT_GT, + STATE(2268), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(4087), 1, - sym_module_expression, - STATE(4287), 1, - aux_sym_extension_expression_repeat1, - STATE(4299), 1, - sym_functor_parameters, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3248), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3320), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4598), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [161939] = 18, + ACTIONS(1810), 3, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3250), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3252), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3306), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3324), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [120586] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2884), 1, + ACTIONS(3254), 1, + anon_sym_STAR_STAR, + ACTIONS(3310), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3314), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3318), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3322), 1, + anon_sym_GT_GT, + STATE(2269), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3616), 1, - sym_module_expression, - STATE(4334), 1, - sym_functor_parameters, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3248), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3320), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3613), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [162002] = 18, + ACTIONS(1810), 3, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3250), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3252), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3306), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3324), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COLON_GT, + [120662] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4046), 1, - anon_sym_LPAREN, - STATE(2885), 1, + ACTIONS(3238), 1, + anon_sym_STAR_STAR, + ACTIONS(3242), 1, + anon_sym_GT_GT, + ACTIONS(3258), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3266), 1, + anon_sym_CARET_CARET_CARET, + STATE(2270), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3727), 1, - sym_module_expression, - STATE(4334), 1, - sym_functor_parameters, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3240), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3918), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [162065] = 18, + ACTIONS(3234), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3236), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3228), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3244), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 7, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [120736] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2886), 1, + ACTIONS(1810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3238), 1, + anon_sym_STAR_STAR, + ACTIONS(3242), 1, + anon_sym_GT_GT, + ACTIONS(3258), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3260), 1, + anon_sym_AMP_AMP, + ACTIONS(3262), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3266), 1, + anon_sym_CARET_CARET_CARET, + STATE(2271), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3573), 1, - sym_module_expression, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(4539), 1, - sym_functor_parameters, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3230), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3240), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3613), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [162128] = 18, + ACTIONS(3234), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3236), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3228), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3244), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON_GT, + [120814] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2887), 1, + ACTIONS(3254), 1, + anon_sym_STAR_STAR, + ACTIONS(3310), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3318), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3322), 1, + anon_sym_GT_GT, + STATE(2272), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3554), 1, - sym_module_expression, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(4539), 1, - sym_functor_parameters, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3248), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3320), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3722), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [162191] = 18, + ACTIONS(1810), 3, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3250), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3252), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3306), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3324), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [120888] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2888), 1, + ACTIONS(3238), 1, + anon_sym_STAR_STAR, + ACTIONS(3242), 1, + anon_sym_GT_GT, + ACTIONS(3258), 1, + anon_sym_AMP_AMP_AMP, + STATE(2273), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3475), 1, - sym_module_expression, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(4538), 1, - sym_functor_parameters, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3240), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3613), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [162254] = 18, + ACTIONS(3234), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3236), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3228), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3244), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [120960] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2889), 1, + ACTIONS(3238), 1, + anon_sym_STAR_STAR, + ACTIONS(3242), 1, + anon_sym_GT_GT, + STATE(2274), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3552), 1, - sym_module_expression, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(4539), 1, - sym_functor_parameters, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3230), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3240), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3636), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [162317] = 18, + ACTIONS(3234), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3236), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 13, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [121026] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2890), 1, + ACTIONS(3238), 1, + anon_sym_STAR_STAR, + STATE(2275), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3572), 1, - sym_module_expression, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(4539), 1, - sym_functor_parameters, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3232), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3594), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [162380] = 18, + ACTIONS(3236), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 18, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [121084] = 24, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2891), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3330), 1, + anon_sym_RPAREN, + ACTIONS(3332), 1, + anon_sym_COMMA, + STATE(2276), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3480), 1, - sym_module_expression, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(4540), 1, - sym_functor_parameters, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + STATE(4131), 1, + sym_type_annotation, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3594), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [162443] = 18, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [121172] = 24, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2892), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3272), 1, + anon_sym_RPAREN, + ACTIONS(3274), 1, + anon_sym_COMMA, + STATE(2277), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3481), 1, - sym_module_expression, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(4540), 1, - sym_functor_parameters, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + STATE(3967), 1, + sym_type_annotation, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3613), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [162506] = 18, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [121260] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4046), 1, - anon_sym_LPAREN, - STATE(2893), 1, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_GT_GT, + STATE(2278), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3744), 1, - sym_module_expression, - STATE(4521), 1, - aux_sym_extension_expression_repeat1, - STATE(4539), 1, - sym_functor_parameters, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3176), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3198), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3918), 3, - sym_block, - sym_functor, - sym_extension_expression, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [162569] = 20, + ACTIONS(3192), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 7, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 12, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [121326] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4048), 1, - anon_sym_RBRACE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2894), 1, + ACTIONS(3196), 1, + anon_sym_STAR_STAR, + STATE(2279), 1, sym_decorator, - STATE(4477), 1, - sym__record_type_member, - STATE(4483), 1, - sym__object_type_member, - STATE(4492), 1, - sym_value_identifier, - STATE(4609), 1, - sym_record_type_field, - STATE(4614), 1, - sym_type_spread, - STATE(4630), 1, - sym_object_type_field, - STATE(4917), 1, - sym_string, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(4050), 2, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(3180), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [162634] = 6, + ACTIONS(3194), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 10, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [121384] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2895), 1, + ACTIONS(3238), 1, + anon_sym_STAR_STAR, + STATE(2280), 1, sym_decorator, - ACTIONS(1260), 2, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3232), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1258), 16, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, + ACTIONS(3236), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - anon_sym_COLON_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 18, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_COLON_GT, - anon_sym_with, - [162671] = 20, + [121442] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - ACTIONS(4056), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2896), 1, + ACTIONS(3238), 1, + anon_sym_STAR_STAR, + STATE(2281), 1, sym_decorator, - STATE(4271), 1, - sym__record_type_member, - STATE(4272), 1, - sym__object_type_member, - STATE(4492), 1, - sym_value_identifier, - STATE(4609), 1, - sym_record_type_field, - STATE(4614), 1, - sym_type_spread, - STATE(4630), 1, - sym_object_type_field, - STATE(4917), 1, - sym_string, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(4058), 2, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(3230), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3232), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [162736] = 20, + ACTIONS(3234), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3236), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 15, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [121504] = 24, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - ACTIONS(4060), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2897), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3338), 1, + anon_sym_RPAREN, + ACTIONS(3340), 1, + anon_sym_COMMA, + STATE(2282), 1, sym_decorator, - STATE(4368), 1, - sym__record_type_member, - STATE(4369), 1, - sym__object_type_member, - STATE(4492), 1, - sym_value_identifier, - STATE(4609), 1, - sym_record_type_field, - STATE(4614), 1, - sym_type_spread, - STATE(4630), 1, - sym_object_type_field, - STATE(4917), 1, - sym_string, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(4062), 2, - anon_sym_DOT_DOT, - anon_sym_DOT, + STATE(3961), 1, + sym_type_annotation, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [162801] = 20, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [121592] = 24, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - ACTIONS(4064), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2898), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3298), 1, + anon_sym_RPAREN, + ACTIONS(3300), 1, + anon_sym_COMMA, + STATE(2283), 1, sym_decorator, - STATE(4399), 1, - sym__record_type_member, - STATE(4402), 1, - sym__object_type_member, - STATE(4492), 1, - sym_value_identifier, - STATE(4609), 1, - sym_record_type_field, - STATE(4614), 1, - sym_type_spread, - STATE(4630), 1, - sym_object_type_field, - STATE(4917), 1, - sym_string, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(4066), 2, - anon_sym_DOT_DOT, - anon_sym_DOT, + STATE(4056), 1, + sym_type_annotation, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [162866] = 20, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [121680] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - ACTIONS(4068), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2899), 1, + ACTIONS(3254), 1, + anon_sym_STAR_STAR, + ACTIONS(3310), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3312), 1, + anon_sym_AMP_AMP, + ACTIONS(3314), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3318), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3322), 1, + anon_sym_GT_GT, + STATE(2284), 1, sym_decorator, - STATE(4407), 1, - sym__record_type_member, - STATE(4411), 1, - sym__object_type_member, - STATE(4492), 1, - sym_value_identifier, - STATE(4609), 1, - sym_record_type_field, - STATE(4614), 1, - sym_type_spread, - STATE(4630), 1, - sym_object_type_field, - STATE(4917), 1, - sym_string, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(4070), 2, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(1810), 2, + anon_sym_PIPE, + anon_sym_PIPE_PIPE, + ACTIONS(3246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3248), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3320), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [162931] = 14, + ACTIONS(3250), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3252), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3306), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3324), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COLON_GT, + [121758] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(1226), 1, - anon_sym_SLASH, - ACTIONS(1231), 1, - aux_sym_value_identifier_token1, - ACTIONS(2113), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2900), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + STATE(2285), 1, sym_decorator, - STATE(4529), 1, - sym_formal_parameters, - STATE(5053), 1, - sym__definition_signature, - STATE(5055), 1, - sym_value_identifier, - ACTIONS(1228), 2, - anon_sym_unpack, - anon_sym_async, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1221), 8, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1904), 4, anon_sym_LBRACE, - anon_sym_EQ_GT, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3276), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [162984] = 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [121840] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - ACTIONS(4072), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2901), 1, + ACTIONS(3254), 1, + anon_sym_STAR_STAR, + ACTIONS(3310), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3322), 1, + anon_sym_GT_GT, + STATE(2286), 1, sym_decorator, - STATE(4456), 1, - sym__record_type_member, - STATE(4457), 1, - sym__object_type_member, - STATE(4492), 1, - sym_value_identifier, - STATE(4609), 1, - sym_record_type_field, - STATE(4614), 1, - sym_type_spread, - STATE(4630), 1, - sym_object_type_field, - STATE(4917), 1, - sym_string, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(4074), 2, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(3246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3248), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3320), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [163049] = 6, + ACTIONS(1810), 3, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3250), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3252), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3306), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3324), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 7, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [121912] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2902), 1, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + STATE(2287), 1, sym_decorator, - ACTIONS(1335), 2, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1333), 16, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 7, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 15, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - anon_sym_COLON_EQ, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_COLON_GT, - anon_sym_with, - [163086] = 6, + [121974] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2903), 1, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + STATE(2288), 1, sym_decorator, - ACTIONS(1391), 2, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1389), 16, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - anon_sym_COLON_EQ, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, anon_sym_COLON_GT, - anon_sym_with, - [163123] = 17, + [122046] = 24, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - ACTIONS(4078), 1, + ACTIONS(3096), 1, + anon_sym_COLON, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3338), 1, anon_sym_RPAREN, - STATE(2904), 1, + ACTIONS(3340), 1, + anon_sym_COMMA, + STATE(2289), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(4176), 1, - sym_module_expression, - STATE(4608), 1, - sym__functor_argument, - STATE(4615), 1, - sym_block, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + STATE(4242), 1, + sym_type_annotation, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [163181] = 10, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [122134] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4080), 1, - anon_sym_else, - STATE(2905), 1, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + STATE(2290), 1, sym_decorator, - STATE(2926), 1, - aux_sym_if_expression_repeat1, - STATE(2980), 1, - sym_else_if_clause, - STATE(3064), 1, - sym_else_clause, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1312), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1310), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 18, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [163225] = 17, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [122192] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - ACTIONS(4082), 1, - anon_sym_RPAREN, - STATE(2906), 1, + ACTIONS(1906), 1, + anon_sym_PIPE, + ACTIONS(3168), 1, + anon_sym_COLON_GT, + ACTIONS(3254), 1, + anon_sym_STAR_STAR, + ACTIONS(3310), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3312), 1, + anon_sym_AMP_AMP, + ACTIONS(3314), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3316), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3318), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3322), 1, + anon_sym_GT_GT, + STATE(2291), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(4176), 1, - sym_module_expression, - STATE(4608), 1, - sym__functor_argument, - STATE(4615), 1, - sym_block, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3248), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3320), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [163283] = 17, + ACTIONS(3250), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3252), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1908), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + ACTIONS(3306), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3324), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [122274] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - ACTIONS(4084), 1, - anon_sym_RPAREN, - STATE(2907), 1, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + STATE(2292), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(4176), 1, - sym_module_expression, - STATE(4366), 1, - sym__functor_argument, - STATE(4615), 1, - sym_block, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [163341] = 17, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COLON_GT, + [122350] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - ACTIONS(4086), 1, - anon_sym_RPAREN, - STATE(2908), 1, + ACTIONS(3254), 1, + anon_sym_STAR_STAR, + STATE(2293), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(4176), 1, - sym_module_expression, - STATE(4471), 1, - sym__functor_argument, - STATE(4615), 1, - sym_block, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3248), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [163399] = 17, + ACTIONS(3252), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 10, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 17, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [122408] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - ACTIONS(4088), 1, - anon_sym_RPAREN, - STATE(2909), 1, + ACTIONS(3254), 1, + anon_sym_STAR_STAR, + STATE(2294), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(4176), 1, - sym_module_expression, - STATE(4608), 1, - sym__functor_argument, - STATE(4615), 1, - sym_block, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3248), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [163457] = 17, + ACTIONS(3252), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 10, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 17, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [122466] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4090), 1, - anon_sym_RBRACE, - ACTIONS(4092), 1, - anon_sym_QMARK, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2910), 1, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + STATE(2295), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4263), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [163515] = 16, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 8, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 13, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [122527] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2911), 1, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + STATE(2296), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3493), 1, - sym_module_expression, - STATE(4538), 1, - sym_functor_parameters, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, - STATE(3691), 2, - sym_block, - sym_functor, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [163571] = 17, + ACTIONS(1810), 3, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [122596] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4092), 1, - anon_sym_QMARK, - ACTIONS(4094), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2912), 1, + ACTIONS(1906), 1, + anon_sym_COLON, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + STATE(2297), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4263), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [163629] = 17, + ACTIONS(1908), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [122677] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4092), 1, + ACTIONS(1902), 1, + anon_sym_COLON, + ACTIONS(3104), 1, anon_sym_QMARK, - ACTIONS(4096), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2913), 1, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + STATE(2298), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4263), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(1904), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [163687] = 8, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [122760] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4098), 1, - anon_sym_LT, - STATE(1070), 1, - sym_type_arguments, - STATE(2914), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3344), 1, + anon_sym_RPAREN, + ACTIONS(3346), 1, + anon_sym_COMMA, + ACTIONS(3352), 1, + anon_sym_QMARK, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3358), 1, + anon_sym_AMP_AMP, + ACTIONS(3360), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3362), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3364), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + STATE(2299), 1, sym_decorator, - ACTIONS(1305), 2, - anon_sym_COLON, - anon_sym_EQ, + STATE(3804), 1, + aux_sym_tuple_repeat1, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1303), 13, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - anon_sym_with, - [163727] = 10, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3348), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [122845] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4080), 1, - anon_sym_else, - STATE(2905), 1, - aux_sym_if_expression_repeat1, - STATE(2915), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3352), 1, + anon_sym_QMARK, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3358), 1, + anon_sym_AMP_AMP, + ACTIONS(3360), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3362), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3364), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + ACTIONS(3378), 1, + anon_sym_RPAREN, + ACTIONS(3380), 1, + anon_sym_COMMA, + STATE(2300), 1, sym_decorator, - STATE(2980), 1, - sym_else_if_clause, - STATE(3034), 1, - sym_else_clause, + STATE(3712), 1, + aux_sym_tuple_repeat1, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1269), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1267), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3348), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [163771] = 16, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [122930] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(2916), 1, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + STATE(2301), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3492), 1, - sym_module_expression, - STATE(4540), 1, - sym_functor_parameters, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, - STATE(3757), 2, - sym_block, - sym_functor, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [163827] = 17, + ACTIONS(1810), 3, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [123001] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4092), 1, + ACTIONS(3104), 1, anon_sym_QMARK, - ACTIONS(4100), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2917), 1, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3384), 1, + anon_sym_COLON, + STATE(2302), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4263), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3382), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [163885] = 17, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [123084] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - ACTIONS(4102), 1, - anon_sym_RPAREN, - STATE(2918), 1, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + STATE(2303), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(4176), 1, - sym_module_expression, - STATE(4608), 1, - sym__functor_argument, - STATE(4615), 1, - sym_block, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(1810), 2, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [163943] = 17, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1812), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_GT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [123161] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4092), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, anon_sym_QMARK, - ACTIONS(4104), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2919), 1, + ACTIONS(3386), 1, + anon_sym_COMMA, + ACTIONS(3388), 1, + anon_sym_RBRACK, + STATE(2304), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4263), 2, - sym_value_identifier_path, - sym_value_identifier, + STATE(3667), 1, + aux_sym_array_repeat1, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164001] = 16, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [123246] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4106), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, anon_sym_QMARK, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2920), 1, + ACTIONS(3390), 1, + anon_sym_COMMA, + ACTIONS(3392), 1, + anon_sym_RBRACK, + STATE(2305), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4076), 2, - sym_value_identifier_path, - sym_value_identifier, + STATE(3883), 1, + aux_sym_array_repeat1, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164056] = 16, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [123331] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2921), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3352), 1, + anon_sym_QMARK, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3358), 1, + anon_sym_AMP_AMP, + ACTIONS(3360), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3362), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3364), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + ACTIONS(3394), 1, + anon_sym_RPAREN, + ACTIONS(3396), 1, + anon_sym_COMMA, + STATE(2306), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4641), 1, - sym__record_field_name, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + STATE(3748), 1, + aux_sym_tuple_repeat1, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164111] = 6, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3348), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [123416] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2922), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + STATE(2307), 1, sym_decorator, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1335), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_as, - aux_sym_type_identifier_token1, - ACTIONS(1333), 12, + ACTIONS(1983), 3, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - sym__escape_identifier, - [164146] = 16, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [123497] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2923), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3398), 1, + anon_sym_COMMA, + ACTIONS(3400), 1, + anon_sym_RBRACK, + STATE(2308), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3556), 1, - sym_value_identifier, - STATE(4340), 1, - sym_module_primary_expression, - STATE(3078), 2, - sym_nested_variant_identifier, - sym_variant_identifier, + STATE(3689), 1, + aux_sym_array_repeat1, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164201] = 16, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [123582] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2924), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3352), 1, + anon_sym_QMARK, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3358), 1, + anon_sym_AMP_AMP, + ACTIONS(3360), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3362), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3364), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + ACTIONS(3402), 1, + anon_sym_RPAREN, + ACTIONS(3404), 1, + anon_sym_COMMA, + STATE(2309), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3884), 1, - sym_value_identifier, - STATE(4340), 1, - sym_module_primary_expression, - STATE(3078), 2, - sym_nested_variant_identifier, - sym_variant_identifier, + STATE(3925), 1, + aux_sym_tuple_repeat1, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164256] = 16, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3348), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [123667] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - STATE(2925), 1, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + STATE(2310), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(4176), 1, - sym_module_expression, - STATE(4608), 1, - sym__functor_argument, - STATE(4615), 1, - sym_block, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164311] = 8, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 7, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 11, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [123732] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4108), 1, - anon_sym_else, - STATE(2980), 1, - sym_else_if_clause, - STATE(2926), 2, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + STATE(2311), 1, sym_decorator, - aux_sym_if_expression_repeat1, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1484), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1482), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 10, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 16, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [164350] = 16, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [123789] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2927), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3406), 1, + anon_sym_COMMA, + ACTIONS(3408), 1, + anon_sym_RBRACK, + STATE(2312), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3547), 1, - sym_value_identifier, - STATE(4340), 1, - sym_module_primary_expression, - STATE(3078), 2, - sym_nested_variant_identifier, - sym_variant_identifier, + STATE(3872), 1, + aux_sym_array_repeat1, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164405] = 16, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [123874] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2928), 1, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + STATE(2313), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3656), 1, - sym_value_identifier, - STATE(4340), 1, - sym_module_primary_expression, - STATE(3078), 2, - sym_nested_variant_identifier, - sym_variant_identifier, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164460] = 16, + ACTIONS(1810), 3, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [123947] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2929), 1, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + STATE(2314), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3342), 1, - sym_value_identifier, - STATE(4340), 1, - sym_module_primary_expression, - STATE(3078), 2, - sym_nested_variant_identifier, - sym_variant_identifier, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164515] = 6, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 10, + anon_sym_COLON, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [124004] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2930), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3410), 1, + anon_sym_COMMA, + ACTIONS(3412), 1, + anon_sym_RBRACK, + STATE(2315), 1, sym_decorator, + STATE(3702), 1, + aux_sym_array_repeat1, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3096), 7, - anon_sym_module, - anon_sym_type, - anon_sym_unpack, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_type_identifier_token1, - sym_unit_type, - ACTIONS(3094), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK_GT, - anon_sym_LBRACK_LT, - anon_sym_TILDE, - aux_sym_variant_identifier_token1, - sym__escape_identifier, - [164550] = 16, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [124089] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2931), 1, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + STATE(2316), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4641), 1, - sym__record_field_name, - STATE(4132), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164605] = 16, + ACTIONS(1810), 3, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1812), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_GT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [124164] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2932), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3352), 1, + anon_sym_QMARK, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3358), 1, + anon_sym_AMP_AMP, + ACTIONS(3360), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3362), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3364), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + ACTIONS(3414), 1, + anon_sym_RPAREN, + ACTIONS(3416), 1, + anon_sym_COMMA, + STATE(2317), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3669), 1, - sym_value_identifier, - STATE(4340), 1, - sym_module_primary_expression, - STATE(3078), 2, - sym_nested_variant_identifier, - sym_variant_identifier, + STATE(3780), 1, + aux_sym_tuple_repeat1, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164660] = 16, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3348), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [124249] = 23, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2933), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3352), 1, + anon_sym_QMARK, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3358), 1, + anon_sym_AMP_AMP, + ACTIONS(3360), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3362), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3364), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + ACTIONS(3418), 1, + anon_sym_RPAREN, + ACTIONS(3420), 1, + anon_sym_COMMA, + STATE(2318), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3673), 1, - sym_value_identifier, - STATE(4340), 1, - sym_module_primary_expression, - STATE(3078), 2, - sym_nested_variant_identifier, - sym_variant_identifier, + STATE(3918), 1, + aux_sym_tuple_repeat1, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164715] = 16, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3348), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [124334] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4092), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3352), 1, anon_sym_QMARK, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2934), 1, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3358), 1, + anon_sym_AMP_AMP, + ACTIONS(3360), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3362), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3364), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + STATE(2319), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4263), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3382), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164770] = 8, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3348), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [124414] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - STATE(2935), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3422), 1, + anon_sym_LBRACE, + STATE(1072), 1, + sym_block, + STATE(2320), 1, sym_decorator, - ACTIONS(2525), 2, - anon_sym_DOT, - sym__escape_identifier, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_as, - ACTIONS(1258), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [164809] = 16, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [124496] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2936), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3422), 1, + anon_sym_LBRACE, + STATE(1105), 1, + sym_block, + STATE(2321), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4646), 1, - sym__record_field_name, - STATE(4504), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164864] = 16, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [124578] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2937), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3424), 1, + anon_sym_LBRACE, + STATE(723), 1, + sym_block, + STATE(2322), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3341), 1, - sym_value_identifier, - STATE(4340), 1, - sym_module_primary_expression, - STATE(3078), 2, - sym_nested_variant_identifier, - sym_variant_identifier, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [164919] = 17, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [124660] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4115), 1, - anon_sym_GT, - ACTIONS(4117), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, anon_sym_QMARK, - ACTIONS(4119), 1, - anon_sym_SLASH, - ACTIONS(4121), 1, - sym__escape_identifier, - STATE(2938), 1, + ACTIONS(3424), 1, + anon_sym_LBRACE, + STATE(927), 1, + sym_block, + STATE(2323), 1, sym_decorator, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2959), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [164975] = 15, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [124742] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3779), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3424), 1, anon_sym_LBRACE, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - STATE(2939), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(3647), 1, - sym_module_expression, - STATE(3902), 1, + STATE(848), 1, sym_block, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + STATE(2324), 1, + sym_decorator, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [165027] = 17, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [124824] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4115), 1, - anon_sym_GT, - ACTIONS(4117), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, anon_sym_QMARK, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4123), 1, - anon_sym_SLASH, - STATE(2940), 1, + ACTIONS(3424), 1, + anon_sym_LBRACE, + STATE(978), 1, + sym_block, + STATE(2325), 1, sym_decorator, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2959), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [165083] = 15, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [124906] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4125), 1, - aux_sym_type_identifier_token1, - ACTIONS(4127), 1, - sym__escape_identifier, - STATE(2941), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + STATE(2326), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4430), 1, - sym_module_primary_expression, - STATE(4584), 1, - sym_generic_type, - STATE(4585), 1, - sym__type_identifier, - STATE(4276), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3426), 2, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [165135] = 15, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [124986] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4129), 1, - anon_sym_rec, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - STATE(2942), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3428), 1, + anon_sym_LBRACE, + STATE(1485), 1, + sym_block, + STATE(2327), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3704), 1, - sym_type_binding, - STATE(4213), 1, - sym_module_primary_expression, - STATE(3163), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [165187] = 15, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [125068] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3797), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3428), 1, anon_sym_LBRACE, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4135), 1, - anon_sym_LPAREN, - STATE(2943), 1, - sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3415), 1, - sym_module_expression, - STATE(3491), 1, + STATE(2051), 1, sym_block, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + STATE(2328), 1, + sym_decorator, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [165239] = 17, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [125150] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4115), 1, - anon_sym_GT, - ACTIONS(4117), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3434), 1, anon_sym_QMARK, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4137), 1, - anon_sym_SLASH, - STATE(2944), 1, + ACTIONS(3440), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3442), 1, + anon_sym_AMP_AMP, + ACTIONS(3444), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3446), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3448), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_GT_GT, + STATE(2329), 1, sym_decorator, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2959), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3438), 2, + anon_sym_to, + anon_sym_downto, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [165295] = 15, + ACTIONS(3450), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3430), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3460), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [125230] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3994), 1, - anon_sym_RPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - STATE(2945), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + STATE(2330), 1, sym_decorator, - STATE(3483), 1, - sym_module_primary_expression, - STATE(3545), 1, - sym_module_identifier, - STATE(4043), 1, - sym_module_expression, - STATE(4259), 1, - sym_functor_parameter, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3462), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [165347] = 15, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [125310] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3994), 1, - anon_sym_RPAREN, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - STATE(2946), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3352), 1, + anon_sym_QMARK, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3358), 1, + anon_sym_AMP_AMP, + ACTIONS(3360), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3362), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3364), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + STATE(2331), 1, sym_decorator, - STATE(3483), 1, - sym_module_primary_expression, - STATE(3545), 1, - sym_module_identifier, - STATE(3908), 1, - sym_module_expression, - STATE(4259), 1, - sym_functor_parameter, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3464), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [165399] = 17, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3348), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [125390] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, anon_sym_QMARK, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4139), 1, - anon_sym_GT, - ACTIONS(4141), 1, - anon_sym_SLASH, - STATE(2938), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2947), 1, + STATE(2332), 1, sym_decorator, - STATE(2950), 1, - sym__reserved_identifier, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3466), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [165455] = 15, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [125470] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - STATE(2948), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + STATE(2333), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(4361), 1, - sym_block, - STATE(4374), 1, - sym_module_expression, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3468), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [165507] = 17, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [125550] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4115), 1, - anon_sym_GT, - ACTIONS(4117), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, anon_sym_QMARK, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4143), 1, - anon_sym_SLASH, - STATE(2949), 1, + ACTIONS(3470), 1, + anon_sym_LBRACE, + STATE(2334), 1, sym_decorator, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2959), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + STATE(2526), 1, + sym_block, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [165563] = 6, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [125632] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2950), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3470), 1, + anon_sym_LBRACE, + STATE(2335), 1, sym_decorator, + STATE(2614), 1, + sym_block, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1383), 5, - anon_sym_EQ, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1381), 10, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [165597] = 17, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [125714] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, anon_sym_QMARK, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4139), 1, - anon_sym_GT, - ACTIONS(4145), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2951), 1, + ACTIONS(3428), 1, + anon_sym_LBRACE, + STATE(1853), 1, + sym_block, + STATE(2336), 1, sym_decorator, - STATE(2971), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [165653] = 17, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [125796] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4115), 1, - anon_sym_GT, - ACTIONS(4117), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, anon_sym_QMARK, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4147), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2952), 1, + ACTIONS(3428), 1, + anon_sym_LBRACE, + STATE(2058), 1, + sym_block, + STATE(2337), 1, sym_decorator, - STATE(2959), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [165709] = 15, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [125878] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - ACTIONS(4149), 1, - anon_sym_rec, - STATE(2953), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3434), 1, + anon_sym_QMARK, + ACTIONS(3440), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3442), 1, + anon_sym_AMP_AMP, + ACTIONS(3444), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3446), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3448), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_GT_GT, + STATE(2338), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3706), 1, - sym_type_binding, - STATE(4213), 1, - sym_module_primary_expression, - STATE(3163), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3472), 2, + anon_sym_to, + anon_sym_downto, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [165761] = 7, + ACTIONS(3450), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3430), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3460), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [125958] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2954), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3474), 1, + anon_sym_LBRACE, + STATE(1607), 1, + sym_block, + STATE(2339), 1, sym_decorator, - ACTIONS(1547), 2, - anon_sym_COLON, - anon_sym_EQ_GT, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1423), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1421), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [165797] = 17, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [126040] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, anon_sym_QMARK, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4139), 1, - anon_sym_GT, - ACTIONS(4151), 1, - anon_sym_SLASH, - STATE(2944), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2955), 1, + ACTIONS(3474), 1, + anon_sym_LBRACE, + STATE(1681), 1, + sym_block, + STATE(2340), 1, sym_decorator, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [165853] = 8, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [126122] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - STATE(2956), 1, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + STATE(2341), 1, sym_decorator, - ACTIONS(2525), 2, - anon_sym_DOT, - sym__escape_identifier, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 4, - anon_sym_EQ, - anon_sym_and, - anon_sym_constraint, - anon_sym_as, - ACTIONS(1258), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 6, anon_sym_LT, - anon_sym_PIPE, - [165891] = 10, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 11, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [126186] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1240), 1, - anon_sym_EQ, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(4153), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(2957), 1, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + STATE(2342), 1, sym_decorator, - STATE(3026), 1, - sym_variant_parameters, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 16, anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - [165933] = 17, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [126242] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4117), 1, - anon_sym_QMARK, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4139), 1, - anon_sym_GT, - ACTIONS(4155), 1, - anon_sym_SLASH, - STATE(2949), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2958), 1, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + STATE(2343), 1, sym_decorator, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [165989] = 16, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4157), 1, - anon_sym_LBRACE, - ACTIONS(4163), 1, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3348), 4, + anon_sym_LT, anon_sym_GT, - ACTIONS(4165), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 7, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_QMARK, - ACTIONS(4168), 1, - anon_sym_SLASH, - ACTIONS(4170), 1, - aux_sym_value_identifier_token1, - ACTIONS(4173), 1, - sym__escape_identifier, - STATE(2950), 1, - sym__reserved_identifier, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4160), 2, - anon_sym_unpack, - anon_sym_async, - STATE(2959), 2, - sym_decorator, - aux_sym_jsx_opening_element_repeat1, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [166043] = 15, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [126310] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - ACTIONS(4176), 1, - anon_sym_rec, - STATE(2960), 1, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3360), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3364), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + STATE(2344), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3670), 1, - sym_type_binding, - STATE(4213), 1, - sym_module_primary_expression, - STATE(3157), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [166095] = 17, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1812), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_GT, + ACTIONS(3348), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [126384] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4117), 1, - anon_sym_QMARK, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4139), 1, - anon_sym_GT, - ACTIONS(4178), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, + ACTIONS(1810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3358), 1, + anon_sym_AMP_AMP, + ACTIONS(3360), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3364), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + STATE(2345), 1, sym_decorator, - STATE(2969), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [166151] = 15, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1812), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_GT, + ACTIONS(3348), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [126460] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - ACTIONS(4180), 1, - anon_sym_rec, - STATE(2962), 1, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + STATE(2346), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3681), 1, - sym_type_binding, - STATE(4213), 1, - sym_module_primary_expression, - STATE(3157), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [166203] = 6, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3348), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [126530] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2963), 1, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + STATE(2347), 1, sym_decorator, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1335), 5, - anon_sym_EQ, - anon_sym_and, - anon_sym_constraint, - anon_sym_as, - aux_sym_type_identifier_token1, - ACTIONS(1333), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, anon_sym_LT, - anon_sym_DOT, - anon_sym_PIPE, - sym__escape_identifier, - [166237] = 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [126586] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - STATE(2964), 1, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + STATE(2348), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(4159), 1, - sym_module_expression, - STATE(4361), 1, - sym_block, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [166289] = 15, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 13, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [126646] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2965), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3352), 1, + anon_sym_QMARK, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3358), 1, + anon_sym_AMP_AMP, + ACTIONS(3360), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3362), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3364), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + STATE(2349), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4537), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(1904), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [166341] = 17, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3348), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [126726] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4117), 1, - anon_sym_QMARK, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4139), 1, - anon_sym_GT, - ACTIONS(4182), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2952), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2966), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3358), 1, + anon_sym_AMP_AMP, + ACTIONS(3360), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3362), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3364), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + STATE(2350), 1, sym_decorator, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [166397] = 17, + ACTIONS(1908), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3348), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [126804] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3434), 1, anon_sym_QMARK, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4139), 1, - anon_sym_GT, - ACTIONS(4184), 1, - anon_sym_SLASH, - STATE(2940), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2967), 1, + ACTIONS(3440), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3442), 1, + anon_sym_AMP_AMP, + ACTIONS(3444), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3446), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3448), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_GT_GT, + STATE(2351), 1, sym_decorator, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3476), 2, + anon_sym_to, + anon_sym_downto, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [166453] = 15, + ACTIONS(3450), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3430), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3460), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [126884] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1195), 1, - anon_sym_unpack, - ACTIONS(1199), 1, - anon_sym_async, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym__reserved_identifier, - STATE(2968), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3434), 1, + anon_sym_QMARK, + ACTIONS(3440), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3442), 1, + anon_sym_AMP_AMP, + ACTIONS(3444), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3446), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3448), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_GT_GT, + STATE(2352), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4512), 1, - sym_module_primary_expression, - STATE(4204), 2, - sym_value_identifier_path, - sym_value_identifier, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3478), 2, + anon_sym_to, + anon_sym_downto, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [166505] = 17, + ACTIONS(3450), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3430), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3460), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [126964] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4115), 1, - anon_sym_GT, - ACTIONS(4117), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, anon_sym_QMARK, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4186), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2959), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2969), 1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + STATE(1018), 1, + sym_block, + STATE(2353), 1, sym_decorator, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [166561] = 6, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [127046] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2970), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3422), 1, + anon_sym_LBRACE, + STATE(1120), 1, + sym_block, + STATE(2354), 1, sym_decorator, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1553), 5, - anon_sym_COLON, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(2071), 10, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_COLON_EQ, - sym__escape_identifier, - [166595] = 17, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [127128] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4111), 1, - anon_sym_LBRACE, - ACTIONS(4115), 1, - anon_sym_GT, - ACTIONS(4117), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, anon_sym_QMARK, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4188), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2959), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2971), 1, + ACTIONS(3474), 1, + anon_sym_LBRACE, + STATE(1418), 1, + sym_block, + STATE(2355), 1, sym_decorator, - STATE(3347), 1, - sym__jsx_attribute_name, - STATE(3353), 1, - sym_value_identifier, - STATE(3462), 1, - sym__jsx_attribute, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3495), 2, - sym_jsx_expression, - sym_jsx_attribute, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [166651] = 14, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [127210] = 22, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4190), 1, - aux_sym_type_identifier_token1, - ACTIONS(4192), 1, - sym__escape_identifier, - STATE(826), 1, - sym__type_identifier, - STATE(2972), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3474), 1, + anon_sym_LBRACE, + STATE(1759), 1, + sym_block, + STATE(2356), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4527), 1, - sym_module_primary_expression, - STATE(818), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [166700] = 10, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [127292] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1240), 1, - anon_sym_EQ, - ACTIONS(2500), 1, - anon_sym_LPAREN, - ACTIONS(4194), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(2973), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + STATE(2357), 1, sym_decorator, - STATE(3141), 1, - sym_variant_parameters, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3480), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 9, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [166741] = 14, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [127372] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - STATE(1202), 1, - sym__type_identifier, - STATE(2974), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + STATE(2358), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4213), 1, - sym_module_primary_expression, - STATE(1156), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3482), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [166790] = 7, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [127452] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2668), 1, - anon_sym_EQ_GT, - STATE(2975), 1, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_GT_GT, + STATE(2359), 1, sym_decorator, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1428), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3450), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 6, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 11, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [166825] = 10, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [127516] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4196), 1, - anon_sym_LPAREN, - ACTIONS(4198), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_LBRACK, - STATE(2976), 1, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + STATE(2360), 1, sym_decorator, - STATE(3108), 1, - sym_call_arguments, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1563), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1559), 6, - anon_sym_LBRACE, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 16, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [166866] = 14, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [127572] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4202), 1, - aux_sym_type_identifier_token1, - ACTIONS(4204), 1, - sym__escape_identifier, - STATE(1763), 1, - sym__type_identifier, - STATE(2977), 1, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_GT_GT, + STATE(2361), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4514), 1, - sym_module_primary_expression, - STATE(1720), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [166915] = 14, + ACTIONS(3450), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3430), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3460), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 7, + anon_sym_QMARK, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [127640] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - STATE(2978), 1, + ACTIONS(3440), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3444), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3448), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_GT_GT, + STATE(2362), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3695), 1, - sym_type_binding, - STATE(4213), 1, - sym_module_primary_expression, - STATE(3163), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [166964] = 6, + ACTIONS(3450), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1812), 4, + anon_sym_QMARK, + anon_sym_to, + anon_sym_downto, + anon_sym_COLON_GT, + ACTIONS(3430), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3460), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [127714] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2979), 1, + ACTIONS(3440), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3448), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_GT_GT, + STATE(2363), 1, sym_decorator, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1597), 5, - anon_sym_unpack, - anon_sym_async, - anon_sym_else, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1595), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3450), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3430), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3460), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 5, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [166997] = 6, + anon_sym_to, + anon_sym_downto, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [127786] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2980), 1, + ACTIONS(1810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3440), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3442), 1, + anon_sym_AMP_AMP, + ACTIONS(3444), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3448), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_GT_GT, + STATE(2364), 1, sym_decorator, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1593), 5, - anon_sym_unpack, - anon_sym_async, - anon_sym_else, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1591), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(3450), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1812), 4, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [167030] = 6, + anon_sym_to, + anon_sym_downto, + anon_sym_COLON_GT, + ACTIONS(3430), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3460), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [127862] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2981), 1, + ACTIONS(3440), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_GT_GT, + STATE(2365), 1, sym_decorator, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1571), 5, - anon_sym_unpack, - anon_sym_async, - anon_sym_else, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1569), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3450), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3430), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3460), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 6, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [167063] = 14, + anon_sym_to, + anon_sym_downto, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [127932] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - STATE(2982), 1, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + STATE(2366), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3706), 1, - sym_type_binding, - STATE(4213), 1, - sym_module_primary_expression, - STATE(3163), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [167112] = 14, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 16, + anon_sym_QMARK, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [127988] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4206), 1, - aux_sym_type_identifier_token1, - ACTIONS(4208), 1, - sym__escape_identifier, - STATE(1068), 1, - sym__type_identifier, - STATE(2983), 1, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + STATE(2367), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4242), 1, - sym_module_primary_expression, - STATE(2895), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [167161] = 14, + ACTIONS(3450), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 13, + anon_sym_QMARK, + anon_sym_to, + anon_sym_downto, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [128048] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4210), 1, - aux_sym_type_identifier_token1, - ACTIONS(4212), 1, - sym__escape_identifier, - STATE(2984), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3434), 1, + anon_sym_QMARK, + ACTIONS(3440), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3442), 1, + anon_sym_AMP_AMP, + ACTIONS(3444), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3446), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3448), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_GT_GT, + STATE(2368), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3520), 1, - sym__type_identifier, - STATE(4326), 1, - sym_module_primary_expression, - STATE(2895), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(1904), 2, + anon_sym_to, + anon_sym_downto, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [167210] = 6, + ACTIONS(3450), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3430), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3460), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [128128] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2985), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3440), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3442), 1, + anon_sym_AMP_AMP, + ACTIONS(3444), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3446), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3448), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3454), 1, + anon_sym_STAR_STAR, + ACTIONS(3458), 1, + anon_sym_GT_GT, + STATE(2369), 1, sym_decorator, + ACTIONS(3432), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3436), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1226), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1221), 10, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(1908), 3, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [167243] = 8, + anon_sym_to, + anon_sym_downto, + ACTIONS(3450), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3452), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3430), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3460), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [128206] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4214), 1, - anon_sym_LPAREN, - STATE(2986), 1, + ACTIONS(3356), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3364), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3370), 1, + anon_sym_STAR_STAR, + ACTIONS(3374), 1, + anon_sym_GT_GT, + STATE(2370), 1, sym_decorator, - STATE(3060), 1, - sym__extension_expression_payload, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3350), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1609), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1605), 8, - anon_sym_LBRACE, + ACTIONS(3366), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3368), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3348), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3376), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [167280] = 6, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + [128278] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(2987), 1, + ACTIONS(1810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3490), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3492), 1, + anon_sym_AMP_AMP, + ACTIONS(3494), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + ACTIONS(3506), 1, + anon_sym_GT_GT, + STATE(2371), 1, sym_decorator, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1335), 5, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - anon_sym_with, - aux_sym_type_identifier_token1, - ACTIONS(1333), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, + ACTIONS(1812), 3, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_COLON_GT, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3484), 4, anon_sym_LT, - anon_sym_DOT, - anon_sym_PIPE, - sym__escape_identifier, - [167313] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4206), 1, - aux_sym_type_identifier_token1, - ACTIONS(4208), 1, - sym__escape_identifier, - STATE(2988), 1, - sym_decorator, - STATE(3223), 1, - sym__type_identifier, - STATE(3322), 1, - sym_module_identifier, - STATE(4242), 1, - sym_module_primary_expression, - STATE(2895), 2, - sym_type_identifier_path, - sym_type_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [167362] = 7, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3508), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [128353] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4216), 1, - sym_regex_flags, - STATE(2989), 1, + ACTIONS(3516), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3518), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3524), 1, + anon_sym_STAR_STAR, + ACTIONS(3528), 1, + anon_sym_GT_GT, + STATE(2372), 1, sym_decorator, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1601), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1599), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(3520), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3522), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1812), 4, + anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [167397] = 14, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + ACTIONS(3510), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3530), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [128424] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4218), 1, - aux_sym_type_identifier_token1, - ACTIONS(4220), 1, - sym__escape_identifier, - STATE(1202), 1, - sym__type_identifier, - STATE(2990), 1, + ACTIONS(1810), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3516), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3518), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3524), 1, + anon_sym_STAR_STAR, + ACTIONS(3528), 1, + anon_sym_GT_GT, + ACTIONS(3532), 1, + anon_sym_AMP_AMP, + ACTIONS(3534), 1, + anon_sym_PIPE_PIPE_PIPE, + STATE(2373), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4305), 1, - sym_module_primary_expression, - STATE(1156), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3512), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [167446] = 11, + ACTIONS(1812), 3, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_COLON_GT, + ACTIONS(3520), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3522), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3510), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3530), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [128499] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4196), 1, - anon_sym_LPAREN, - ACTIONS(4198), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_LBRACK, - STATE(2991), 1, + ACTIONS(3516), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3524), 1, + anon_sym_STAR_STAR, + ACTIONS(3528), 1, + anon_sym_GT_GT, + STATE(2374), 1, sym_decorator, - STATE(3108), 1, - sym_call_arguments, - ACTIONS(4226), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4222), 4, - anon_sym_LBRACE, + ACTIONS(3520), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3522), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3510), 4, + anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3530), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 5, + anon_sym_EQ_GT, anon_sym_QMARK, - sym__escape_identifier, - ACTIONS(4224), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - [167489] = 8, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [128568] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1305), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_LT, - STATE(1210), 1, - sym_type_arguments, - STATE(2992), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3490), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3492), 1, + anon_sym_AMP_AMP, + ACTIONS(3494), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + ACTIONS(3506), 1, + anon_sym_GT_GT, + ACTIONS(3536), 1, + anon_sym_QMARK, + ACTIONS(3538), 1, + anon_sym_catch, + ACTIONS(3540), 1, + anon_sym_PIPE_PIPE, + STATE(2375), 1, sym_decorator, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1303), 11, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [167526] = 8, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3484), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3508), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [128647] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4230), 1, - anon_sym_LPAREN, - STATE(2993), 1, + ACTIONS(3524), 1, + anon_sym_STAR_STAR, + STATE(2376), 1, sym_decorator, - STATE(3110), 1, - sym_variant_arguments, + ACTIONS(3514), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1585), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1581), 8, - anon_sym_LBRACE, + ACTIONS(3522), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 15, + anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [167563] = 8, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [128702] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4230), 1, - anon_sym_LPAREN, - STATE(2994), 1, + ACTIONS(3524), 1, + anon_sym_STAR_STAR, + STATE(2377), 1, sym_decorator, - STATE(3112), 1, - sym_variant_arguments, + ACTIONS(3512), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1589), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1587), 8, - anon_sym_LBRACE, + ACTIONS(3520), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3522), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 7, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 12, + anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [167600] = 14, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [128761] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - aux_sym_type_identifier_token1, - ACTIONS(4234), 1, - sym__escape_identifier, - STATE(1618), 1, - sym__type_identifier, - STATE(2995), 1, + ACTIONS(1904), 1, + anon_sym_EQ_GT, + ACTIONS(3516), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3518), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3524), 1, + anon_sym_STAR_STAR, + ACTIONS(3528), 1, + anon_sym_GT_GT, + ACTIONS(3532), 1, + anon_sym_AMP_AMP, + ACTIONS(3534), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3542), 1, + anon_sym_QMARK, + ACTIONS(3544), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3546), 1, + anon_sym_COLON_GT, + STATE(2378), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4534), 1, - sym_module_primary_expression, - STATE(1614), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3512), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [167649] = 14, + ACTIONS(3520), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3522), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3510), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3530), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [128840] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4206), 1, - aux_sym_type_identifier_token1, - ACTIONS(4208), 1, - sym__escape_identifier, - STATE(2996), 1, + ACTIONS(3516), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3518), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3524), 1, + anon_sym_STAR_STAR, + ACTIONS(3528), 1, + anon_sym_GT_GT, + ACTIONS(3532), 1, + anon_sym_AMP_AMP, + ACTIONS(3534), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3544), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3546), 1, + anon_sym_COLON_GT, + STATE(2379), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4060), 1, - sym__type_identifier, - STATE(4242), 1, - sym_module_primary_expression, - STATE(2895), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(1908), 2, + anon_sym_EQ_GT, + anon_sym_QMARK, + ACTIONS(3512), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [167698] = 14, + ACTIONS(3520), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3522), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3510), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3530), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [128917] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - STATE(2997), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3548), 1, + anon_sym_COLON, + STATE(2380), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3695), 1, - sym_type_binding, - STATE(4213), 1, - sym_module_primary_expression, - STATE(3157), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [167747] = 14, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [128996] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4135), 1, - anon_sym_LPAREN, - ACTIONS(4236), 1, - anon_sym_BANG, - STATE(2998), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3550), 1, + anon_sym_RBRACK, + STATE(2381), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3699), 1, - sym_module_expression, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [167796] = 6, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [129075] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1335), 1, - anon_sym_EQ, - STATE(2999), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3552), 1, + anon_sym_COLON, + STATE(2382), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1333), 13, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, anon_sym_LT, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [167829] = 14, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [129154] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - STATE(3000), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3554), 1, + anon_sym_LBRACE, + STATE(2383), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3713), 1, - sym_type_binding, - STATE(4213), 1, - sym_module_primary_expression, - STATE(3157), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [167878] = 6, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [129233] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3001), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3556), 1, + anon_sym_COLON, + STATE(2384), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1226), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1221), 10, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [167911] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [129312] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3002), 1, + ACTIONS(1396), 1, + anon_sym_DOT, + ACTIONS(2382), 1, + anon_sym_EQ_GT, + STATE(2385), 1, sym_decorator, + ACTIONS(1398), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + ACTIONS(3562), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1622), 5, + ACTIONS(3558), 12, + anon_sym_module, anon_sym_unpack, anon_sym_async, - anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1620), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + sym__identifier, sym__escape_identifier, - [167944] = 14, + sym_true, + sym_false, + ACTIONS(3560), 12, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [129369] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - STATE(3003), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3565), 1, + anon_sym_LBRACE, + STATE(2386), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3670), 1, - sym_type_binding, - STATE(4213), 1, - sym_module_primary_expression, - STATE(3157), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [167993] = 14, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [129448] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - STATE(3004), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3567), 1, + anon_sym_COLON, + STATE(2387), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3651), 1, - sym_type_binding, - STATE(4213), 1, - sym_module_primary_expression, - STATE(3163), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [168042] = 14, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [129527] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4135), 1, - anon_sym_LPAREN, - ACTIONS(4238), 1, - anon_sym_BANG, - STATE(3005), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3569), 1, + anon_sym_COLON, + STATE(2388), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3743), 1, - sym_module_expression, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [168091] = 14, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [129606] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1999), 1, - anon_sym_unpack, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4206), 1, - aux_sym_type_identifier_token1, - ACTIONS(4208), 1, - sym__escape_identifier, - STATE(1068), 1, - sym__type_identifier, - STATE(3006), 1, + ACTIONS(3516), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3518), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3524), 1, + anon_sym_STAR_STAR, + ACTIONS(3528), 1, + anon_sym_GT_GT, + ACTIONS(3532), 1, + anon_sym_AMP_AMP, + ACTIONS(3534), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3542), 1, + anon_sym_QMARK, + ACTIONS(3544), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3546), 1, + anon_sym_COLON_GT, + ACTIONS(3571), 1, + anon_sym_EQ_GT, + STATE(2389), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(4344), 1, - sym_module_primary_expression, - STATE(1163), 2, - sym_type_identifier_path, - sym_type_identifier, + ACTIONS(3512), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [168140] = 10, + ACTIONS(3520), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3522), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3510), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3530), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [129685] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1240), 1, - anon_sym_EQ, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(4240), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(3007), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3573), 1, + anon_sym_LBRACE, + STATE(2390), 1, sym_decorator, - STATE(3126), 1, - sym_variant_parameters, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [168181] = 8, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [129764] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - STATE(3008), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3575), 1, + anon_sym_COLON, + STATE(2391), 1, sym_decorator, - ACTIONS(2525), 2, - anon_sym_DOT, - sym__escape_identifier, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 4, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - anon_sym_with, - ACTIONS(1258), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, anon_sym_LT, - anon_sym_PIPE, - [168218] = 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [129843] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1260), 1, - anon_sym_EQ, - STATE(3009), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3490), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3492), 1, + anon_sym_AMP_AMP, + ACTIONS(3494), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + ACTIONS(3506), 1, + anon_sym_GT_GT, + ACTIONS(3536), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3577), 1, + anon_sym_catch, + STATE(2392), 1, sym_decorator, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1258), 12, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3484), 4, anon_sym_LT, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [168250] = 14, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3508), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [129922] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4244), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3010), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3579), 1, + anon_sym_RBRACE, + STATE(2393), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [168298] = 14, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [130001] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4246), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3011), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3581), 1, + anon_sym_COLON, + STATE(2394), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [168346] = 6, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [130080] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3012), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3583), 1, + anon_sym_COLON, + STATE(2395), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1533), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1531), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [168378] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [130159] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3013), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3585), 1, + anon_sym_RBRACK, + STATE(2396), 1, sym_decorator, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1652), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1650), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [168410] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [130238] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3014), 1, + STATE(2397), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1959), 4, + ACTIONS(1143), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1957), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1138), 17, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [168442] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4248), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3015), 1, - sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [168490] = 6, + anon_sym_PIPE_GT, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [130287] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3016), 1, + STATE(2398), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1963), 4, + ACTIONS(1428), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1961), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1430), 17, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [168522] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + anon_sym_PERCENT, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4250), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3017), 1, - sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [168570] = 14, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [130336] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4252), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3018), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3587), 1, + anon_sym_LBRACE, + STATE(2399), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [168618] = 6, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [130415] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3019), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3490), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3492), 1, + anon_sym_AMP_AMP, + ACTIONS(3494), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + ACTIONS(3506), 1, + anon_sym_GT_GT, + ACTIONS(3536), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3589), 1, + anon_sym_catch, + STATE(2400), 1, sym_decorator, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1859), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1857), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3484), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [168650] = 8, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3508), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [130494] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - STATE(3020), 1, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + ACTIONS(3506), 1, + anon_sym_GT_GT, + STATE(2401), 1, sym_decorator, - ACTIONS(2525), 2, - anon_sym_DOT, - sym__escape_identifier, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 3, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - ACTIONS(1258), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 6, anon_sym_LT, - anon_sym_PIPE, - [168686] = 6, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 10, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [130557] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3021), 1, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + STATE(2402), 1, sym_decorator, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1967), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1965), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 15, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [168718] = 6, + anon_sym_catch, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [130612] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3022), 1, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + ACTIONS(3506), 1, + anon_sym_GT_GT, + STATE(2403), 1, sym_decorator, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1971), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1969), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3484), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3508), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 6, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [168750] = 6, + anon_sym_catch, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [130679] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3023), 1, + ACTIONS(3490), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3494), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + ACTIONS(3506), 1, + anon_sym_GT_GT, + STATE(2404), 1, sym_decorator, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1827), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1825), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(1812), 3, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [168782] = 8, + anon_sym_catch, + anon_sym_COLON_GT, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3484), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3508), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [130752] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2593), 1, - anon_sym_EQ, - ACTIONS(4254), 1, - anon_sym_LPAREN, - STATE(3024), 1, + ACTIONS(3490), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + ACTIONS(3506), 1, + anon_sym_GT_GT, + STATE(2405), 1, sym_decorator, - STATE(3228), 1, - sym__variant_pattern_parameters, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2595), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [168818] = 6, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1812), 4, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_COLON_GT, + ACTIONS(3484), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3508), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [130823] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3025), 1, + ACTIONS(3524), 1, + anon_sym_STAR_STAR, + ACTIONS(3528), 1, + anon_sym_GT_GT, + STATE(2406), 1, sym_decorator, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1975), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1973), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3520), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3522), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3510), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3530), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 6, + anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [168850] = 8, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [130890] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(4153), 1, - anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(3026), 1, + ACTIONS(3516), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3518), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3524), 1, + anon_sym_STAR_STAR, + ACTIONS(3528), 1, + anon_sym_GT_GT, + ACTIONS(3534), 1, + anon_sym_PIPE_PIPE_PIPE, + STATE(2407), 1, sym_decorator, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, + ACTIONS(1812), 3, anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - [168886] = 6, + anon_sym_QMARK, + anon_sym_COLON_GT, + ACTIONS(3520), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3522), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3510), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3530), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [130963] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3027), 1, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + STATE(2408), 1, sym_decorator, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1537), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1535), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 15, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [168918] = 6, + anon_sym_catch, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [131018] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3028), 1, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + STATE(2409), 1, sym_decorator, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1979), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1977), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 7, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 12, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [168950] = 10, + anon_sym_catch, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [131077] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1240), 1, - anon_sym_EQ, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(4256), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(3029), 1, + ACTIONS(1904), 1, + anon_sym_catch, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3490), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3492), 1, + anon_sym_AMP_AMP, + ACTIONS(3494), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + ACTIONS(3506), 1, + anon_sym_GT_GT, + ACTIONS(3536), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_PIPE_PIPE, + STATE(2410), 1, sym_decorator, - STATE(3195), 1, - sym_variant_parameters, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_as, - [168990] = 6, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3484), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3508), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [131156] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3030), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3490), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3492), 1, + anon_sym_AMP_AMP, + ACTIONS(3494), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + ACTIONS(3506), 1, + anon_sym_GT_GT, + ACTIONS(3540), 1, + anon_sym_PIPE_PIPE, + STATE(2411), 1, sym_decorator, + ACTIONS(1908), 2, + anon_sym_QMARK, + anon_sym_catch, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1983), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1981), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3484), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169022] = 13, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3508), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [131233] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - STATE(3031), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3591), 1, + anon_sym_COLON, + STATE(2412), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(3893), 1, - sym_module_expression, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [169068] = 6, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [131312] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3032), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3593), 1, + anon_sym_RBRACK, + STATE(2413), 1, sym_decorator, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1987), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1985), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169100] = 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [131391] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(4258), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3595), 1, anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(3033), 1, + STATE(2414), 1, sym_decorator, - STATE(3241), 1, - sym_variant_parameters, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [169138] = 6, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [131470] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3034), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3597), 1, + anon_sym_COLON, + STATE(2415), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1312), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1310), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169170] = 8, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [131549] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2630), 1, - anon_sym_EQ, - ACTIONS(4254), 1, - anon_sym_LPAREN, - STATE(3035), 1, - sym_decorator, - STATE(3233), 1, - sym__variant_pattern_parameters, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(2632), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3599), 1, anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [169206] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(3036), 1, + STATE(2416), 1, sym_decorator, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1563), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1559), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169238] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [131628] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3037), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3601), 1, + anon_sym_COLON, + STATE(2417), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1571), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1569), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169270] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [131707] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3038), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3490), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3492), 1, + anon_sym_AMP_AMP, + ACTIONS(3494), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + ACTIONS(3506), 1, + anon_sym_GT_GT, + ACTIONS(3536), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3603), 1, + anon_sym_catch, + STATE(2418), 1, sym_decorator, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1863), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1861), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3484), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169302] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3508), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [131786] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3039), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3605), 1, + anon_sym_COLON, + STATE(2419), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1656), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1654), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169334] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [131865] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3040), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3607), 1, + anon_sym_COLON, + STATE(2420), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1660), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1658), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169366] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [131944] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3041), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3609), 1, + anon_sym_COLON, + STATE(2421), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1664), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1662), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169398] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [132023] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3042), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3611), 1, + anon_sym_COLON, + STATE(2422), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1622), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1620), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169430] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [132102] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3043), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3613), 1, + anon_sym_COLON, + STATE(2423), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1668), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1666), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169462] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [132181] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3044), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3615), 1, + anon_sym_COLON, + STATE(2424), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1672), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1670), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169494] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [132260] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3045), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3617), 1, + anon_sym_COLON, + STATE(2425), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1676), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1674), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169526] = 13, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [132339] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, - anon_sym_LPAREN, - STATE(3046), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3619), 1, + anon_sym_COLON, + STATE(2426), 1, sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(3891), 1, - sym_module_expression, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [169572] = 6, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [132418] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3047), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3621), 1, + anon_sym_LBRACE, + STATE(2427), 1, sym_decorator, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1831), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1829), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169604] = 14, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [132497] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4260), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3048), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3623), 1, + anon_sym_COLON, + STATE(2428), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [169652] = 6, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [132576] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3049), 1, + ACTIONS(3524), 1, + anon_sym_STAR_STAR, + ACTIONS(3528), 1, + anon_sym_GT_GT, + STATE(2429), 1, sym_decorator, + ACTIONS(3512), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1835), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1833), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3520), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3522), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 6, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 10, + anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169684] = 14, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [132639] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4262), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3050), 1, + ACTIONS(3524), 1, + anon_sym_STAR_STAR, + STATE(2430), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, + ACTIONS(3514), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [169732] = 6, + ACTIONS(3522), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(1810), 9, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1812), 15, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP_AMP, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_GT, + [132694] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3051), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3625), 1, + anon_sym_COLON, + STATE(2431), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1867), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1865), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169764] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [132773] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3052), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3627), 1, + anon_sym_COLON, + STATE(2432), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1541), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1539), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169796] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [132852] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3053), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3629), 1, + anon_sym_COLON, + STATE(2433), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1871), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1869), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169828] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [132931] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3054), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3490), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3492), 1, + anon_sym_AMP_AMP, + ACTIONS(3494), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + ACTIONS(3506), 1, + anon_sym_GT_GT, + ACTIONS(3536), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3631), 1, + anon_sym_catch, + STATE(2434), 1, sym_decorator, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1628), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1626), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3484), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169860] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3508), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [133010] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3055), 1, + ACTIONS(3104), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP_AMP, + ACTIONS(3112), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3116), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3122), 1, + anon_sym_STAR_STAR, + ACTIONS(3126), 1, + anon_sym_GT_GT, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3633), 1, + anon_sym_COLON, + STATE(2435), 1, sym_decorator, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3106), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3124), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1875), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1873), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3118), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3120), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3100), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169892] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3128), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [133089] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3056), 1, + ACTIONS(3130), 1, + anon_sym_COLON_GT, + ACTIONS(3282), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3290), 1, + anon_sym_STAR_STAR, + ACTIONS(3294), 1, + anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3328), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(3336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3342), 1, + anon_sym_QMARK, + ACTIONS(3635), 1, + anon_sym_RBRACK, + STATE(2436), 1, sym_decorator, + ACTIONS(3278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1879), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1877), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3286), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3288), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3276), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169924] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3296), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + [133168] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3057), 1, + ACTIONS(3490), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(3502), 1, + anon_sym_STAR_STAR, + ACTIONS(3506), 1, + anon_sym_GT_GT, + STATE(2437), 1, sym_decorator, + ACTIONS(1810), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3486), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3488), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3504), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1883), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1881), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(3498), 3, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(3500), 3, + anon_sym_STAR_DOT, + anon_sym_PERCENT, + anon_sym_SLASH_DOT, + ACTIONS(3484), 4, + anon_sym_LT, anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3508), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + ACTIONS(1812), 5, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [169956] = 6, + anon_sym_catch, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_CARET_CARET_CARET, + anon_sym_COLON_GT, + [133237] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3058), 1, + STATE(2438), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1887), 4, + ACTIONS(1798), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1885), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1800), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [169988] = 6, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133285] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3059), 1, + STATE(2439), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1891), 4, + ACTIONS(1866), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1889), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1868), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170020] = 6, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133333] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3060), 1, + STATE(2440), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1839), 4, + ACTIONS(1898), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1837), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1900), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170052] = 6, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133381] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3061), 1, + STATE(2441), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1899), 4, + ACTIONS(1922), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1897), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1924), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170084] = 6, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133429] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3062), 1, + STATE(2442), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1903), 4, + ACTIONS(1143), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1901), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1138), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170116] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(3063), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1335), 4, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - aux_sym_type_identifier_token1, - ACTIONS(1333), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_PIPE, - sym__escape_identifier, - [170148] = 6, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133477] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3064), 1, + STATE(2443), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1907), 4, + ACTIONS(1890), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1905), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1892), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170180] = 6, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133525] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3065), 1, + STATE(2444), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1823), 4, + ACTIONS(1894), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1821), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1896), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170212] = 6, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133573] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3066), 1, + STATE(2445), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1911), 4, + ACTIONS(1882), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1909), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1884), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170244] = 6, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133621] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3067), 1, + STATE(2446), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1915), 4, + ACTIONS(1914), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1913), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1916), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170276] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + anon_sym_PERCENT, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4264), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3068), 1, - sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [170324] = 6, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133669] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3069), 1, + STATE(2447), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1527), 4, + ACTIONS(1918), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1525), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1920), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170356] = 13, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, + anon_sym_PERCENT, aux_sym_variant_identifier_token1, - ACTIONS(4135), 1, - anon_sym_LPAREN, - STATE(3070), 1, - sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3746), 1, - sym_module_expression, - STATE(3440), 2, - sym_module_type_of, - sym_module_type_constraint, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [170402] = 6, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133717] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3071), 1, + STATE(2448), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1632), 4, + ACTIONS(1453), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1630), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1455), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170434] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + anon_sym_PERCENT, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4266), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3072), 1, - sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [170482] = 6, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133765] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3073), 1, + STATE(2449), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1636), 4, + ACTIONS(1886), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1634), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1888), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170514] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + anon_sym_PERCENT, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4268), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3074), 1, - sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [170562] = 6, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133813] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1391), 1, - anon_sym_EQ, - STATE(3075), 1, + ACTIONS(1396), 1, + anon_sym_DOT, + STATE(2450), 1, sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1389), 12, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [170594] = 13, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, + ACTIONS(1398), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + ACTIONS(3562), 2, anon_sym_LPAREN, - STATE(3076), 1, - sym_decorator, - STATE(3322), 1, - sym_module_identifier, - STATE(3483), 1, - sym_module_primary_expression, - STATE(4043), 1, - sym_module_expression, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + anon_sym_LBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [170640] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4270), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3077), 1, - sym_decorator, - ACTIONS(4113), 2, + ACTIONS(3558), 12, + anon_sym_module, anon_sym_unpack, anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [170688] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4254), 1, - anon_sym_LPAREN, - ACTIONS(4274), 1, - anon_sym_EQ, - STATE(3078), 1, - sym_decorator, - STATE(3257), 1, - sym__variant_pattern_parameters, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4272), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_if, - anon_sym_when, - anon_sym_as, - [170724] = 6, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + anon_sym_SLASH, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(3560), 12, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133867] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3079), 1, + STATE(2451), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1640), 4, + ACTIONS(1814), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1638), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1816), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170756] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4276), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3080), 1, - sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [170804] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + anon_sym_PERCENT, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4278), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3081), 1, - sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [170852] = 6, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133915] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3082), 1, + STATE(2452), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1843), 4, + ACTIONS(1445), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1841), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1447), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170884] = 6, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [133963] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3083), 1, + STATE(2453), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1919), 4, + ACTIONS(1457), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1917), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1459), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170916] = 6, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [134011] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3084), 1, + STATE(2454), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1644), 4, + ACTIONS(1856), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1642), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1858), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170948] = 6, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [134059] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3085), 1, + STATE(2455), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1847), 4, + ACTIONS(1852), 13, + anon_sym_module, anon_sym_unpack, + anon_sym_DOT, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1845), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1854), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [170980] = 6, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [134107] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3086), 1, + STATE(2456), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1923), 4, + ACTIONS(1521), 12, + anon_sym_module, anon_sym_unpack, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1921), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1523), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [171012] = 6, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [134154] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3087), 1, + STATE(2457), 1, sym_decorator, + ACTIONS(3637), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1927), 4, + ACTIONS(3558), 12, + anon_sym_module, anon_sym_unpack, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1925), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(3560), 14, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171044] = 6, + anon_sym_POUND, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [134203] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3088), 1, + STATE(2458), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1931), 4, + ACTIONS(1513), 12, + anon_sym_module, anon_sym_unpack, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1929), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1515), 16, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_POUND, anon_sym_DASH_GT, anon_sym_PIPE_GT, - sym__escape_identifier, - [171076] = 14, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [134250] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4280), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3089), 1, + STATE(2459), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [171124] = 6, + ACTIONS(3639), 12, + anon_sym_module, + anon_sym_unpack, + anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, + anon_sym_SLASH, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(3641), 14, + sym__list_constructor, + sym__dict_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [134295] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3090), 1, + STATE(2460), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1432), 4, + ACTIONS(3558), 12, + anon_sym_module, anon_sym_unpack, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1428), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(3560), 14, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171156] = 6, + anon_sym_POUND, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [134340] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3091), 1, + STATE(2461), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1935), 4, + ACTIONS(3643), 12, + anon_sym_module, anon_sym_unpack, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1933), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(3645), 14, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171188] = 7, + anon_sym_POUND, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [134385] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3092), 1, + STATE(2462), 1, sym_decorator, - ACTIONS(1337), 2, - anon_sym_LPAREN, - anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1301), 4, + ACTIONS(1698), 12, + anon_sym_module, anon_sym_unpack, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1299), 7, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1700), 14, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, - anon_sym_GT, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171222] = 6, + anon_sym_POUND, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [134430] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3093), 1, + STATE(2463), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1939), 4, + ACTIONS(3647), 12, + anon_sym_module, anon_sym_unpack, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1937), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(3649), 14, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171254] = 6, + anon_sym_POUND, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [134475] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3094), 1, + STATE(2464), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1943), 4, + ACTIONS(1762), 12, + anon_sym_module, anon_sym_unpack, anon_sym_async, + anon_sym_if, + anon_sym_switch, + anon_sym_try, + anon_sym_lazy, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1941), 9, + sym__identifier, + sym__escape_identifier, + sym_true, + sym_false, + ACTIONS(1764), 14, + sym__list_constructor, + sym__dict_constructor, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171286] = 14, + anon_sym_POUND, + anon_sym_PERCENT, + aux_sym_variant_identifier_token1, + sym_number, + anon_sym_DQUOTE, + aux_sym_template_string_token1, + anon_sym_SQUOTE, + [134520] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4282), 1, - anon_sym_SLASH, - STATE(2950), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3651), 1, + anon_sym_RBRACE, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3655), 1, + anon_sym_QMARK, + STATE(1053), 1, sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3095), 1, + STATE(2465), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2891), 1, sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3793), 1, + sym__record_field_name, + STATE(4031), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [171334] = 6, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [134592] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3096), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1947), 4, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, anon_sym_unpack, + ACTIONS(1113), 1, anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1945), 9, - anon_sym_LBRACE, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(3655), 1, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171366] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(3097), 1, + ACTIONS(3657), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2466), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3793), 1, + sym__record_field_name, + STATE(4031), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1851), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1849), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171398] = 6, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [134664] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3098), 1, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3655), 1, + anon_sym_QMARK, + ACTIONS(3659), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2467), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3793), 1, + sym__record_field_name, + STATE(4031), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1855), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1853), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171430] = 14, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [134736] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4284), 1, - anon_sym_SLASH, - STATE(2950), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3655), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_RBRACE, + STATE(1053), 1, sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3099), 1, + STATE(2468), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2891), 1, sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3793), 1, + sym__record_field_name, + STATE(4031), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [171478] = 14, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [134808] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4286), 1, - anon_sym_SLASH, - STATE(2950), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3655), 1, + anon_sym_QMARK, + ACTIONS(3663), 1, + anon_sym_RBRACE, + STATE(1053), 1, sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3100), 1, + STATE(2469), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2891), 1, sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3793), 1, + sym__record_field_name, + STATE(4031), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [171526] = 13, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [134880] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3996), 1, - anon_sym_module, - ACTIONS(3998), 1, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, anon_sym_unpack, - ACTIONS(4000), 1, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(4076), 1, + ACTIONS(3653), 1, anon_sym_LPAREN, - STATE(3101), 1, + ACTIONS(3655), 1, + anon_sym_QMARK, + ACTIONS(3665), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2470), 1, sym_decorator, - STATE(3322), 1, + STATE(2891), 1, sym_module_identifier, - STATE(3483), 1, + STATE(3701), 1, sym_module_primary_expression, - STATE(3908), 1, - sym_module_expression, - STATE(4027), 2, - sym_module_type_of, - sym_module_type_constraint, + STATE(3793), 1, + sym__record_field_name, + STATE(4031), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, sym_module_unpack, sym_parenthesized_module_expression, sym_module_identifier_path, sym_functor_use, - [171572] = 6, + [134952] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3102), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1366), 4, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, anon_sym_unpack, + ACTIONS(1113), 1, anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1364), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(1941), 1, sym__escape_identifier, - [171604] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(3103), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1775), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1773), 9, - anon_sym_LBRACE, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(3655), 1, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171636] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(3104), 1, + ACTIONS(3667), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2471), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3793), 1, + sym__record_field_name, + STATE(4031), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1779), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1777), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171668] = 6, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135024] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3105), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1783), 4, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, anon_sym_unpack, + ACTIONS(1113), 1, anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1781), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(1941), 1, sym__escape_identifier, - [171700] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4288), 1, - anon_sym_SLASH, - STATE(2950), 1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3655), 1, + anon_sym_QMARK, + ACTIONS(3669), 1, + anon_sym_RBRACE, + STATE(1053), 1, sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3106), 1, + STATE(2472), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2891), 1, sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3793), 1, + sym__record_field_name, + STATE(4031), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [171748] = 14, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135096] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - ACTIONS(4290), 1, - anon_sym_SLASH, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3107), 1, - sym_decorator, - ACTIONS(4113), 2, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3671), 1, + anon_sym_LPAREN, + ACTIONS(3673), 1, + anon_sym_RPAREN, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2473), 1, + sym_decorator, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3117), 1, sym_module_identifier, + STATE(3373), 1, + sym_module_expression, + STATE(3776), 1, + sym_functor_parameter, + STATE(3837), 1, + aux_sym_extension_expression_repeat1, + STATE(3844), 1, + sym_functor_parameters, + STATE(4356), 1, + sym__module_structure, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [171796] = 6, + STATE(3743), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135168] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3108), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1787), 4, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, anon_sym_unpack, + ACTIONS(1113), 1, anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1785), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(1941), 1, sym__escape_identifier, - [171828] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2500), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, anon_sym_LPAREN, - ACTIONS(4292), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(3109), 1, + ACTIONS(3655), 1, + anon_sym_QMARK, + ACTIONS(3679), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2474), 1, sym_decorator, - STATE(3191), 1, - sym_variant_parameters, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3793), 1, + sym__record_field_name, + STATE(4031), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 9, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [171866] = 6, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135240] = 21, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3110), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1791), 4, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, anon_sym_unpack, + ACTIONS(1113), 1, anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1789), 9, - anon_sym_LBRACE, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(3655), 1, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171898] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(3111), 1, + ACTIONS(3681), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2475), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3793), 1, + sym__record_field_name, + STATE(4031), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1955), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1953), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171930] = 6, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135312] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3112), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1795), 4, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, anon_sym_unpack, + ACTIONS(1113), 1, anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1793), 9, - anon_sym_LBRACE, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(3655), 1, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171962] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(3113), 1, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2476), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3793), 1, + sym__record_field_name, + STATE(4031), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1648), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1646), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [171994] = 6, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135381] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3114), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1799), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1797), 9, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, anon_sym_LBRACE, + ACTIONS(3671), 1, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [172026] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(3115), 1, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + STATE(2477), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3428), 1, + sym_module_expression, + STATE(3837), 1, + aux_sym_extension_expression_repeat1, + STATE(3844), 1, + sym_functor_parameters, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, + STATE(4221), 2, + sym__module_structure, + sym_type_identifier_path, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1803), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1801), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [172058] = 6, + STATE(3743), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135448] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3116), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3671), 1, + anon_sym_LPAREN, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + STATE(2478), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3428), 1, + sym_module_expression, + STATE(3837), 1, + aux_sym_extension_expression_repeat1, + STATE(3844), 1, + sym_functor_parameters, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, + STATE(4101), 2, + sym__module_structure, + sym_type_identifier_path, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1807), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1805), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [172090] = 6, + STATE(3743), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135515] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3117), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1811), 4, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, anon_sym_unpack, + ACTIONS(1113), 1, anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1809), 9, - anon_sym_LBRACE, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(3655), 1, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [172122] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(3118), 1, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2479), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3715), 1, + sym__record_element, + STATE(3793), 1, + sym__record_field_name, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1815), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1813), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [172154] = 6, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135584] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3119), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3671), 1, + anon_sym_LPAREN, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + STATE(2480), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3428), 1, + sym_module_expression, + STATE(3837), 1, + aux_sym_extension_expression_repeat1, + STATE(3844), 1, + sym_functor_parameters, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, + STATE(4275), 2, + sym__module_structure, + sym_type_identifier_path, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1819), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(1817), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - sym__escape_identifier, - [172186] = 13, + STATE(3743), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135651] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4034), 1, - anon_sym_module, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(4135), 1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3671), 1, anon_sym_LPAREN, - STATE(3120), 1, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + STATE(2481), 1, sym_decorator, - STATE(3192), 1, - sym_module_primary_expression, - STATE(3304), 1, + STATE(2891), 1, sym_module_identifier, - STATE(3745), 1, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3428), 1, sym_module_expression, - STATE(3440), 2, + STATE(3837), 1, + aux_sym_extension_expression_repeat1, + STATE(3844), 1, + sym_functor_parameters, + STATE(3345), 2, sym_module_type_of, sym_module_type_constraint, + STATE(4204), 2, + sym__module_structure, + sym_type_identifier_path, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3298), 4, + STATE(3743), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2896), 4, sym_module_unpack, sym_parenthesized_module_expression, sym_module_identifier_path, sym_functor_use, - [172232] = 7, + [135718] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1324), 1, - anon_sym_EQ, - STATE(3121), 1, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3655), 1, + anon_sym_QMARK, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2482), 1, sym_decorator, - STATE(3139), 1, - aux_sym_variant_type_repeat1, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3793), 1, + sym__record_field_name, + STATE(3931), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - [172265] = 9, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135787] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2506), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3671), 1, anon_sym_LPAREN, - ACTIONS(4294), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(3122), 1, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + STATE(2483), 1, sym_decorator, - STATE(3278), 1, - sym_variant_parameters, + STATE(2891), 1, + sym_module_identifier, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3428), 1, + sym_module_expression, + STATE(3837), 1, + aux_sym_extension_expression_repeat1, + STATE(3844), 1, + sym_functor_parameters, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, + STATE(4179), 2, + sym__module_structure, + sym_type_identifier_path, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - [172302] = 14, + STATE(3743), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135854] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4052), 1, + ACTIONS(89), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - ACTIONS(4296), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3123), 1, - sym_decorator, - STATE(4492), 1, - sym_value_identifier, - STATE(4620), 1, - sym__record_type_member, - ACTIONS(1199), 2, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, anon_sym_unpack, + ACTIONS(1113), 1, anon_sym_async, - STATE(4609), 2, - sym_record_type_field, - sym_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [172349] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, + ACTIONS(1941), 1, sym__escape_identifier, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - ACTIONS(4298), 1, - anon_sym_RBRACE, - STATE(1091), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3655), 1, + anon_sym_QMARK, + STATE(1053), 1, sym__reserved_identifier, - STATE(3124), 1, + STATE(2484), 1, sym_decorator, - STATE(4492), 1, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3793), 1, + sym__record_field_name, + STATE(3897), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, sym_value_identifier, - STATE(4620), 1, - sym__record_type_member, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - STATE(4609), 2, - sym_record_type_field, - sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [172396] = 14, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135923] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - ACTIONS(4300), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3125), 1, - sym_decorator, - STATE(4492), 1, - sym_value_identifier, - STATE(4620), 1, - sym__record_type_member, - ACTIONS(1199), 2, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3671), 1, + anon_sym_LPAREN, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, anon_sym_unpack, - anon_sym_async, - STATE(4609), 2, - sym_record_type_field, - sym_type_spread, + STATE(2485), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3428), 1, + sym_module_expression, + STATE(3837), 1, + aux_sym_extension_expression_repeat1, + STATE(3844), 1, + sym_functor_parameters, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, + STATE(4148), 2, + sym__module_structure, + sym_type_identifier_path, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [172443] = 8, + STATE(3743), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [135990] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(4240), 1, - anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(3126), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3671), 1, + anon_sym_LPAREN, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + STATE(2486), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3276), 1, + sym_module_primary_expression, + STATE(3428), 1, + sym_module_expression, + STATE(3837), 1, + aux_sym_extension_expression_repeat1, + STATE(3844), 1, + sym_functor_parameters, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, + STATE(4368), 2, + sym__module_structure, + sym_type_identifier_path, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [172478] = 7, + STATE(3743), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136057] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_EQ, - STATE(3127), 1, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3655), 1, + anon_sym_QMARK, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2487), 1, sym_decorator, - STATE(3139), 1, - aux_sym_variant_type_repeat1, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3793), 1, + sym__record_field_name, + STATE(3822), 1, + sym__record_element, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - [172511] = 7, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136126] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1320), 1, - anon_sym_EQ, - STATE(3127), 1, - aux_sym_variant_type_repeat1, - STATE(3128), 1, + ACTIONS(89), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3655), 1, + anon_sym_QMARK, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2488), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3725), 1, + sym__record_element, + STATE(3793), 1, + sym__record_field_name, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - [172544] = 7, + STATE(3959), 3, + sym_record_field, + sym__record_pun_field, + sym_spread_element, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136195] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_EQ, - STATE(3121), 1, - aux_sym_variant_type_repeat1, - STATE(3129), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3685), 1, + anon_sym_await, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2489), 1, sym_decorator, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3049), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3899), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - [172577] = 6, + STATE(3274), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136261] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2680), 1, - anon_sym_EQ, - STATE(3130), 1, + ACTIONS(1181), 1, + sym__identifier, + STATE(2490), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2678), 11, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2019), 3, + anon_sym_DOT, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(1179), 7, anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_and, anon_sym_if, anon_sym_when, anon_sym_as, - [172608] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - STATE(3131), 1, - sym_decorator, - ACTIONS(1379), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1377), 9, + anon_sym_with, + ACTIONS(1177), 10, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, + anon_sym_COLON_EQ, anon_sym_COLON_GT, - [172641] = 13, + [136305] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4302), 1, - anon_sym_GT, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2958), 1, - sym__jsx_element_name, - STATE(3132), 1, + ACTIONS(3693), 1, + anon_sym_await, + STATE(2491), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, sym_module_identifier, + STATE(3083), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3899), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [172686] = 12, + STATE(3305), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136371] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(4307), 1, - anon_sym_EQ, - ACTIONS(4309), 1, - anon_sym_PLUS_EQ, - ACTIONS(4311), 1, - anon_sym_constraint, - ACTIONS(4314), 1, - anon_sym_as, - STATE(3133), 1, + STATE(2492), 1, sym_decorator, - STATE(3421), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4304), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1234), 8, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_if, + anon_sym_when, + anon_sym_as, + anon_sym_with, + sym__identifier, + ACTIONS(1236), 13, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_and, - [172729] = 13, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + aux_sym_type_identifier_token1, + sym__escape_identifier, + [136411] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4316), 1, - anon_sym_GT, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2955), 1, - sym__jsx_element_name, - STATE(3134), 1, + ACTIONS(3695), 1, + anon_sym_await, + STATE(2493), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, sym_module_identifier, + STATE(3143), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3945), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [172774] = 13, + STATE(3305), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136477] = 19, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4318), 1, - anon_sym_GT, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2951), 1, - sym__jsx_element_name, - STATE(3135), 1, + ACTIONS(3697), 1, + anon_sym_await, + STATE(2494), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, sym_module_identifier, + STATE(3145), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3945), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [172819] = 12, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(4314), 1, - anon_sym_as, - ACTIONS(4320), 1, - anon_sym_EQ, - ACTIONS(4322), 1, - anon_sym_PLUS_EQ, - ACTIONS(4324), 1, - anon_sym_constraint, - STATE(3136), 1, - sym_decorator, - STATE(3445), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4304), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [172862] = 8, + STATE(3274), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136543] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_EQ, - ACTIONS(4327), 1, - anon_sym_PIPE, - STATE(3137), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2495), 1, sym_decorator, - STATE(3139), 1, - aux_sym_variant_type_repeat1, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3152), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3945), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_as, - [172897] = 8, + STATE(3070), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136606] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1324), 1, - anon_sym_EQ, - ACTIONS(4327), 1, - anon_sym_PIPE, - STATE(3138), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2496), 1, sym_decorator, - STATE(3139), 1, - aux_sym_variant_type_repeat1, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3074), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3899), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_as, - [172932] = 7, + STATE(3070), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136669] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1328), 1, - anon_sym_EQ, - ACTIONS(4329), 1, - anon_sym_PIPE, - STATE(3139), 2, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2497), 1, sym_decorator, - aux_sym_variant_type_repeat1, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3111), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3899), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_as, - [172965] = 8, + STATE(3215), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136732] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4332), 1, - anon_sym_PIPE, - STATE(3140), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2498), 1, sym_decorator, - STATE(3146), 1, - aux_sym_variant_type_repeat1, - ACTIONS(1256), 2, - anon_sym_COLON, - anon_sym_EQ, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3101), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3899), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [173000] = 8, + STATE(3192), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136795] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(4194), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(3141), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3671), 1, + anon_sym_LPAREN, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + STATE(2499), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3602), 1, + sym_module_expression, + STATE(3837), 1, + aux_sym_extension_expression_repeat1, + STATE(3844), 1, + sym_functor_parameters, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 9, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [173035] = 8, + STATE(4054), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136858] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4332), 1, - anon_sym_PIPE, - STATE(3142), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2500), 1, sym_decorator, - STATE(3146), 1, - aux_sym_variant_type_repeat1, - ACTIONS(1324), 2, - anon_sym_COLON, - anon_sym_EQ, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3134), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3899), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 8, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [173070] = 8, + STATE(3133), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136921] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1320), 1, - anon_sym_EQ, - ACTIONS(4327), 1, - anon_sym_PIPE, - STATE(3137), 1, - aux_sym_variant_type_repeat1, - STATE(3143), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2501), 1, sym_decorator, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3008), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3946), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_as, - [173105] = 8, + STATE(3070), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [136984] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_EQ, - ACTIONS(4327), 1, - anon_sym_PIPE, - STATE(3138), 1, - aux_sym_variant_type_repeat1, - STATE(3144), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2502), 1, sym_decorator, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3151), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3945), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_as, - [173140] = 8, + STATE(3133), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [137047] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1353), 1, - anon_sym_EQ, - ACTIONS(1355), 1, - anon_sym_EQ_GT, - ACTIONS(4314), 1, - anon_sym_as, - STATE(3145), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3671), 1, + anon_sym_LPAREN, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + STATE(2503), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3530), 1, + sym_module_expression, + STATE(3837), 1, + aux_sym_extension_expression_repeat1, + STATE(3844), 1, + sym_functor_parameters, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1351), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_with, - [173175] = 7, + STATE(4005), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [137110] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4334), 1, - anon_sym_PIPE, - ACTIONS(1328), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3146), 2, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2504), 1, sym_decorator, - aux_sym_variant_type_repeat1, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(2997), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3943), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 8, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [173208] = 13, + STATE(3070), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [137173] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4242), 1, - anon_sym_GT, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2961), 1, - sym__jsx_element_name, - STATE(3147), 1, + ACTIONS(3699), 1, + anon_sym_LPAREN, + STATE(2505), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, sym_module_identifier, + STATE(3295), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3899), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [173253] = 7, + STATE(3449), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [137236] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3146), 1, - aux_sym_variant_type_repeat1, - STATE(3148), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2506), 1, sym_decorator, - ACTIONS(1256), 2, - anon_sym_COLON, - anon_sym_EQ, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3007), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3946), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 9, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [173286] = 14, + STATE(3133), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [137299] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - ACTIONS(4337), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3149), 1, - sym_decorator, - STATE(4492), 1, - sym_value_identifier, - STATE(4620), 1, - sym__record_type_member, - ACTIONS(1199), 2, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, anon_sym_unpack, - anon_sym_async, - STATE(4609), 2, - sym_record_type_field, - sym_type_spread, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2507), 1, + sym_decorator, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3027), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3943), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [173333] = 7, + STATE(3133), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [137362] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1226), 1, - anon_sym_EQ, - ACTIONS(4339), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, anon_sym_LPAREN, - STATE(3150), 1, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2508), 1, sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1221), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [173366] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, STATE(3146), 1, - aux_sym_variant_type_repeat1, - STATE(3151), 1, - sym_decorator, - ACTIONS(1324), 2, - anon_sym_COLON, - anon_sym_EQ, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3945), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 9, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [173399] = 14, + STATE(3192), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [137425] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - ACTIONS(4341), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3152), 1, - sym_decorator, - STATE(4492), 1, - sym_value_identifier, - STATE(4620), 1, - sym__record_type_member, - ACTIONS(1199), 2, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, anon_sym_unpack, - anon_sym_async, - STATE(4609), 2, - sym_record_type_field, - sym_type_spread, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2509), 1, + sym_decorator, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3144), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3945), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [173446] = 12, + STATE(3215), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [137488] = 18, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(1209), 1, - sym_number, - ACTIONS(1401), 1, - anon_sym_SLASH, - STATE(3153), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3699), 1, + anon_sym_LPAREN, + STATE(2510), 1, sym_decorator, - STATE(3254), 1, - sym__literal_pattern, - ACTIONS(1211), 2, - sym_true, - sym_false, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3298), 1, + sym_module_expression, + STATE(3691), 1, + aux_sym_extension_expression_repeat1, + STATE(3945), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - [173489] = 13, + STATE(3449), 3, + sym_block, + sym_functor, + sym_extension_expression, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [137551] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4343), 1, - anon_sym_GT, - STATE(2947), 1, - sym__jsx_element_name, - STATE(2950), 1, - sym__reserved_identifier, - STATE(3154), 1, + STATE(2511), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [173534] = 14, + ACTIONS(1234), 6, + anon_sym_EQ, + anon_sym_and, + anon_sym_constraint, + anon_sym_as, + anon_sym_with, + sym__identifier, + ACTIONS(1236), 12, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_DOT, + anon_sym_PIPE, + aux_sym_type_identifier_token1, + sym__escape_identifier, + [137588] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, + ACTIONS(1135), 1, + sym__identifier, + ACTIONS(1140), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, + anon_sym_SLASH, + ACTIONS(2324), 1, sym__escape_identifier, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - ACTIONS(4345), 1, - anon_sym_RBRACE, - STATE(1091), 1, + STATE(1053), 1, sym__reserved_identifier, - STATE(3155), 1, + STATE(2512), 1, sym_decorator, - STATE(4492), 1, + STATE(3888), 1, + sym_formal_parameters, + STATE(4153), 1, + sym__definition_signature, + STATE(4154), 1, sym_value_identifier, - STATE(4620), 1, - sym__record_type_member, - ACTIONS(1199), 2, + ACTIONS(1145), 2, anon_sym_unpack, anon_sym_async, - STATE(4609), 2, - sym_record_type_field, - sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [173581] = 12, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1456), 1, + ACTIONS(1138), 8, + anon_sym_LBRACE, anon_sym_EQ_GT, - ACTIONS(4314), 1, - anon_sym_as, - ACTIONS(4324), 1, - anon_sym_constraint, - ACTIONS(4350), 1, - anon_sym_EQ, - ACTIONS(4352), 1, - anon_sym_PLUS_EQ, - STATE(3156), 1, - sym_decorator, - STATE(3442), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4347), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [173624] = 12, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [137641] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4356), 1, - anon_sym_EQ, - ACTIONS(4358), 1, - anon_sym_PLUS_EQ, - ACTIONS(4360), 1, - anon_sym_LT, - ACTIONS(4362), 1, - anon_sym_constraint, - STATE(3157), 1, + sym__decorator_inline, + ACTIONS(1148), 1, + anon_sym_EQ, + ACTIONS(2031), 1, + anon_sym_LPAREN, + ACTIONS(3701), 1, + anon_sym_COLON, + STATE(1010), 1, + sym_type_annotation, + STATE(2513), 1, sym_decorator, - STATE(3280), 1, - sym_type_parameters, - STATE(3439), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, + STATE(2555), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4354), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1150), 13, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, - [173667] = 14, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [137686] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, sym__escape_identifier, - ACTIONS(4052), 1, + ACTIONS(3703), 1, + anon_sym_RBRACE, + ACTIONS(3707), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, + ACTIONS(3709), 1, anon_sym_mutable, - ACTIONS(4364), 1, - anon_sym_RBRACE, - STATE(1091), 1, + STATE(1053), 1, sym__reserved_identifier, - STATE(3158), 1, + STATE(2514), 1, sym_decorator, - STATE(4492), 1, - sym_value_identifier, - STATE(4620), 1, + STATE(3652), 1, + sym__object_type_member, + STATE(3733), 1, sym__record_type_member, - ACTIONS(1199), 2, + STATE(3790), 1, + sym_value_identifier, + STATE(3955), 1, + sym_type_spread, + STATE(3964), 1, + sym_object_type_field, + STATE(4013), 1, + sym_record_type_field, + STATE(4138), 1, + sym_string, + ACTIONS(1113), 2, anon_sym_unpack, anon_sym_async, - STATE(4609), 2, - sym_record_type_field, - sym_type_spread, + ACTIONS(3705), 2, + anon_sym_DOT_DOT, + anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [173714] = 9, + [137751] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(4366), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(3159), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + ACTIONS(3711), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2515), 1, sym_decorator, - STATE(3279), 1, - sym_variant_parameters, + STATE(3730), 1, + sym__record_type_member, + STATE(3731), 1, + sym__object_type_member, + STATE(3790), 1, + sym_value_identifier, + STATE(3955), 1, + sym_type_spread, + STATE(3964), 1, + sym_object_type_field, + STATE(4013), 1, + sym_record_type_field, + STATE(4138), 1, + sym_string, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, + ACTIONS(3713), 2, + anon_sym_DOT_DOT, + anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [173751] = 8, + [137816] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4332), 1, - anon_sym_PIPE, - STATE(3140), 1, - aux_sym_variant_type_repeat1, - STATE(3160), 1, + STATE(2516), 1, sym_decorator, - ACTIONS(1320), 2, - anon_sym_COLON, - anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 8, - anon_sym_RBRACE, + ACTIONS(1471), 8, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + anon_sym_with, + sym__identifier, + ACTIONS(2027), 10, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_as, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [173786] = 8, + sym__escape_identifier, + [137853] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4332), 1, - anon_sym_PIPE, - STATE(3142), 1, - aux_sym_variant_type_repeat1, - STATE(3161), 1, + STATE(2517), 1, sym_decorator, - ACTIONS(1256), 2, + ACTIONS(1306), 2, anon_sym_COLON, anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, + ACTIONS(1308), 16, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, anon_sym_COLON_EQ, anon_sym_COLON_GT, - [173821] = 9, + anon_sym_with, + [137890] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(4368), 1, - anon_sym_COLON, - STATE(1213), 1, - sym_type_annotation, - STATE(3162), 1, + STATE(2518), 1, sym_decorator, - STATE(3299), 1, - sym_variant_parameters, + ACTIONS(1179), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 8, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1177), 16, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - [173858] = 12, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4360), 1, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_LT, - ACTIONS(4370), 1, - anon_sym_EQ, - ACTIONS(4372), 1, - anon_sym_PLUS_EQ, - ACTIONS(4374), 1, - anon_sym_constraint, - STATE(3163), 1, - sym_decorator, - STATE(3323), 1, - sym_type_parameters, - STATE(3488), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4354), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, + anon_sym_GT, anon_sym_PIPE, - [173901] = 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [137927] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(163), 1, - anon_sym_SLASH, - ACTIONS(177), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(173), 1, anon_sym_DQUOTE, - ACTIONS(179), 1, - aux_sym_template_string_token1, - ACTIONS(181), 1, - anon_sym_SQUOTE, - ACTIONS(1209), 1, - sym_number, - STATE(3164), 1, - sym_decorator, - STATE(3254), 1, - sym__literal_pattern, - ACTIONS(1211), 2, - sym_true, - sym_false, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - STATE(3130), 4, - sym_regex, - sym_string, - sym_template_string, - sym_character, - [173944] = 14, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, + ACTIONS(1941), 1, sym__escape_identifier, - ACTIONS(4052), 1, + ACTIONS(3707), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, + ACTIONS(3709), 1, anon_sym_mutable, - ACTIONS(4376), 1, + ACTIONS(3715), 1, anon_sym_RBRACE, - STATE(1091), 1, + STATE(1053), 1, sym__reserved_identifier, - STATE(3165), 1, + STATE(2519), 1, sym_decorator, - STATE(4492), 1, + STATE(3790), 1, sym_value_identifier, - STATE(4620), 1, + STATE(3906), 1, sym__record_type_member, - ACTIONS(1199), 2, + STATE(3907), 1, + sym__object_type_member, + STATE(3955), 1, + sym_type_spread, + STATE(3964), 1, + sym_object_type_field, + STATE(4013), 1, + sym_record_type_field, + STATE(4138), 1, + sym_string, + ACTIONS(1113), 2, anon_sym_unpack, anon_sym_async, - STATE(4609), 2, - sym_record_type_field, - sym_type_spread, + ACTIONS(3717), 2, + anon_sym_DOT_DOT, + anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [173991] = 14, + [137992] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, sym__escape_identifier, - ACTIONS(4052), 1, + ACTIONS(3707), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, + ACTIONS(3709), 1, anon_sym_mutable, - ACTIONS(4378), 1, + ACTIONS(3719), 1, anon_sym_RBRACE, - STATE(1091), 1, + STATE(1053), 1, sym__reserved_identifier, - STATE(3166), 1, + STATE(2520), 1, sym_decorator, - STATE(4492), 1, - sym_value_identifier, - STATE(4620), 1, + STATE(3781), 1, sym__record_type_member, - ACTIONS(1199), 2, + STATE(3788), 1, + sym__object_type_member, + STATE(3790), 1, + sym_value_identifier, + STATE(3955), 1, + sym_type_spread, + STATE(3964), 1, + sym_object_type_field, + STATE(4013), 1, + sym_record_type_field, + STATE(4138), 1, + sym_string, + ACTIONS(1113), 2, anon_sym_unpack, anon_sym_async, - STATE(4609), 2, - sym_record_type_field, - sym_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [174038] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4382), 1, - anon_sym_EQ, - STATE(3167), 1, - sym_decorator, - STATE(3238), 1, - sym_type_annotation, + ACTIONS(3721), 2, + anon_sym_DOT_DOT, + anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4380), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [174071] = 14, + [138057] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, sym__escape_identifier, - ACTIONS(4052), 1, + ACTIONS(3707), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, + ACTIONS(3709), 1, anon_sym_mutable, - ACTIONS(4384), 1, + ACTIONS(3723), 1, anon_sym_RBRACE, - STATE(1091), 1, + STATE(1053), 1, sym__reserved_identifier, - STATE(3168), 1, + STATE(2521), 1, sym_decorator, - STATE(4492), 1, + STATE(3790), 1, sym_value_identifier, - STATE(4620), 1, + STATE(3937), 1, sym__record_type_member, - ACTIONS(1199), 2, + STATE(3938), 1, + sym__object_type_member, + STATE(3955), 1, + sym_type_spread, + STATE(3964), 1, + sym_object_type_field, + STATE(4013), 1, + sym_record_type_field, + STATE(4138), 1, + sym_string, + ACTIONS(1113), 2, anon_sym_unpack, anon_sym_async, - STATE(4609), 2, - sym_record_type_field, - sym_type_spread, + ACTIONS(3725), 2, + anon_sym_DOT_DOT, + anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [174118] = 14, + [138122] = 20, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(1941), 1, sym__escape_identifier, - ACTIONS(4052), 1, + ACTIONS(3707), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, + ACTIONS(3709), 1, anon_sym_mutable, - ACTIONS(4386), 1, + ACTIONS(3727), 1, anon_sym_RBRACE, - STATE(1091), 1, + STATE(1053), 1, sym__reserved_identifier, - STATE(3169), 1, + STATE(2522), 1, sym_decorator, - STATE(4492), 1, - sym_value_identifier, - STATE(4620), 1, + STATE(3673), 1, sym__record_type_member, - ACTIONS(1199), 2, + STATE(3678), 1, + sym__object_type_member, + STATE(3790), 1, + sym_value_identifier, + STATE(3955), 1, + sym_type_spread, + STATE(3964), 1, + sym_object_type_field, + STATE(4013), 1, + sym_record_type_field, + STATE(4138), 1, + sym_string, + ACTIONS(1113), 2, anon_sym_unpack, anon_sym_async, - STATE(4609), 2, - sym_record_type_field, - sym_type_spread, + ACTIONS(3729), 2, + anon_sym_DOT_DOT, + anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [174165] = 6, + [138187] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3170), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(3731), 1, + anon_sym_LPAREN, + ACTIONS(3733), 1, + anon_sym_RPAREN, + STATE(2523), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3584), 1, + sym_module_expression, + STATE(3891), 1, + sym__functor_argument, + STATE(3968), 1, + sym_block, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1335), 4, - anon_sym_and, - anon_sym_as, - anon_sym_with, - aux_sym_type_identifier_token1, - ACTIONS(1333), 8, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_DOT, - anon_sym_PIPE, - sym__escape_identifier, - [174196] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [138245] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - STATE(3171), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(3731), 1, + anon_sym_LPAREN, + ACTIONS(3735), 1, + anon_sym_RPAREN, + STATE(2524), 1, sym_decorator, - ACTIONS(2525), 2, - anon_sym_DOT, - sym__escape_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3584), 1, + sym_module_expression, + STATE(3968), 1, + sym_block, + STATE(3997), 1, + sym__functor_argument, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 3, - anon_sym_and, - anon_sym_as, - anon_sym_with, - ACTIONS(1258), 6, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_PIPE, - [174231] = 13, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [138303] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4388), 1, - anon_sym_GT, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2966), 1, - sym__jsx_element_name, - STATE(3172), 1, - sym_decorator, - ACTIONS(4113), 2, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + ACTIONS(3731), 1, + anon_sym_LPAREN, + ACTIONS(3737), 1, + anon_sym_RPAREN, + STATE(2525), 1, + sym_decorator, + STATE(2891), 1, sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3584), 1, + sym_module_expression, + STATE(3968), 1, + sym_block, + STATE(3997), 1, + sym__functor_argument, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [174276] = 14, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [138361] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - ACTIONS(4390), 1, - anon_sym_RBRACE, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3173), 1, + ACTIONS(3739), 1, + anon_sym_else, + STATE(2526), 1, sym_decorator, - STATE(4492), 1, - sym_value_identifier, - STATE(4620), 1, - sym__record_type_member, - ACTIONS(1199), 2, + STATE(2530), 1, + aux_sym_if_expression_repeat1, + STATE(2615), 1, + sym_else_if_clause, + STATE(2649), 1, + sym_else_clause, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1168), 4, anon_sym_unpack, anon_sym_async, - STATE(4609), 2, - sym_record_type_field, - sym_type_spread, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1170), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [138405] = 17, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(3731), 1, + anon_sym_LPAREN, + ACTIONS(3741), 1, + anon_sym_RPAREN, + STATE(2527), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3584), 1, + sym_module_expression, + STATE(3797), 1, + sym__functor_argument, + STATE(3968), 1, + sym_block, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [174323] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [138463] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3148), 1, - aux_sym_variant_type_repeat1, - STATE(3174), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(3731), 1, + anon_sym_LPAREN, + ACTIONS(3743), 1, + anon_sym_RPAREN, + STATE(2528), 1, sym_decorator, - ACTIONS(1320), 2, - anon_sym_COLON, - anon_sym_EQ, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3584), 1, + sym_module_expression, + STATE(3968), 1, + sym_block, + STATE(3997), 1, + sym__functor_argument, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 9, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [174356] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [138521] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3151), 1, - aux_sym_variant_type_repeat1, - STATE(3175), 1, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2529), 1, sym_decorator, - ACTIONS(1256), 2, - anon_sym_COLON, - anon_sym_EQ, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3014), 1, + sym_module_expression, + STATE(3946), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, + STATE(3310), 2, + sym_block, + sym_functor, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 9, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [174389] = 12, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [138577] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(4311), 1, - anon_sym_constraint, - ACTIONS(4314), 1, - anon_sym_as, - ACTIONS(4392), 1, - anon_sym_EQ, - ACTIONS(4394), 1, - anon_sym_PLUS_EQ, - STATE(3176), 1, + ACTIONS(3739), 1, + anon_sym_else, + STATE(2530), 1, sym_decorator, - STATE(3486), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, + STATE(2550), 1, + aux_sym_if_expression_repeat1, + STATE(2615), 1, + sym_else_if_clause, + STATE(2662), 1, + sym_else_clause, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4347), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [174432] = 6, + ACTIONS(1210), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1212), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [138621] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4398), 1, - anon_sym_EQ, - STATE(3177), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(3731), 1, + anon_sym_LPAREN, + ACTIONS(3745), 1, + anon_sym_RPAREN, + STATE(2531), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3584), 1, + sym_module_expression, + STATE(3968), 1, + sym_block, + STATE(3997), 1, + sym__functor_argument, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4396), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [174462] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [138679] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4402), 1, - anon_sym_EQ, - STATE(3178), 1, + ACTIONS(1181), 1, + sym__identifier, + STATE(2532), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4400), 10, + ACTIONS(2019), 3, + anon_sym_DOT, + aux_sym_type_identifier_token1, + sym__escape_identifier, + ACTIONS(1179), 5, + anon_sym_EQ, + anon_sym_and, + anon_sym_constraint, + anon_sym_as, + anon_sym_with, + ACTIONS(1177), 8, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_LT, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [174492] = 12, + [138719] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, sym__escape_identifier, - STATE(2947), 1, - sym__jsx_element_name, - STATE(2950), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3747), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, + anon_sym_QMARK, + STATE(1053), 1, sym__reserved_identifier, - STATE(3179), 1, + STATE(2533), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2891), 1, sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3664), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [174534] = 12, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [138777] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, sym__escape_identifier, - STATE(2950), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3749), 1, + anon_sym_QMARK, + ACTIONS(3751), 1, + anon_sym_RBRACE, + STATE(1053), 1, sym__reserved_identifier, - STATE(3180), 1, + STATE(2534), 1, sym_decorator, - STATE(4999), 1, - sym__jsx_element_name, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2891), 1, sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3664), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [174576] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [138835] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4406), 1, - anon_sym_EQ, - STATE(3181), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4404), 10, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3749), 1, + anon_sym_QMARK, + ACTIONS(3753), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [174606] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4410), 1, - anon_sym_EQ, - STATE(3182), 1, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2535), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3664), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4408), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [174636] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [138893] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4414), 1, - anon_sym_EQ, - STATE(3183), 1, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3683), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2536), 1, sym_decorator, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3024), 1, + sym_module_expression, + STATE(3943), 1, + sym_functor_parameters, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, + STATE(3250), 2, + sym_block, + sym_functor, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4412), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [174666] = 6, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [138949] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4418), 1, - anon_sym_EQ, - STATE(3184), 1, + ACTIONS(3755), 1, + anon_sym_LT, + STATE(1009), 1, + sym_type_arguments, + STATE(2537), 1, sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4416), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1238), 2, anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [174696] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4422), 1, anon_sym_EQ, - STATE(3185), 1, - sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4420), 10, + ACTIONS(1240), 13, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_PIPE, @@ -240204,281 +202854,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_when, anon_sym_as, - [174726] = 12, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [138989] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, sym__escape_identifier, - STATE(2950), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3749), 1, + anon_sym_QMARK, + ACTIONS(3757), 1, + anon_sym_RBRACE, + STATE(1053), 1, sym__reserved_identifier, - STATE(2967), 1, - sym__jsx_element_name, - STATE(3186), 1, + STATE(2538), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2891), 1, sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3664), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [174768] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [139047] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4426), 1, - anon_sym_EQ, - STATE(3187), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4424), 10, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3749), 1, + anon_sym_QMARK, + ACTIONS(3759), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [174798] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_COLON, - STATE(3188), 1, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2539), 1, sym_decorator, - STATE(3230), 1, - aux_sym_variant_type_repeat1, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3664), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 9, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [174830] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [139105] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4430), 1, - anon_sym_EQ, - STATE(3189), 1, + STATE(2540), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4428), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, + ACTIONS(2557), 7, + anon_sym_module, + anon_sym_type, + anon_sym_unpack, + anon_sym_DOT, + anon_sym_LBRACK, + sym__identifier, + sym_unit_type, + ACTIONS(2559), 10, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [174860] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK_GT, + anon_sym_LBRACK_LT, + anon_sym_TILDE, + aux_sym_variant_identifier_token1, + aux_sym_type_identifier_token1, + sym__escape_identifier, + [139141] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4434), 1, - anon_sym_EQ, - STATE(3190), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2541), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(2937), 1, + sym_value_identifier, + STATE(3728), 1, + sym_module_primary_expression, + STATE(2686), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4432), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [174890] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [139196] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4292), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(3191), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3761), 1, + anon_sym_rec, + STATE(2542), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3194), 1, + sym_type_binding, + STATE(3655), 1, + sym_module_primary_expression, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2756), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 9, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [174922] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [139249] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4438), 1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, anon_sym_LPAREN, - ACTIONS(4440), 1, - anon_sym_DOT, - STATE(3192), 1, + STATE(2543), 1, sym_decorator, - STATE(3321), 1, - sym_functor_arguments, + STATE(2891), 1, + sym_module_identifier, + STATE(3742), 1, + sym_module_primary_expression, + STATE(4029), 1, + sym_generic_type, + STATE(4030), 1, + sym__type_identifier, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(3873), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4436), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_with, - [174956] = 12, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [139302] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, sym__escape_identifier, - STATE(2950), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1053), 1, sym__reserved_identifier, - STATE(3193), 1, + STATE(2544), 1, sym_decorator, - STATE(4778), 1, - sym__jsx_element_name, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2891), 1, sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(4064), 1, + sym__record_field_name, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [174998] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [139357] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4444), 1, - anon_sym_EQ, - STATE(3194), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2545), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3178), 1, + sym_value_identifier, + STATE(3728), 1, + sym_module_primary_expression, + STATE(2686), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4442), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [175028] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [139412] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1252), 1, - anon_sym_EQ, - ACTIONS(4256), 1, - anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(3195), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(3731), 1, + anon_sym_LPAREN, + STATE(2546), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3584), 1, + sym_module_expression, + STATE(3968), 1, + sym_block, + STATE(3997), 1, + sym__functor_argument, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_as, - [175062] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [139467] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4448), 1, - anon_sym_EQ, - STATE(3196), 1, + STATE(2547), 1, sym_decorator, + STATE(2558), 1, + aux_sym_variant_type_repeat1, + ACTIONS(1193), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4446), 10, + ACTIONS(1195), 13, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_PIPE, @@ -240486,23 +203228,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_when, anon_sym_as, - [175092] = 6, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [139504] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4452), 1, - anon_sym_EQ, - STATE(3197), 1, + STATE(2548), 1, sym_decorator, + STATE(2558), 1, + aux_sym_variant_type_repeat1, + ACTIONS(1199), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4450), 10, + ACTIONS(1201), 13, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_PIPE, @@ -240510,316 +203258,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_when, anon_sym_as, - [175122] = 8, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [139541] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_EQ, - ACTIONS(4454), 1, - anon_sym_PIPE, - STATE(3198), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3749), 1, + anon_sym_QMARK, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2549), 1, sym_decorator, - STATE(3200), 1, - aux_sym_variant_type_repeat1, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3664), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_with, - [175156] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [139596] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1324), 1, - anon_sym_EQ, - ACTIONS(4454), 1, - anon_sym_PIPE, - STATE(3199), 1, + ACTIONS(3763), 1, + anon_sym_else, + STATE(2615), 1, + sym_else_if_clause, + STATE(2550), 2, sym_decorator, - STATE(3200), 1, - aux_sym_variant_type_repeat1, + aux_sym_if_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_with, - [175190] = 7, + ACTIONS(1338), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1340), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [139635] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1328), 1, - anon_sym_EQ, - ACTIONS(4456), 1, - anon_sym_PIPE, - STATE(3200), 2, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3766), 1, + anon_sym_rec, + STATE(2551), 1, sym_decorator, - aux_sym_variant_type_repeat1, + STATE(2891), 1, + sym_module_identifier, + STATE(3203), 1, + sym_type_binding, + STATE(3655), 1, + sym_module_primary_expression, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2765), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_with, - [175222] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [139688] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1320), 1, + ACTIONS(1148), 1, anon_sym_EQ, - ACTIONS(4454), 1, - anon_sym_PIPE, - STATE(3198), 1, - aux_sym_variant_type_repeat1, - STATE(3201), 1, + ACTIONS(2327), 1, + anon_sym_LPAREN, + ACTIONS(3768), 1, + anon_sym_COLON, + STATE(1276), 1, + sym_type_annotation, + STATE(2552), 1, sym_decorator, + STATE(2630), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 8, + ACTIONS(1150), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_constraint, + anon_sym_PIPE, anon_sym_as, anon_sym_with, - [175256] = 8, + [139731] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_EQ, - ACTIONS(4454), 1, + ACTIONS(3770), 1, anon_sym_PIPE, - STATE(3199), 1, - aux_sym_variant_type_repeat1, - STATE(3202), 1, + STATE(2553), 1, sym_decorator, + STATE(2558), 1, + aux_sym_variant_type_repeat1, + ACTIONS(1193), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1195), 12, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, anon_sym_with, - [175290] = 12, + [139770] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, sym__escape_identifier, - STATE(2950), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1053), 1, sym__reserved_identifier, - STATE(2955), 1, - sym__jsx_element_name, - STATE(3203), 1, + STATE(2554), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2891), 1, sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(4027), 1, + sym__record_field_name, + STATE(3935), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [175332] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [139825] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1328), 1, + ACTIONS(1156), 1, + anon_sym_EQ, + ACTIONS(3701), 1, anon_sym_COLON, - ACTIONS(4459), 1, - anon_sym_PIPE, - STATE(3204), 2, + STATE(1032), 1, + sym_type_annotation, + STATE(2555), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 8, + ACTIONS(1158), 13, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, anon_sym_COLON_EQ, anon_sym_COLON_GT, - [175364] = 8, + anon_sym_with, + [139864] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_COLON, - ACTIONS(4462), 1, + ACTIONS(3770), 1, anon_sym_PIPE, - STATE(3205), 1, + STATE(2556), 1, sym_decorator, - STATE(3235), 1, + STATE(2558), 1, aux_sym_variant_type_repeat1, + ACTIONS(1199), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, + ACTIONS(1201), 12, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, anon_sym_COLON_EQ, anon_sym_COLON_GT, - [175398] = 11, + anon_sym_with, + [139903] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3998), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, anon_sym_unpack, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4464), 1, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1121), 1, aux_sym_variant_identifier_token1, - STATE(3206), 1, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2557), 1, sym_decorator, - STATE(3322), 1, + STATE(2891), 1, sym_module_identifier, - STATE(4227), 1, + STATE(3281), 1, + sym_value_identifier, + STATE(3728), 1, sym_module_primary_expression, - STATE(3892), 2, + STATE(2686), 2, sym_nested_variant_identifier, sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, + STATE(2896), 4, sym_module_unpack, sym_parenthesized_module_expression, sym_module_identifier_path, sym_functor_use, - [175438] = 12, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2951), 1, - sym__jsx_element_name, - STATE(3207), 1, - sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [175480] = 6, + [139958] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2766), 1, + ACTIONS(3772), 1, + anon_sym_PIPE, + ACTIONS(1203), 2, + anon_sym_COLON, anon_sym_EQ, - STATE(3208), 1, + STATE(2558), 2, sym_decorator, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2768), 10, + ACTIONS(1205), 12, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_if, anon_sym_when, anon_sym_as, - [175510] = 6, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [139995] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4468), 1, - anon_sym_EQ, - STATE(3209), 1, + STATE(2547), 1, + aux_sym_variant_type_repeat1, + STATE(2559), 1, sym_decorator, + ACTIONS(1247), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4466), 10, + ACTIONS(1249), 13, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_PIPE, @@ -240827,95 +203630,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_when, anon_sym_as, - [175540] = 6, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [140032] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2724), 1, - anon_sym_EQ, - STATE(3210), 1, + ACTIONS(3770), 1, + anon_sym_PIPE, + STATE(2553), 1, + aux_sym_variant_type_repeat1, + STATE(2560), 1, sym_decorator, + ACTIONS(1247), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2726), 10, + ACTIONS(1249), 12, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_if, anon_sym_when, anon_sym_as, - [175570] = 6, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [140071] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2734), 1, - anon_sym_EQ, - STATE(3211), 1, + ACTIONS(3770), 1, + anon_sym_PIPE, + STATE(2556), 1, + aux_sym_variant_type_repeat1, + STATE(2561), 1, sym_decorator, + ACTIONS(1193), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2736), 10, + ACTIONS(1195), 12, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_if, anon_sym_when, anon_sym_as, - [175600] = 6, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [140110] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4472), 1, - anon_sym_EQ, - STATE(3212), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2562), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(2950), 1, + sym_value_identifier, + STATE(3728), 1, + sym_module_primary_expression, + STATE(2686), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4470), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [175630] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140165] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4476), 1, - anon_sym_EQ, - STATE(3213), 1, + STATE(2548), 1, + aux_sym_variant_type_repeat1, + STATE(2563), 1, sym_decorator, + ACTIONS(1193), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4474), 10, + ACTIONS(1195), 13, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_PIPE, @@ -240923,8522 +203761,10323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_when, anon_sym_as, - [175660] = 6, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [140202] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4480), 1, - anon_sym_EQ, - STATE(3214), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2564), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3167), 1, + sym_value_identifier, + STATE(3728), 1, + sym_module_primary_expression, + STATE(2686), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4478), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [175690] = 12, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140257] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - STATE(2950), 1, - sym__reserved_identifier, - STATE(3215), 1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3775), 1, + anon_sym_rec, + STATE(2565), 1, sym_decorator, - STATE(4767), 1, - sym__jsx_element_name, - ACTIONS(4113), 2, + STATE(2891), 1, + sym_module_identifier, + STATE(3227), 1, + sym_type_binding, + STATE(3655), 1, + sym_module_primary_expression, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2756), 2, + sym_type_identifier_path, + sym_type_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140310] = 16, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, anon_sym_unpack, + ACTIONS(1113), 1, anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2566), 1, + sym_decorator, + STATE(2891), 1, sym_module_identifier, + STATE(3148), 1, + sym_value_identifier, + STATE(3728), 1, + sym_module_primary_expression, + STATE(2686), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [175732] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140365] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1320), 1, - anon_sym_COLON, - STATE(3216), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2567), 1, sym_decorator, - STATE(3227), 1, - aux_sym_variant_type_repeat1, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(4064), 1, + sym__record_field_name, + STATE(3546), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 9, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [175764] = 12, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140420] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1121), 1, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, + ACTIONS(1941), 1, sym__escape_identifier, - STATE(2950), 1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1053), 1, sym__reserved_identifier, - STATE(3217), 1, + STATE(2568), 1, sym_decorator, - STATE(4743), 1, - sym__jsx_element_name, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2891), 1, sym_module_identifier, + STATE(3142), 1, + sym_value_identifier, + STATE(3728), 1, + sym_module_primary_expression, + STATE(2686), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [175806] = 12, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140475] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3777), 1, + anon_sym_rec, + STATE(2569), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3200), 1, + sym_type_binding, + STATE(3655), 1, + sym_module_primary_expression, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - STATE(2950), 1, + STATE(2765), 2, + sym_type_identifier_path, + sym_type_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140528] = 16, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3779), 1, + anon_sym_QMARK, + STATE(1053), 1, sym__reserved_identifier, - STATE(3218), 1, + STATE(2570), 1, sym_decorator, - STATE(4874), 1, - sym__jsx_element_name, - ACTIONS(4113), 2, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3574), 2, + sym_value_identifier_path, + sym_value_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140583] = 16, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, anon_sym_unpack, + ACTIONS(1113), 1, anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2571), 1, + sym_decorator, + STATE(2891), 1, sym_module_identifier, + STATE(3394), 1, + sym_value_identifier, + STATE(3728), 1, + sym_module_primary_expression, + STATE(2686), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [175848] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140638] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4484), 1, - anon_sym_EQ, - STATE(3219), 1, + STATE(2572), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4482), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1428), 5, + anon_sym_EQ, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1430), 10, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [175878] = 9, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [140672] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2500), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(3731), 1, anon_sym_LPAREN, - ACTIONS(4486), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(3220), 1, + STATE(2573), 1, sym_decorator, - STATE(3354), 1, - sym_variant_parameters, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3860), 1, + sym_block, + STATE(3863), 1, + sym_module_expression, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 7, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [175914] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140724] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4490), 1, - anon_sym_EQ, - STATE(3221), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(2574), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3194), 1, + sym_type_binding, + STATE(3655), 1, + sym_module_primary_expression, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2756), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4488), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [175944] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140774] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4494), 1, - anon_sym_EQ, - STATE(3222), 1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1008), 1, + sym__type_identifier, + STATE(2575), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3742), 1, + sym_module_primary_expression, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2518), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4492), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [175974] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140824] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4498), 1, - anon_sym_EQ, - STATE(3223), 1, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3781), 1, + anon_sym_LPAREN, + STATE(2576), 1, sym_decorator, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(2914), 1, + sym_module_expression, + STATE(3009), 1, + sym_block, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4496), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [176004] = 6, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140876] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4502), 1, - anon_sym_EQ, - STATE(3224), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(2577), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3168), 1, + sym_type_binding, + STATE(3655), 1, + sym_module_primary_expression, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2756), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4500), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [176034] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140926] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4506), 1, - anon_sym_EQ, - STATE(3225), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2578), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3941), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4504), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [176064] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [140978] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1353), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(4314), 1, - anon_sym_as, - STATE(3226), 1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(2579), 1, sym_decorator, + STATE(2835), 1, + sym__type_identifier, + STATE(2891), 1, + sym_module_identifier, + STATE(3742), 1, + sym_module_primary_expression, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2518), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1351), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_with, - [176098] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [141028] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_COLON, - STATE(3204), 1, - aux_sym_variant_type_repeat1, - STATE(3227), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2147), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1226), 1, + sym__type_identifier, + STATE(2580), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3846), 1, + sym_module_primary_expression, + ACTIONS(2153), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1382), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 9, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [176130] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [141078] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4274), 1, - anon_sym_EQ, - STATE(3228), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1630), 1, + sym__type_identifier, + STATE(2581), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3854), 1, + sym_module_primary_expression, + ACTIONS(2199), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1618), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4272), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [176160] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [141128] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4510), 1, - anon_sym_EQ, - STATE(3229), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(3731), 1, + anon_sym_LPAREN, + STATE(2582), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3285), 1, + sym_module_expression, + STATE(3450), 1, + sym_block, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4508), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [176190] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [141180] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1324), 1, - anon_sym_COLON, - STATE(3204), 1, - aux_sym_variant_type_repeat1, - STATE(3230), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3783), 1, + anon_sym_LBRACE, + ACTIONS(3787), 1, + anon_sym_GT, + ACTIONS(3789), 1, + anon_sym_QMARK, + ACTIONS(3791), 1, + anon_sym_SLASH, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, sym_decorator, + STATE(2606), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2907), 1, + sym_value_identifier, + STATE(2946), 1, + sym__jsx_attribute_name, + STATE(2991), 1, + sym__jsx_attribute, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2970), 2, + sym_jsx_expression, + sym_jsx_attribute, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 9, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [176222] = 6, + [141236] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1423), 1, - anon_sym_EQ, - STATE(3231), 1, + ACTIONS(1436), 1, + anon_sym_EQ_GT, + ACTIONS(3795), 1, + anon_sym_as, + STATE(2584), 1, sym_decorator, + ACTIONS(1369), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1421), 10, + ACTIONS(1371), 11, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, + anon_sym_and, anon_sym_COMMA, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_if, anon_sym_when, - anon_sym_as, - [176252] = 12, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [141274] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3783), 1, + anon_sym_LBRACE, + ACTIONS(3787), 1, + anon_sym_GT, + ACTIONS(3789), 1, + anon_sym_QMARK, + ACTIONS(3793), 1, sym__escape_identifier, - STATE(2950), 1, + ACTIONS(3797), 1, + anon_sym_SLASH, + STATE(2572), 1, sym__reserved_identifier, - STATE(3232), 1, + STATE(2585), 1, sym_decorator, - STATE(5036), 1, - sym__jsx_element_name, - ACTIONS(4113), 2, + STATE(2598), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2907), 1, + sym_value_identifier, + STATE(2946), 1, + sym__jsx_attribute_name, + STATE(2991), 1, + sym__jsx_attribute, + ACTIONS(3785), 2, anon_sym_unpack, anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, + STATE(2970), 2, + sym_jsx_expression, + sym_jsx_attribute, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [176294] = 6, + [141330] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4514), 1, - anon_sym_EQ, - STATE(3233), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3783), 1, + anon_sym_LBRACE, + ACTIONS(3787), 1, + anon_sym_GT, + ACTIONS(3789), 1, + anon_sym_QMARK, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3799), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2586), 1, sym_decorator, + STATE(2589), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2907), 1, + sym_value_identifier, + STATE(2946), 1, + sym__jsx_attribute_name, + STATE(2991), 1, + sym__jsx_attribute, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2970), 2, + sym_jsx_expression, + sym_jsx_attribute, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4512), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [176324] = 11, + [141386] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3998), 1, + ACTIONS(1616), 1, anon_sym_unpack, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4464), 1, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - STATE(3234), 1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(2587), 1, sym_decorator, - STATE(3322), 1, + STATE(2891), 1, sym_module_identifier, - STATE(4227), 1, + STATE(3168), 1, + sym_type_binding, + STATE(3655), 1, sym_module_primary_expression, - STATE(3842), 2, - sym_nested_variant_identifier, - sym_variant_identifier, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2765), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, + STATE(2896), 4, sym_module_unpack, sym_parenthesized_module_expression, sym_module_identifier_path, sym_functor_use, - [176364] = 8, + [141436] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1324), 1, - anon_sym_COLON, - ACTIONS(4462), 1, - anon_sym_PIPE, - STATE(3204), 1, - aux_sym_variant_type_repeat1, - STATE(3235), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(2588), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3312), 1, + sym_type_binding, + STATE(3655), 1, + sym_module_primary_expression, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2765), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 8, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [176398] = 13, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [141486] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3783), 1, + anon_sym_LBRACE, + ACTIONS(3789), 1, + anon_sym_QMARK, + ACTIONS(3793), 1, sym__escape_identifier, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4054), 1, - anon_sym_mutable, - STATE(1091), 1, + ACTIONS(3801), 1, + anon_sym_GT, + ACTIONS(3803), 1, + anon_sym_SLASH, + STATE(2572), 1, sym__reserved_identifier, - STATE(3236), 1, + STATE(2589), 1, sym_decorator, - STATE(4492), 1, + STATE(2612), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2907), 1, sym_value_identifier, - STATE(4620), 1, - sym__record_type_member, - ACTIONS(1199), 2, + STATE(2946), 1, + sym__jsx_attribute_name, + STATE(2991), 1, + sym__jsx_attribute, + ACTIONS(3785), 2, anon_sym_unpack, anon_sym_async, - STATE(4609), 2, - sym_record_type_field, - sym_type_spread, + STATE(2970), 2, + sym_jsx_expression, + sym_jsx_attribute, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [176442] = 6, + [141542] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4518), 1, - anon_sym_EQ, - STATE(3237), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3783), 1, + anon_sym_LBRACE, + ACTIONS(3789), 1, + anon_sym_QMARK, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3801), 1, + anon_sym_GT, + ACTIONS(3805), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2590), 1, sym_decorator, + STATE(2612), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2907), 1, + sym_value_identifier, + STATE(2946), 1, + sym__jsx_attribute_name, + STATE(2991), 1, + sym__jsx_attribute, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2970), 2, + sym_jsx_expression, + sym_jsx_attribute, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4516), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [176472] = 6, + [141598] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4522), 1, - anon_sym_EQ, - STATE(3238), 1, + STATE(2591), 1, sym_decorator, + ACTIONS(1467), 2, + anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4520), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [176502] = 12, + ACTIONS(1385), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1387), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [141634] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - STATE(2950), 1, - sym__reserved_identifier, - STATE(3239), 1, - sym_decorator, - STATE(5049), 1, - sym__jsx_element_name, - ACTIONS(4113), 2, + ACTIONS(3673), 1, + anon_sym_RPAREN, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + ACTIONS(3731), 1, + anon_sym_LPAREN, + STATE(2592), 1, + sym_decorator, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3117), 1, sym_module_identifier, + STATE(3477), 1, + sym_module_expression, + STATE(3776), 1, + sym_functor_parameter, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [176544] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [141686] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1320), 1, - anon_sym_COLON, - ACTIONS(4462), 1, - anon_sym_PIPE, - STATE(3240), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3673), 1, + anon_sym_RPAREN, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(3731), 1, + anon_sym_LPAREN, + STATE(2593), 1, sym_decorator, - STATE(3253), 1, - aux_sym_variant_type_repeat1, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3117), 1, + sym_module_identifier, + STATE(3431), 1, + sym_module_expression, + STATE(3776), 1, + sym_functor_parameter, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 8, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [176578] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [141738] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4258), 1, - anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(3241), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3783), 1, + anon_sym_LBRACE, + ACTIONS(3787), 1, + anon_sym_GT, + ACTIONS(3789), 1, + anon_sym_QMARK, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3807), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2594), 1, sym_decorator, + STATE(2597), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2907), 1, + sym_value_identifier, + STATE(2946), 1, + sym__jsx_attribute_name, + STATE(2991), 1, + sym__jsx_attribute, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2970), 2, + sym_jsx_expression, + sym_jsx_attribute, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [176610] = 6, + [141794] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2782), 1, - anon_sym_EQ, - STATE(3242), 1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(2595), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3062), 1, + sym__type_identifier, + STATE(3742), 1, + sym_module_primary_expression, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2518), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2784), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [176640] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [141844] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4526), 1, - anon_sym_EQ, - STATE(3243), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3809), 1, + sym__identifier, + STATE(770), 1, + sym__type_identifier, + STATE(2596), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3775), 1, + sym_module_primary_expression, + ACTIONS(3811), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(787), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4524), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [176670] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [141894] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_EQ, - STATE(3200), 1, - aux_sym_variant_type_repeat1, - STATE(3244), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3783), 1, + anon_sym_LBRACE, + ACTIONS(3789), 1, + anon_sym_QMARK, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3801), 1, + anon_sym_GT, + ACTIONS(3813), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2597), 1, sym_decorator, + STATE(2612), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2907), 1, + sym_value_identifier, + STATE(2946), 1, + sym__jsx_attribute_name, + STATE(2991), 1, + sym__jsx_attribute, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2970), 2, + sym_jsx_expression, + sym_jsx_attribute, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [176702] = 7, + [141950] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1324), 1, - anon_sym_EQ, - STATE(3200), 1, - aux_sym_variant_type_repeat1, - STATE(3245), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3783), 1, + anon_sym_LBRACE, + ACTIONS(3789), 1, + anon_sym_QMARK, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3801), 1, + anon_sym_GT, + ACTIONS(3815), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2598), 1, sym_decorator, + STATE(2612), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2907), 1, + sym_value_identifier, + STATE(2946), 1, + sym__jsx_attribute_name, + STATE(2991), 1, + sym__jsx_attribute, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2970), 2, + sym_jsx_expression, + sym_jsx_attribute, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [176734] = 7, + [142006] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1320), 1, - anon_sym_EQ, - STATE(3244), 1, - aux_sym_variant_type_repeat1, - STATE(3246), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2159), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1008), 1, + sym__type_identifier, + STATE(2599), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3682), 1, + sym_module_primary_expression, + ACTIONS(2165), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1339), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [176766] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [142056] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_EQ, - STATE(3245), 1, - aux_sym_variant_type_repeat1, - STATE(3247), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3783), 1, + anon_sym_LBRACE, + ACTIONS(3787), 1, + anon_sym_GT, + ACTIONS(3789), 1, + anon_sym_QMARK, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3817), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2600), 1, sym_decorator, + STATE(2602), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2907), 1, + sym_value_identifier, + STATE(2946), 1, + sym__jsx_attribute_name, + STATE(2991), 1, + sym__jsx_attribute, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2970), 2, + sym_jsx_expression, + sym_jsx_attribute, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [176798] = 6, + [142112] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4530), 1, - anon_sym_EQ, - STATE(3248), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1109), 1, + anon_sym_unpack, + ACTIONS(1113), 1, + anon_sym_async, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2601), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3701), 1, + sym_module_primary_expression, + STATE(3533), 2, + sym_value_identifier_path, + sym_value_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4528), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [176828] = 5, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [142164] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3249), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3783), 1, + anon_sym_LBRACE, + ACTIONS(3789), 1, + anon_sym_QMARK, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3801), 1, + anon_sym_GT, + ACTIONS(3819), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2602), 1, sym_decorator, + STATE(2612), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2907), 1, + sym_value_identifier, + STATE(2946), 1, + sym__jsx_attribute_name, + STATE(2991), 1, + sym__jsx_attribute, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2970), 2, + sym_jsx_expression, + sym_jsx_attribute, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2071), 11, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_with, - [176856] = 12, + [142220] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3783), 1, + anon_sym_LBRACE, + ACTIONS(3787), 1, + anon_sym_GT, + ACTIONS(3789), 1, + anon_sym_QMARK, + ACTIONS(3793), 1, sym__escape_identifier, - STATE(2950), 1, + ACTIONS(3821), 1, + anon_sym_SLASH, + STATE(2572), 1, sym__reserved_identifier, - STATE(2958), 1, - sym__jsx_element_name, - STATE(3250), 1, + STATE(2590), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2603), 1, sym_decorator, - ACTIONS(4113), 2, + STATE(2907), 1, + sym_value_identifier, + STATE(2946), 1, + sym__jsx_attribute_name, + STATE(2991), 1, + sym__jsx_attribute, + ACTIONS(3785), 2, anon_sym_unpack, anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, - sym_module_identifier, + STATE(2970), 2, + sym_jsx_expression, + sym_jsx_attribute, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [176898] = 6, + [142276] = 15, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4534), 1, - anon_sym_EQ, - STATE(3251), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(3731), 1, + anon_sym_LPAREN, + STATE(2604), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3586), 1, + sym_module_expression, + STATE(3860), 1, + sym_block, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4532), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [176928] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [142328] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4438), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2175), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, anon_sym_LPAREN, - ACTIONS(4440), 1, - anon_sym_DOT, - STATE(3252), 1, + STATE(2605), 1, sym_decorator, - STATE(3321), 1, - sym_functor_arguments, + STATE(2891), 1, + sym_module_identifier, + STATE(3062), 1, + sym__type_identifier, + STATE(3856), 1, + sym_module_primary_expression, + ACTIONS(2183), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2518), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4536), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_with, - [176962] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [142378] = 17, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_COLON, - ACTIONS(4462), 1, - anon_sym_PIPE, - STATE(3204), 1, - aux_sym_variant_type_repeat1, - STATE(3253), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3783), 1, + anon_sym_LBRACE, + ACTIONS(3789), 1, + anon_sym_QMARK, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3801), 1, + anon_sym_GT, + ACTIONS(3823), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2606), 1, sym_decorator, + STATE(2612), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2907), 1, + sym_value_identifier, + STATE(2946), 1, + sym__jsx_attribute_name, + STATE(2991), 1, + sym__jsx_attribute, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2970), 2, + sym_jsx_expression, + sym_jsx_attribute, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_COLON_EQ, - anon_sym_COLON_GT, - [176996] = 6, + [142434] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4540), 1, - anon_sym_EQ, - STATE(3254), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(2607), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3185), 1, + sym_type_binding, + STATE(3655), 1, + sym_module_primary_expression, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2756), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4538), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [177026] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [142484] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4544), 1, - anon_sym_EQ, - STATE(3255), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1226), 1, + sym__type_identifier, + STATE(2608), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3655), 1, + sym_module_primary_expression, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(1382), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4542), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [177056] = 12, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [142534] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - STATE(2950), 1, - sym__reserved_identifier, - STATE(2966), 1, - sym__jsx_element_name, - STATE(3256), 1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(2609), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, - STATE(3408), 2, - sym__jsx_identifier, - sym_nested_jsx_identifier, - STATE(3410), 2, - sym_value_identifier, + STATE(2891), 1, sym_module_identifier, + STATE(3203), 1, + sym_type_binding, + STATE(3655), 1, + sym_module_primary_expression, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2765), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [177098] = 6, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [142584] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4548), 1, - anon_sym_EQ, - STATE(3257), 1, + ACTIONS(1608), 1, + sym__identifier, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(2610), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3556), 1, + sym__type_identifier, + STATE(3742), 1, + sym_module_primary_expression, + ACTIONS(1628), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(2518), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4546), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [177128] = 13, - ACTIONS(3), 1, - sym_line_comment, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [142634] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4552), 1, - anon_sym_BQUOTE, - ACTIONS(4556), 1, - anon_sym_DOLLAR, - ACTIONS(4558), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3258), 1, + ACTIONS(1616), 1, + anon_sym_unpack, + ACTIONS(2227), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(1572), 1, + sym__type_identifier, + STATE(2611), 1, sym_decorator, - STATE(3331), 1, - aux_sym_template_string_content_repeat1, - STATE(3615), 1, - sym_template_substitution, - STATE(4729), 1, - sym_template_string_content, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - ACTIONS(4550), 2, - sym_escape_sequence, - anon_sym_BSLASH_BQUOTE, - ACTIONS(4554), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - [177171] = 11, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(1197), 1, - anon_sym_LBRACK, - ACTIONS(1213), 1, - sym__list_constructor, - ACTIONS(2063), 1, + STATE(2891), 1, + sym_module_identifier, + STATE(3833), 1, + sym_module_primary_expression, + ACTIONS(2241), 2, + aux_sym_type_identifier_token1, sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3259), 1, - sym_decorator, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, + STATE(1488), 2, + sym_type_identifier_path, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(4143), 3, - sym_array_pattern, - sym_list_pattern, - sym_value_identifier, - [177210] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [142684] = 16, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2582), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_DOT_DOT, - STATE(3214), 1, - sym_as_aliasing, - STATE(3260), 1, + ACTIONS(3825), 1, + sym__identifier, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(3834), 1, + anon_sym_GT, + ACTIONS(3836), 1, + anon_sym_QMARK, + ACTIONS(3839), 1, + anon_sym_SLASH, + ACTIONS(3841), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2907), 1, + sym_value_identifier, + STATE(2946), 1, + sym__jsx_attribute_name, + STATE(2991), 1, + sym__jsx_attribute, + ACTIONS(3831), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2612), 2, sym_decorator, + aux_sym_jsx_opening_element_repeat1, + STATE(2970), 2, + sym_jsx_expression, + sym_jsx_attribute, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4560), 7, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - [177243] = 6, + [142738] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3261), 1, - sym_decorator, - ACTIONS(4566), 2, + ACTIONS(2031), 1, + anon_sym_LPAREN, + ACTIONS(3844), 1, anon_sym_COLON, - anon_sym_EQ, + STATE(1010), 1, + sym_type_annotation, + STATE(2613), 1, + sym_decorator, + STATE(2732), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4564), 8, - anon_sym_LPAREN, + ACTIONS(1150), 11, + anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ, anon_sym_and, - anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_as, anon_sym_COLON_EQ, + anon_sym_COLON_GT, anon_sym_with, - [177272] = 5, + [142778] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3262), 1, + STATE(2614), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4568), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1534), 5, + anon_sym_unpack, + anon_sym_async, + anon_sym_else, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1536), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, + anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_with, - [177299] = 8, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [142811] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2639), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_DOT_DOT, - STATE(3214), 1, - sym_as_aliasing, - STATE(3263), 1, + STATE(2615), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4560), 7, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - [177332] = 5, + ACTIONS(1473), 5, + anon_sym_unpack, + anon_sym_async, + anon_sym_else, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1475), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [142844] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3264), 1, + ACTIONS(3846), 1, + sym_regex_flags, + STATE(2616), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4570), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1501), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1503), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, + anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_with, - [177359] = 13, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [142879] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4556), 1, - anon_sym_DOLLAR, - ACTIONS(4558), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4572), 1, - anon_sym_BQUOTE, - STATE(3265), 1, + ACTIONS(3848), 1, + anon_sym_LPAREN, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_LBRACK, + STATE(2617), 1, sym_decorator, - STATE(3331), 1, - aux_sym_template_string_content_repeat1, - STATE(3615), 1, - sym_template_substitution, - STATE(5025), 1, - sym_template_string_content, - ACTIONS(5), 2, + STATE(2742), 1, + sym_call_arguments, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(4550), 2, - sym_escape_sequence, - anon_sym_BSLASH_BQUOTE, - ACTIONS(4554), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - [177402] = 13, - ACTIONS(3), 1, sym_line_comment, + ACTIONS(1479), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1481), 6, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [142920] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4556), 1, - anon_sym_DOLLAR, - ACTIONS(4558), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4574), 1, - anon_sym_BQUOTE, - STATE(3266), 1, + STATE(2618), 1, sym_decorator, - STATE(3331), 1, - aux_sym_template_string_content_repeat1, - STATE(3615), 1, - sym_template_substitution, - STATE(4956), 1, - sym_template_string_content, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(4550), 2, - sym_escape_sequence, - anon_sym_BSLASH_BQUOTE, - ACTIONS(4554), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - [177445] = 7, + sym_line_comment, + ACTIONS(1143), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1138), 10, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [142953] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3267), 1, + ACTIONS(3854), 1, + anon_sym_LPAREN, + STATE(2619), 1, sym_decorator, - ACTIONS(1620), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + STATE(2745), 1, + sym_variant_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4576), 4, + ACTIONS(1517), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1519), 8, anon_sym_LBRACE, anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, sym__escape_identifier, - ACTIONS(4578), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - [177476] = 6, + [142990] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3268), 1, + ACTIONS(2443), 1, + anon_sym_EQ_GT, + STATE(2620), 1, sym_decorator, - ACTIONS(4582), 2, - anon_sym_COLON, - anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4580), 8, + ACTIONS(1396), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1398), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, + anon_sym_GT, anon_sym_DOT, - anon_sym_COLON_EQ, - anon_sym_with, - [177505] = 6, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143025] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3269), 1, + ACTIONS(3856), 1, + anon_sym_LPAREN, + STATE(2621), 1, sym_decorator, - ACTIONS(4586), 2, - anon_sym_COLON, - anon_sym_EQ, + STATE(2642), 1, + sym__extension_expression_payload, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4584), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, + ACTIONS(1507), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1509), 8, + anon_sym_LBRACE, + anon_sym_GT, anon_sym_DOT, - anon_sym_COLON_EQ, - anon_sym_with, - [177534] = 6, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143062] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3270), 1, + STATE(2622), 1, sym_decorator, - ACTIONS(4588), 2, - anon_sym_COLON, - anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4570), 8, + ACTIONS(1143), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1138), 10, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, + anon_sym_EQ, + anon_sym_GT, anon_sym_DOT, - anon_sym_COLON_EQ, - anon_sym_with, - [177563] = 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143095] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3271), 1, + ACTIONS(3854), 1, + anon_sym_LPAREN, + STATE(2623), 1, sym_decorator, + STATE(2746), 1, + sym_variant_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4580), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, + ACTIONS(1489), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1491), 8, + anon_sym_LBRACE, + anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_with, - [177590] = 6, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143132] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3272), 1, + ACTIONS(3848), 1, + anon_sym_LPAREN, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_LBRACK, + STATE(2624), 1, sym_decorator, - ACTIONS(4592), 2, - anon_sym_COLON, - anon_sym_EQ, + STATE(2742), 1, + sym_call_arguments, + ACTIONS(3862), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4590), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_COLON_EQ, - anon_sym_with, - [177619] = 5, + ACTIONS(3858), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(3860), 4, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [143175] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3273), 1, + ACTIONS(1238), 1, + anon_sym_EQ, + ACTIONS(3864), 1, + anon_sym_LT, + STATE(1273), 1, + sym_type_arguments, + STATE(2625), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4584), 10, + ACTIONS(1240), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ, anon_sym_and, - anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_constraint, anon_sym_PIPE, + anon_sym_as, anon_sym_with, - [177646] = 6, + [143212] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3274), 1, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3781), 1, + anon_sym_LPAREN, + ACTIONS(3866), 1, + anon_sym_BANG, + STATE(2626), 1, sym_decorator, - ACTIONS(4596), 2, - anon_sym_COLON, - anon_sym_EQ, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3245), 1, + sym_module_expression, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4594), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_COLON_EQ, - anon_sym_with, - [177675] = 5, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [143261] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3275), 1, + STATE(2627), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4590), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1513), 5, + anon_sym_unpack, + anon_sym_async, + anon_sym_else, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1515), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, + anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_with, - [177702] = 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143294] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3276), 1, + STATE(2628), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4598), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1521), 5, + anon_sym_unpack, + anon_sym_async, + anon_sym_else, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1523), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, + anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_with, - [177729] = 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143327] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3277), 1, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3781), 1, + anon_sym_LPAREN, + ACTIONS(3868), 1, + anon_sym_BANG, + STATE(2629), 1, sym_decorator, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3297), 1, + sym_module_expression, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4600), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_with, - [177756] = 7, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [143376] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4294), 1, + ACTIONS(1156), 1, + anon_sym_EQ, + ACTIONS(3768), 1, anon_sym_COLON, - STATE(1198), 1, + STATE(1358), 1, sym_type_annotation, - STATE(3278), 1, + STATE(2630), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 8, + ACTIONS(1158), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, anon_sym_constraint, anon_sym_PIPE, anon_sym_as, - [177787] = 7, + anon_sym_with, + [143413] = 14, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3872), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2631), 1, + sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + [143461] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4366), 1, + ACTIONS(1247), 1, anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(3279), 1, + ACTIONS(3874), 1, + anon_sym_PIPE, + STATE(2632), 1, sym_decorator, + STATE(2722), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 8, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1249), 10, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ, anon_sym_and, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_as, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, anon_sym_with, - [177818] = 10, + [143497] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - ACTIONS(4604), 1, - anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_PLUS_EQ, - STATE(3280), 1, + STATE(2633), 1, sym_decorator, - STATE(3464), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4602), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [177855] = 13, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(1590), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1592), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143529] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4556), 1, - anon_sym_DOLLAR, - ACTIONS(4558), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4608), 1, - anon_sym_BQUOTE, - STATE(3281), 1, + STATE(2634), 1, sym_decorator, - STATE(3331), 1, - aux_sym_template_string_content_repeat1, - STATE(3615), 1, - sym_template_substitution, - STATE(4913), 1, - sym_template_string_content, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(4550), 2, - sym_escape_sequence, - anon_sym_BSLASH_BQUOTE, - ACTIONS(4554), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - [177898] = 8, + sym_line_comment, + ACTIONS(1479), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1481), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143561] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_EQ, - ACTIONS(4610), 1, + ACTIONS(1193), 1, + anon_sym_COLON, + ACTIONS(3874), 1, anon_sym_PIPE, - STATE(3282), 1, + STATE(2635), 1, sym_decorator, - STATE(3284), 1, + STATE(2734), 1, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1195), 10, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ, anon_sym_and, - anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_as, - [177931] = 8, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [143597] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1324), 1, - anon_sym_EQ, - ACTIONS(4610), 1, - anon_sym_PIPE, - STATE(3283), 1, + ACTIONS(2327), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_COLON, + STATE(1276), 1, + sym_type_annotation, + STATE(2636), 1, sym_decorator, - STATE(3284), 1, - aux_sym_variant_type_repeat1, + STATE(2842), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, + ACTIONS(1150), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, - anon_sym_EQ_GT, + anon_sym_constraint, + anon_sym_PIPE, anon_sym_as, - [177964] = 7, + anon_sym_with, + [143635] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1328), 1, - anon_sym_EQ, - ACTIONS(4612), 1, - anon_sym_PIPE, - STATE(3284), 2, + ACTIONS(1247), 1, + anon_sym_COLON, + STATE(2637), 1, sym_decorator, + STATE(2720), 1, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1249), 11, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ, anon_sym_and, - anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_as, - [177995] = 8, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [143669] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1320), 1, - anon_sym_EQ, - ACTIONS(4610), 1, - anon_sym_PIPE, - STATE(3282), 1, - aux_sym_variant_type_repeat1, - STATE(3285), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(3731), 1, + anon_sym_LPAREN, + STATE(2638), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3416), 1, + sym_module_expression, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_as, - [178028] = 8, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [143715] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_EQ, - ACTIONS(4610), 1, - anon_sym_PIPE, - STATE(3283), 1, - aux_sym_variant_type_repeat1, - STATE(3286), 1, + STATE(2639), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_as, - [178061] = 7, + ACTIONS(1600), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1602), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143747] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3287), 1, + STATE(2640), 1, sym_decorator, - ACTIONS(1569), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4615), 4, + ACTIONS(1604), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1606), 9, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, sym__escape_identifier, - ACTIONS(4617), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - [178092] = 6, + [143779] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3288), 1, + STATE(2641), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1335), 3, + ACTIONS(1538), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1540), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, anon_sym_DOT, - anon_sym_as, - aux_sym_type_identifier_token1, - ACTIONS(1333), 7, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, sym__escape_identifier, - [178121] = 7, + [143811] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4619), 1, - anon_sym_PIPE, - STATE(3289), 1, + STATE(2642), 1, sym_decorator, - STATE(3291), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - anon_sym_with, - [178152] = 7, + ACTIONS(1636), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1638), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143843] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4619), 1, - anon_sym_PIPE, - STATE(3290), 1, + STATE(2643), 1, sym_decorator, - STATE(3291), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - anon_sym_with, - [178183] = 6, + ACTIONS(1640), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1642), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143875] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4621), 1, - anon_sym_PIPE, - STATE(3291), 2, + STATE(2644), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - anon_sym_with, - [178212] = 7, + ACTIONS(1644), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1646), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143907] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4619), 1, - anon_sym_PIPE, - STATE(3289), 1, - aux_sym_variant_type_repeat1, - STATE(3292), 1, + STATE(2645), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - anon_sym_with, - [178243] = 7, + ACTIONS(1648), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1650), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143939] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4619), 1, - anon_sym_PIPE, - STATE(3290), 1, - aux_sym_variant_type_repeat1, - STATE(3293), 1, + STATE(2646), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - anon_sym_with, - [178274] = 13, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(1652), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1654), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [143971] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4556), 1, - anon_sym_DOLLAR, - ACTIONS(4558), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4624), 1, - anon_sym_BQUOTE, - STATE(3294), 1, + STATE(2647), 1, sym_decorator, - STATE(3331), 1, - aux_sym_template_string_content_repeat1, - STATE(3615), 1, - sym_template_substitution, - STATE(4941), 1, - sym_template_string_content, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(4550), 2, - sym_escape_sequence, - anon_sym_BSLASH_BQUOTE, - ACTIONS(4554), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - [178317] = 7, + sym_line_comment, + ACTIONS(1302), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1304), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144003] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1303), 1, - anon_sym_EQ_GT, - ACTIONS(1441), 1, - anon_sym_EQ, - STATE(3295), 1, + STATE(2648), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1438), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [178348] = 8, + ACTIONS(1656), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1658), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144035] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1260), 1, - anon_sym_as, - ACTIONS(2525), 1, - sym__escape_identifier, - STATE(3296), 1, + STATE(2649), 1, sym_decorator, - ACTIONS(1265), 2, - anon_sym_DOT, - aux_sym_type_identifier_token1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1258), 6, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - [178381] = 13, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(1210), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1212), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144067] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4556), 1, - anon_sym_DOLLAR, - ACTIONS(4558), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4626), 1, - anon_sym_BQUOTE, - STATE(3297), 1, + STATE(2650), 1, sym_decorator, - STATE(3331), 1, - aux_sym_template_string_content_repeat1, - STATE(3615), 1, - sym_template_substitution, - STATE(4785), 1, - sym_template_string_content, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(4550), 2, - sym_escape_sequence, - anon_sym_BSLASH_BQUOTE, - ACTIONS(4554), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - [178424] = 5, + sym_line_comment, + ACTIONS(1664), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1666), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144099] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3298), 1, + ACTIONS(1193), 1, + anon_sym_COLON, + STATE(2651), 1, sym_decorator, + STATE(2721), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4628), 10, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1195), 11, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ, anon_sym_and, - anon_sym_DOT, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, anon_sym_with, - [178451] = 7, + [144133] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4368), 1, - anon_sym_COLON, - STATE(1198), 1, - sym_type_annotation, - STATE(3299), 1, + STATE(2652), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - [178482] = 5, + ACTIONS(1670), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1672), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144165] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3300), 1, + STATE(2653), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4564), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1449), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1451), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, + anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_with, - [178509] = 6, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144197] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(2654), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1674), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1676), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144229] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3301), 1, + STATE(2655), 1, sym_decorator, - ACTIONS(4630), 2, - anon_sym_COLON, - anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4628), 8, + ACTIONS(1678), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1680), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, + anon_sym_GT, anon_sym_DOT, - anon_sym_COLON_EQ, - anon_sym_with, - [178538] = 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144261] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3302), 1, + STATE(2656), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4594), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1682), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1684), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, + anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_with, - [178565] = 9, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144293] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4632), 1, - anon_sym_LPAREN, - ACTIONS(4634), 1, - anon_sym_COLON, - STATE(3303), 1, + STATE(2657), 1, sym_decorator, - STATE(3478), 1, - sym_variant_parameters, - STATE(3558), 1, - sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 6, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [178600] = 5, + ACTIONS(1686), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1688), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144325] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3304), 1, + STATE(2658), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4628), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1690), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1692), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, + anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_with, - [178627] = 7, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144357] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_EQ, - STATE(3284), 1, - aux_sym_variant_type_repeat1, - STATE(3305), 1, + STATE(2659), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_as, - [178658] = 7, + ACTIONS(1694), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1696), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144389] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1324), 1, - anon_sym_EQ, - STATE(3284), 1, - aux_sym_variant_type_repeat1, - STATE(3306), 1, + STATE(2660), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_as, - [178689] = 7, + ACTIONS(1702), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1704), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144421] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1320), 1, - anon_sym_EQ, - STATE(3305), 1, - aux_sym_variant_type_repeat1, - STATE(3307), 1, + STATE(2661), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_as, - [178720] = 7, + ACTIONS(1706), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1708), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144453] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1256), 1, - anon_sym_EQ, - STATE(3306), 1, - aux_sym_variant_type_repeat1, - STATE(3308), 1, + STATE(2662), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_as, - [178751] = 9, + ACTIONS(1710), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1712), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144485] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2500), 1, - anon_sym_LPAREN, - ACTIONS(4636), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(3309), 1, + ACTIONS(1247), 1, + anon_sym_EQ, + ACTIONS(3878), 1, + anon_sym_PIPE, + STATE(2663), 1, sym_decorator, - STATE(3420), 1, - sym_variant_parameters, + STATE(2696), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 6, + ACTIONS(1249), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, - anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_constraint, anon_sym_as, anon_sym_with, - [178786] = 6, + [144521] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3310), 1, + STATE(2664), 1, sym_decorator, - ACTIONS(4638), 2, - anon_sym_COLON, - anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4600), 8, + ACTIONS(1722), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1724), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, + anon_sym_GT, anon_sym_DOT, - anon_sym_COLON_EQ, - anon_sym_with, - [178815] = 6, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144553] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3311), 1, + STATE(2665), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1335), 4, - anon_sym_if, - anon_sym_when, - anon_sym_as, - aux_sym_type_identifier_token1, - ACTIONS(1333), 6, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_LT, + ACTIONS(1726), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1728), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, sym__escape_identifier, - [178844] = 6, + [144585] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3312), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3880), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2666), 1, sym_decorator, - ACTIONS(4642), 2, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4640), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_COLON_EQ, - anon_sym_with, - [178873] = 13, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4556), 1, - anon_sym_DOLLAR, - ACTIONS(4558), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4644), 1, - anon_sym_BQUOTE, - STATE(3313), 1, - sym_decorator, - STATE(3331), 1, - aux_sym_template_string_content_repeat1, - STATE(3615), 1, - sym_template_substitution, - STATE(4964), 1, - sym_template_string_content, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - ACTIONS(4550), 2, - sym_escape_sequence, - anon_sym_BSLASH_BQUOTE, - ACTIONS(4554), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - [178916] = 8, + [144633] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1265), 1, - aux_sym_type_identifier_token1, - STATE(3314), 1, + STATE(2667), 1, sym_decorator, - ACTIONS(2525), 2, - anon_sym_DOT, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1260), 3, - anon_sym_if, - anon_sym_when, - anon_sym_as, - ACTIONS(1258), 4, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_LT, - anon_sym_PIPE, - [178949] = 13, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(1730), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1732), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144665] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4556), 1, - anon_sym_DOLLAR, - ACTIONS(4558), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4646), 1, - anon_sym_BQUOTE, - STATE(3315), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3882), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2668), 1, sym_decorator, - STATE(3331), 1, - aux_sym_template_string_content_repeat1, - STATE(3615), 1, - sym_template_substitution, - STATE(4976), 1, - sym_template_string_content, - ACTIONS(5), 2, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(4550), 2, - sym_escape_sequence, - anon_sym_BSLASH_BQUOTE, - ACTIONS(4554), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - [178992] = 6, + sym_line_comment, + [144713] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3291), 1, - aux_sym_variant_type_repeat1, - STATE(3316), 1, + STATE(2669), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [179021] = 6, + ACTIONS(1734), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1736), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144745] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3291), 1, - aux_sym_variant_type_repeat1, - STATE(3317), 1, + STATE(2670), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [179050] = 6, + ACTIONS(1738), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1740), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144777] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3316), 1, - aux_sym_variant_type_repeat1, - STATE(3318), 1, + STATE(2671), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [179079] = 6, + ACTIONS(1742), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1744), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144809] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3317), 1, - aux_sym_variant_type_repeat1, - STATE(3319), 1, + STATE(2672), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [179108] = 6, + ACTIONS(1746), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1748), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144841] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3320), 1, + STATE(2673), 1, sym_decorator, - ACTIONS(4648), 2, - anon_sym_COLON, - anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4598), 8, + ACTIONS(1750), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1752), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, + anon_sym_GT, anon_sym_DOT, - anon_sym_COLON_EQ, - anon_sym_with, - [179137] = 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144873] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3321), 1, + STATE(2674), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4640), 10, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1754), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1756), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, + anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_with, - [179164] = 6, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144905] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3322), 1, + STATE(2675), 1, sym_decorator, - ACTIONS(4630), 2, - anon_sym_COLON, - anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4628), 8, + ACTIONS(1758), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1760), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, + anon_sym_GT, anon_sym_DOT, - anon_sym_COLON_EQ, - anon_sym_with, - [179193] = 10, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [144937] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - ACTIONS(4650), 1, - anon_sym_EQ, - ACTIONS(4652), 1, - anon_sym_PLUS_EQ, - STATE(3323), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3884), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2676), 1, sym_decorator, - STATE(3431), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4602), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [179230] = 6, + [144985] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3324), 1, + STATE(2677), 1, sym_decorator, - ACTIONS(4654), 2, - anon_sym_COLON, - anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4568), 8, + ACTIONS(1766), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1768), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, + anon_sym_GT, anon_sym_DOT, - anon_sym_COLON_EQ, - anon_sym_with, - [179259] = 12, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145017] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(999), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4658), 1, - sym__escape_identifier, - STATE(2796), 1, - sym__reserved_identifier, - STATE(2823), 1, - sym_value_identifier, - STATE(3325), 1, + ACTIONS(1247), 1, + anon_sym_EQ, + STATE(2678), 1, sym_decorator, - STATE(4488), 1, - aux_sym_member_expression_repeat1, - STATE(4975), 1, - sym_module_identifier, - ACTIONS(4656), 2, - anon_sym_unpack, - anon_sym_async, + STATE(2727), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [179299] = 9, + ACTIONS(1249), 11, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_constraint, + anon_sym_PIPE, + anon_sym_as, + anon_sym_with, + [145051] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - ACTIONS(4662), 1, - anon_sym_as, - STATE(3326), 1, + ACTIONS(1193), 1, + anon_sym_EQ, + STATE(2679), 1, sym_decorator, - STATE(3463), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, + STATE(2729), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4660), 5, + ACTIONS(1195), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, - [179333] = 12, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_constraint, + anon_sym_PIPE, + anon_sym_as, + anon_sym_with, + [145085] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(917), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4666), 1, - sym__escape_identifier, - STATE(1595), 1, - sym__reserved_identifier, - STATE(1721), 1, - sym_value_identifier, - STATE(3327), 1, + STATE(2680), 1, sym_decorator, - STATE(4241), 1, - aux_sym_member_expression_repeat1, - STATE(4992), 1, - sym_module_identifier, - ACTIONS(4664), 2, - anon_sym_unpack, - anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [179373] = 12, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(1145), 1, - aux_sym_variant_identifier_token1, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - STATE(2950), 1, - sym__reserved_identifier, - STATE(3049), 1, - sym_variant_identifier, - STATE(3073), 1, - sym_value_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3328), 1, - sym_decorator, - ACTIONS(4113), 2, + ACTIONS(1770), 4, anon_sym_unpack, anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [179413] = 9, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1772), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145117] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2634), 1, - anon_sym_EQ_GT, - ACTIONS(4668), 1, - anon_sym_RPAREN, - ACTIONS(4670), 1, - anon_sym_COLON, - STATE(3329), 1, + STATE(2681), 1, sym_decorator, - STATE(4685), 1, - sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1428), 5, + ACTIONS(1774), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1776), 9, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_GT, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [179447] = 10, + sym__escape_identifier, + [145149] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4036), 1, - anon_sym_unpack, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4672), 1, - anon_sym_LPAREN, - STATE(3252), 1, - sym_module_primary_expression, - STATE(3304), 1, - sym_module_identifier, - STATE(3330), 1, + STATE(2682), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3298), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [179483] = 12, - ACTIONS(3), 1, - sym_line_comment, + ACTIONS(1778), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1780), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145181] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4556), 1, - anon_sym_DOLLAR, - ACTIONS(4558), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4674), 1, - anon_sym_BQUOTE, - STATE(3331), 1, + STATE(2683), 1, sym_decorator, - STATE(3345), 1, - aux_sym_template_string_content_repeat1, - STATE(3615), 1, - sym_template_substitution, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(4550), 2, - sym_escape_sequence, - anon_sym_BSLASH_BQUOTE, - ACTIONS(4554), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - [179523] = 7, + sym_line_comment, + ACTIONS(1782), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1784), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145213] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4676), 1, + ACTIONS(1193), 1, + anon_sym_EQ, + ACTIONS(3878), 1, anon_sym_PIPE, - STATE(3332), 1, + STATE(2684), 1, sym_decorator, - STATE(3334), 1, + STATE(2709), 1, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, + ACTIONS(1195), 10, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_constraint, anon_sym_as, anon_sym_with, - [179553] = 7, + [145249] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4676), 1, - anon_sym_PIPE, - STATE(3333), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3886), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2685), 1, sym_decorator, - STATE(3334), 1, - aux_sym_variant_type_repeat1, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_as, - anon_sym_with, - [179583] = 6, + [145297] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4678), 1, - anon_sym_PIPE, - STATE(3334), 2, + ACTIONS(3890), 1, + anon_sym_LPAREN, + ACTIONS(3892), 1, + anon_sym_EQ, + STATE(2686), 1, sym_decorator, - aux_sym_variant_type_repeat1, + STATE(2833), 1, + sym__variant_pattern_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3888), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_and, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, - anon_sym_with, - [179611] = 10, + [145333] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(3322), 1, - sym_module_identifier, - STATE(3335), 1, + STATE(2687), 1, sym_decorator, - STATE(3350), 1, - sym_module_primary_expression, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [179647] = 9, + ACTIONS(1790), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1792), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145365] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - ACTIONS(4662), 1, - anon_sym_as, - STATE(3336), 1, + STATE(2688), 1, sym_decorator, - STATE(3476), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4681), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [179681] = 7, + ACTIONS(1937), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1939), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145397] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4676), 1, - anon_sym_PIPE, - STATE(3332), 1, - aux_sym_variant_type_repeat1, - STATE(3337), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3894), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2689), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_as, - anon_sym_with, - [179711] = 7, + [145445] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4676), 1, - anon_sym_PIPE, - STATE(3333), 1, - aux_sym_variant_type_repeat1, - STATE(3338), 1, + STATE(2690), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_as, - anon_sym_with, - [179741] = 6, + ACTIONS(1794), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1796), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145477] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3339), 1, + STATE(2691), 1, sym_decorator, - STATE(3381), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - [179769] = 6, + ACTIONS(1798), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1800), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145509] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3340), 1, + STATE(2692), 1, sym_decorator, - STATE(3381), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - [179797] = 7, + ACTIONS(1814), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1816), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145541] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2639), 1, - anon_sym_as, - STATE(3222), 1, - sym_as_aliasing, - STATE(3341), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3896), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2693), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4478), 7, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - [179827] = 7, + [145589] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4683), 1, - anon_sym_as, - STATE(3222), 1, - sym_as_aliasing, - STATE(3342), 1, + ACTIONS(1179), 1, + anon_sym_EQ, + STATE(2694), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4478), 7, + ACTIONS(1177), 12, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_constraint, anon_sym_PIPE, - anon_sym_RBRACK, - [179857] = 6, + anon_sym_as, + anon_sym_with, + [145621] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3339), 1, - aux_sym_variant_type_repeat1, - STATE(3343), 1, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3781), 1, + anon_sym_LPAREN, + STATE(2695), 1, sym_decorator, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3299), 1, + sym_module_expression, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - [179885] = 6, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [145667] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3340), 1, - aux_sym_variant_type_repeat1, - STATE(3344), 1, + ACTIONS(1193), 1, + anon_sym_EQ, + ACTIONS(3878), 1, + anon_sym_PIPE, + STATE(2696), 1, sym_decorator, + STATE(2710), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, + ACTIONS(1195), 10, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, anon_sym_and, - anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_constraint, anon_sym_as, - [179913] = 11, - ACTIONS(3), 1, - sym_line_comment, + anon_sym_with, + [145703] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4689), 1, - anon_sym_BQUOTE, - ACTIONS(4694), 1, - anon_sym_DOLLAR, - ACTIONS(4697), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3615), 1, - sym_template_substitution, - ACTIONS(5), 2, + STATE(2697), 1, + sym_decorator, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(4686), 2, - sym_escape_sequence, - anon_sym_BSLASH_BQUOTE, - ACTIONS(4691), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - STATE(3345), 2, - sym_decorator, - aux_sym_template_string_content_repeat1, - [179951] = 9, + sym_line_comment, + ACTIONS(1445), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1447), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145735] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4632), 1, - anon_sym_LPAREN, - ACTIONS(4700), 1, - anon_sym_COLON, - STATE(3346), 1, + STATE(2698), 1, sym_decorator, - STATE(3515), 1, - sym_variant_parameters, - STATE(3558), 1, - sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [179985] = 7, + ACTIONS(1852), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1854), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145767] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4704), 1, - anon_sym_EQ, - STATE(3347), 1, + STATE(2699), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4702), 4, + ACTIONS(1856), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1858), 9, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, sym__escape_identifier, - ACTIONS(4706), 4, + [145799] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(2700), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1866), 4, anon_sym_unpack, anon_sym_async, anon_sym_SLASH, - aux_sym_value_identifier_token1, - [180015] = 9, + sym__identifier, + ACTIONS(1868), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145831] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4632), 1, - anon_sym_LPAREN, - ACTIONS(4708), 1, - anon_sym_COLON, - STATE(3348), 1, + STATE(2701), 1, sym_decorator, - STATE(3558), 1, - sym_type_annotation, - STATE(3568), 1, - sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 5, - anon_sym_EQ_GT, - anon_sym_COMMA, + ACTIONS(1878), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1880), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, - [180049] = 9, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145863] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2500), 1, - anon_sym_LPAREN, - ACTIONS(4710), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_type_annotation, - STATE(3349), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3898), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2702), 1, sym_decorator, - STATE(3559), 1, - sym_variant_parameters, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [180083] = 8, + [145911] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, + ACTIONS(2424), 1, + anon_sym_EQ, + ACTIONS(3890), 1, anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(3350), 1, + STATE(2703), 1, sym_decorator, + STATE(2816), 1, + sym__variant_pattern_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4536), 6, + ACTIONS(2426), 10, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_with, - [180115] = 7, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [145947] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4716), 1, - anon_sym_PIPE, - STATE(3351), 1, + STATE(2704), 1, sym_decorator, - STATE(3359), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_with, - [180145] = 5, + ACTIONS(1882), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1884), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [145979] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3352), 1, + ACTIONS(2371), 1, + anon_sym_EQ, + ACTIONS(3890), 1, + anon_sym_LPAREN, + STATE(2705), 1, sym_decorator, + STATE(2798), 1, + sym__variant_pattern_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4718), 9, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2373), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PLUS_EQ, - anon_sym_constraint, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - [180171] = 6, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [146015] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3353), 1, + STATE(2706), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4722), 4, + ACTIONS(1453), 4, anon_sym_unpack, anon_sym_async, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(4720), 5, + sym__identifier, + ACTIONS(1455), 9, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LPAREN, anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, sym__escape_identifier, - [180199] = 7, + [146047] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4486), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(3354), 1, + STATE(2707), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 7, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [180229] = 9, + ACTIONS(1886), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1888), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [146079] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - ACTIONS(4662), 1, - anon_sym_as, - STATE(3355), 1, + STATE(2708), 1, sym_decorator, - STATE(3424), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4724), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [180263] = 9, + ACTIONS(1457), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1459), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [146111] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - ACTIONS(4662), 1, - anon_sym_as, - STATE(3356), 1, + ACTIONS(1199), 1, + anon_sym_EQ, + ACTIONS(3878), 1, + anon_sym_PIPE, + STATE(2709), 1, sym_decorator, - STATE(3477), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, + STATE(2710), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4726), 5, + ACTIONS(1201), 10, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, - [180297] = 5, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_constraint, + anon_sym_as, + anon_sym_with, + [146147] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3357), 1, + ACTIONS(1203), 1, + anon_sym_EQ, + ACTIONS(3900), 1, + anon_sym_PIPE, + STATE(2710), 2, sym_decorator, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4728), 9, + ACTIONS(1205), 10, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, anon_sym_and, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_constraint, - anon_sym_PIPE, - [180323] = 7, + anon_sym_as, + anon_sym_with, + [146181] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4716), 1, - anon_sym_PIPE, - STATE(3358), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3903), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2711), 1, sym_decorator, - STATE(3359), 1, - aux_sym_variant_type_repeat1, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_with, - [180353] = 6, + [146229] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4730), 1, - anon_sym_PIPE, - STATE(3359), 2, + ACTIONS(2327), 1, + anon_sym_LPAREN, + ACTIONS(3905), 1, + anon_sym_COLON, + STATE(1276), 1, + sym_type_annotation, + STATE(2712), 1, sym_decorator, - aux_sym_variant_type_repeat1, + STATE(2813), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, + ACTIONS(1150), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_EQ, anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, + anon_sym_PIPE, anon_sym_as, anon_sym_with, - [180381] = 10, + [146267] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(3322), 1, - sym_module_identifier, - STATE(3360), 1, + STATE(2713), 1, sym_decorator, - STATE(3846), 1, - sym_module_primary_expression, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [180417] = 6, + ACTIONS(1890), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1892), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [146299] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3361), 1, + STATE(2714), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4735), 4, + ACTIONS(1894), 4, anon_sym_unpack, anon_sym_async, anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(4733), 5, + sym__identifier, + ACTIONS(1896), 9, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_GT, anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, sym__escape_identifier, - [180445] = 7, + [146331] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4739), 1, - anon_sym_EQ, - STATE(3362), 1, + STATE(2715), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4737), 4, + ACTIONS(1898), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1900), 9, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, sym__escape_identifier, - ACTIONS(4741), 4, + [146363] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(2716), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1914), 4, anon_sym_unpack, anon_sym_async, anon_sym_SLASH, - aux_sym_value_identifier_token1, - [180475] = 6, + sym__identifier, + ACTIONS(1916), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [146395] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3363), 1, + STATE(2717), 1, sym_decorator, - STATE(3417), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - [180503] = 6, + ACTIONS(1918), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1920), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [146427] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3364), 1, + STATE(2718), 1, sym_decorator, - STATE(3418), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - [180531] = 12, + ACTIONS(1922), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1924), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [146459] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(377), 1, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1101), 1, - sym_variant_identifier, - STATE(1496), 1, - sym_value_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3365), 1, - sym_decorator, - ACTIONS(1199), 2, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, anon_sym_unpack, - anon_sym_async, + ACTIONS(3731), 1, + anon_sym_LPAREN, + STATE(2719), 1, + sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3431), 1, + sym_module_expression, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [180571] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [146505] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4743), 1, - anon_sym_PIPE, - STATE(3366), 1, + ACTIONS(1193), 1, + anon_sym_COLON, + STATE(2720), 1, sym_decorator, - STATE(3379), 1, + STATE(2735), 1, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1195), 11, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_EQ, anon_sym_and, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_as, - [180601] = 7, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [146539] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4743), 1, - anon_sym_PIPE, - STATE(3367), 1, + ACTIONS(1199), 1, + anon_sym_COLON, + STATE(2721), 1, sym_decorator, - STATE(3380), 1, + STATE(2735), 1, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1201), 11, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_EQ, anon_sym_and, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_as, - [180631] = 7, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [146573] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4745), 1, + ACTIONS(1193), 1, + anon_sym_COLON, + ACTIONS(3874), 1, anon_sym_PIPE, - STATE(3368), 1, + STATE(2722), 1, sym_decorator, - STATE(3406), 1, + STATE(2735), 1, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1195), 10, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ, anon_sym_and, - anon_sym_constraint, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_as, - [180661] = 12, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [146609] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - ACTIONS(4747), 1, - anon_sym_LPAREN, - ACTIONS(4749), 1, - anon_sym_rec, - ACTIONS(4751), 1, - anon_sym_type, - STATE(3369), 1, + STATE(2723), 1, sym_decorator, - STATE(3678), 1, - sym_module_binding, - STATE(3512), 2, - sym_type_identifier, - sym_module_identifier, + ACTIONS(1251), 2, + anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [180701] = 7, + ACTIONS(1183), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1185), 7, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [146643] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4745), 1, - anon_sym_PIPE, - STATE(3368), 1, - aux_sym_variant_type_repeat1, - STATE(3370), 1, + ACTIONS(3687), 1, + anon_sym_module, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3781), 1, + anon_sym_LPAREN, + STATE(2724), 1, sym_decorator, + STATE(2795), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(3303), 1, + sym_module_expression, + STATE(2962), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_constraint, - anon_sym_as, - [180731] = 12, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [146689] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(831), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(4755), 1, - sym__escape_identifier, - STATE(797), 1, - sym__reserved_identifier, - STATE(845), 1, - sym_value_identifier, - STATE(3371), 1, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(3731), 1, + anon_sym_LPAREN, + STATE(2725), 1, sym_decorator, - STATE(4222), 1, - aux_sym_member_expression_repeat1, - STATE(4858), 1, + STATE(2891), 1, sym_module_identifier, - ACTIONS(4753), 2, - anon_sym_unpack, - anon_sym_async, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3477), 1, + sym_module_expression, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [180771] = 9, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [146735] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - ACTIONS(4662), 1, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + ACTIONS(3795), 1, anon_sym_as, - STATE(3372), 1, + STATE(2726), 1, sym_decorator, - STATE(3441), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, + ACTIONS(1369), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4681), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1371), 9, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_and, + anon_sym_COMMA, anon_sym_PIPE, - [180805] = 12, + anon_sym_RBRACK, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [146771] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - ACTIONS(4747), 1, - anon_sym_LPAREN, - ACTIONS(4757), 1, - anon_sym_rec, - ACTIONS(4759), 1, - anon_sym_type, - STATE(3373), 1, + ACTIONS(1193), 1, + anon_sym_EQ, + STATE(2710), 1, + aux_sym_variant_type_repeat1, + STATE(2727), 1, sym_decorator, - STATE(3702), 1, - sym_module_binding, - STATE(3625), 2, - sym_type_identifier, - sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [180845] = 9, + ACTIONS(1195), 11, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_constraint, + anon_sym_PIPE, + anon_sym_as, + anon_sym_with, + [146805] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - ACTIONS(4662), 1, - anon_sym_as, - STATE(3374), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3907), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2728), 1, sym_decorator, - STATE(3447), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4726), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [180879] = 9, + [146853] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - ACTIONS(4662), 1, - anon_sym_as, - STATE(3375), 1, + ACTIONS(1199), 1, + anon_sym_EQ, + STATE(2710), 1, + aux_sym_variant_type_repeat1, + STATE(2729), 1, sym_decorator, - STATE(3448), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4660), 5, + ACTIONS(1201), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_constraint, anon_sym_PIPE, - [180913] = 9, + anon_sym_as, + anon_sym_with, + [146887] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - ACTIONS(4662), 1, - anon_sym_as, - STATE(3376), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3675), 1, + anon_sym_module, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(3731), 1, + anon_sym_LPAREN, + STATE(2730), 1, sym_decorator, - STATE(3453), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, + STATE(2891), 1, + sym_module_identifier, + STATE(2985), 1, + sym_module_primary_expression, + STATE(3422), 1, + sym_module_expression, + STATE(3345), 2, + sym_module_type_of, + sym_module_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4724), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [180947] = 12, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [146933] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(829), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(831), 1, - aux_sym_value_identifier_token1, - ACTIONS(4755), 1, + ACTIONS(3793), 1, sym__escape_identifier, - STATE(797), 1, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3909), 1, + anon_sym_SLASH, + STATE(2572), 1, sym__reserved_identifier, - STATE(894), 1, - sym_value_identifier, - STATE(974), 1, - sym_variant_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3377), 1, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2731), 1, sym_decorator, - ACTIONS(4753), 2, + ACTIONS(3785), 2, anon_sym_unpack, anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [180987] = 7, + [146981] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2582), 1, - anon_sym_as, - STATE(3214), 1, - sym_as_aliasing, - STATE(3378), 1, + ACTIONS(3844), 1, + anon_sym_COLON, + STATE(1032), 1, + sym_type_annotation, + STATE(2732), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4560), 7, + ACTIONS(1158), 11, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ, + anon_sym_and, anon_sym_COMMA, anon_sym_PIPE, anon_sym_RBRACK, - [181017] = 7, + anon_sym_as, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [147015] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4743), 1, - anon_sym_PIPE, - STATE(3379), 1, + STATE(2733), 1, sym_decorator, - STATE(3381), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - [181047] = 7, + ACTIONS(1396), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1398), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [147047] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4743), 1, + ACTIONS(1199), 1, + anon_sym_COLON, + ACTIONS(3874), 1, anon_sym_PIPE, - STATE(3380), 1, + STATE(2734), 1, sym_decorator, - STATE(3381), 1, + STATE(2735), 1, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1201), 10, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_EQ, anon_sym_and, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_as, - [181077] = 6, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [147083] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4761), 1, + ACTIONS(1203), 1, + anon_sym_COLON, + ACTIONS(3911), 1, anon_sym_PIPE, - STATE(3381), 2, + STATE(2735), 2, sym_decorator, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1205), 10, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_EQ, anon_sym_and, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_as, - [181105] = 9, + anon_sym_COLON_EQ, + anon_sym_COLON_GT, + anon_sym_with, + [147117] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2634), 1, - anon_sym_EQ_GT, - ACTIONS(4670), 1, - anon_sym_COLON, - ACTIONS(4764), 1, - anon_sym_RPAREN, - STATE(3382), 1, + STATE(2736), 1, sym_decorator, - STATE(4831), 1, - sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1428), 5, + ACTIONS(1542), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1544), 9, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_GT, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_PIPE_GT, - [181139] = 9, + sym__escape_identifier, + [147149] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - ACTIONS(4662), 1, - anon_sym_as, - STATE(3383), 1, + STATE(2737), 1, sym_decorator, - STATE(3482), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4766), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [181173] = 7, + ACTIONS(1546), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1548), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [147181] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4716), 1, - anon_sym_PIPE, - STATE(3351), 1, - aux_sym_variant_type_repeat1, - STATE(3384), 1, + STATE(2738), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_with, - [181203] = 7, + ACTIONS(1550), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1552), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [147213] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4716), 1, - anon_sym_PIPE, - STATE(3358), 1, - aux_sym_variant_type_repeat1, - STATE(3385), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3914), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2739), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_with, - [181233] = 5, + [147261] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3386), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3916), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2740), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4768), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PLUS_EQ, - anon_sym_constraint, - anon_sym_PIPE, - [181259] = 7, + [147309] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4770), 1, - anon_sym_LT, - STATE(3387), 1, + ACTIONS(1306), 1, + anon_sym_EQ, + STATE(2741), 1, sym_decorator, - STATE(3510), 1, - sym_type_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1303), 7, + ACTIONS(1308), 12, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_constraint, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, anon_sym_as, - [181289] = 12, + anon_sym_with, + [147341] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1222), 1, - sym_value_identifier, - STATE(3388), 1, + STATE(2742), 1, sym_decorator, - STATE(4257), 1, - aux_sym_member_expression_repeat1, - STATE(4854), 1, - sym_module_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [181329] = 6, + ACTIONS(1554), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1556), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [147373] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3359), 1, - aux_sym_variant_type_repeat1, - STATE(3389), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3918), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2743), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [181357] = 6, + [147421] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3359), 1, - aux_sym_variant_type_repeat1, - STATE(3390), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3920), 1, + anon_sym_SLASH, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2744), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 8, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [181385] = 6, + [147469] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3389), 1, - aux_sym_variant_type_repeat1, - STATE(3391), 1, + STATE(2745), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 8, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [181413] = 6, + ACTIONS(1558), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1560), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [147501] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3390), 1, - aux_sym_variant_type_repeat1, - STATE(3392), 1, + STATE(2746), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [181441] = 5, + ACTIONS(1562), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1564), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [147533] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3393), 1, + STATE(2747), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1299), 9, + ACTIONS(1566), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1568), 9, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [181467] = 7, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [147565] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4745), 1, - anon_sym_PIPE, - STATE(3394), 1, + STATE(2748), 1, sym_decorator, - STATE(3406), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_constraint, - anon_sym_as, - [181497] = 7, + ACTIONS(1570), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1572), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [147597] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4745), 1, - anon_sym_PIPE, - STATE(3394), 1, - aux_sym_variant_type_repeat1, - STATE(3395), 1, + STATE(2749), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_constraint, - anon_sym_as, - [181527] = 12, + ACTIONS(1574), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1576), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [147629] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - STATE(2950), 1, - sym__reserved_identifier, - STATE(3069), 1, - sym_value_identifier, - STATE(3396), 1, + STATE(2750), 1, sym_decorator, - STATE(4232), 1, - aux_sym_member_expression_repeat1, - STATE(4829), 1, - sym_module_identifier, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [181567] = 12, + ACTIONS(1578), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1580), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [147661] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(915), 1, - aux_sym_variant_identifier_token1, - ACTIONS(917), 1, - aux_sym_value_identifier_token1, - ACTIONS(4666), 1, - sym__escape_identifier, - STATE(1595), 1, - sym__reserved_identifier, - STATE(1943), 1, - sym_variant_identifier, - STATE(1995), 1, - sym_value_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3397), 1, + STATE(2751), 1, sym_decorator, - ACTIONS(4664), 2, - anon_sym_unpack, - anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [181607] = 12, + ACTIONS(1582), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1584), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [147693] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(445), 1, - aux_sym_variant_identifier_token1, - ACTIONS(447), 1, - aux_sym_value_identifier_token1, - ACTIONS(4774), 1, - sym__escape_identifier, - STATE(1759), 1, - sym__reserved_identifier, - STATE(2142), 1, - sym_variant_identifier, - STATE(2173), 1, - sym_value_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3398), 1, + STATE(2752), 1, sym_decorator, - ACTIONS(4772), 2, - anon_sym_unpack, - anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [181647] = 12, + ACTIONS(1586), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(1588), 9, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + sym__escape_identifier, + [147725] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(447), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(4774), 1, + ACTIONS(3793), 1, sym__escape_identifier, - STATE(1759), 1, + ACTIONS(3870), 1, + anon_sym_GT, + ACTIONS(3922), 1, + anon_sym_SLASH, + STATE(2572), 1, sym__reserved_identifier, - STATE(1821), 1, - sym_value_identifier, - STATE(3399), 1, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2753), 1, sym_decorator, - STATE(4541), 1, - aux_sym_member_expression_repeat1, - STATE(4676), 1, - sym_module_identifier, - ACTIONS(4772), 2, + ACTIONS(3785), 2, anon_sym_unpack, anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [181687] = 6, + [147773] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3334), 1, - aux_sym_variant_type_repeat1, - STATE(3400), 1, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + ACTIONS(3927), 1, + anon_sym_EQ, + ACTIONS(3929), 1, + anon_sym_PLUS_EQ, + ACTIONS(3931), 1, + anon_sym_constraint, + ACTIONS(3934), 1, + anon_sym_as, + STATE(2754), 1, sym_decorator, + STATE(3025), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, + ACTIONS(3924), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_and, anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [181715] = 6, + [147816] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3334), 1, - aux_sym_variant_type_repeat1, - STATE(3401), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + ACTIONS(3936), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2755), 1, sym_decorator, + STATE(3790), 1, + sym_value_identifier, + STATE(3969), 1, + sym__record_type_member, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, + STATE(4013), 2, + sym_record_type_field, + sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [181743] = 6, + [147863] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3400), 1, - aux_sym_variant_type_repeat1, - STATE(3402), 1, + ACTIONS(3940), 1, + anon_sym_EQ, + ACTIONS(3942), 1, + anon_sym_PLUS_EQ, + ACTIONS(3944), 1, + anon_sym_LT, + ACTIONS(3946), 1, + anon_sym_constraint, + STATE(2756), 1, sym_decorator, + STATE(2878), 1, + sym_type_parameters, + STATE(2981), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 8, + ACTIONS(3938), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [181771] = 6, + [147906] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3401), 1, - aux_sym_variant_type_repeat1, - STATE(3403), 1, + ACTIONS(3948), 1, + anon_sym_as, + STATE(2757), 1, sym_decorator, + ACTIONS(1424), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1426), 9, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [181799] = 12, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_COLON_GT, + [147939] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(169), 1, - aux_sym_variant_identifier_token1, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, sym__escape_identifier, - STATE(1091), 1, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + ACTIONS(3950), 1, + anon_sym_RBRACE, + STATE(1053), 1, sym__reserved_identifier, - STATE(1101), 1, - sym_variant_identifier, - STATE(1496), 1, - sym_value_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3404), 1, + STATE(2758), 1, sym_decorator, - ACTIONS(1199), 2, + STATE(3790), 1, + sym_value_identifier, + STATE(3969), 1, + sym__record_type_member, + ACTIONS(1113), 2, anon_sym_unpack, anon_sym_async, + STATE(4013), 2, + sym_record_type_field, + sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [181839] = 12, + [147986] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(67), 1, - aux_sym_variant_identifier_token1, - ACTIONS(69), 1, - aux_sym_value_identifier_token1, - ACTIONS(4778), 1, - sym__escape_identifier, - STATE(1366), 1, - sym__reserved_identifier, - STATE(1580), 1, - sym_value_identifier, - STATE(1780), 1, - sym_variant_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3405), 1, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + ACTIONS(3934), 1, + anon_sym_as, + ACTIONS(3952), 1, + anon_sym_EQ, + ACTIONS(3954), 1, + anon_sym_PLUS_EQ, + ACTIONS(3956), 1, + anon_sym_constraint, + STATE(2759), 1, sym_decorator, - ACTIONS(4776), 2, - anon_sym_unpack, - anon_sym_async, + STATE(3021), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [181879] = 6, + ACTIONS(3924), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [148029] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4780), 1, - anon_sym_PIPE, - STATE(3406), 2, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + ACTIONS(3934), 1, + anon_sym_as, + ACTIONS(3956), 1, + anon_sym_constraint, + ACTIONS(3962), 1, + anon_sym_EQ, + ACTIONS(3964), 1, + anon_sym_PLUS_EQ, + STATE(2760), 1, sym_decorator, - aux_sym_variant_type_repeat1, + STATE(2960), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, + ACTIONS(3959), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, - anon_sym_constraint, - anon_sym_as, - [181907] = 12, + [148072] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(169), 1, - aux_sym_variant_identifier_token1, - ACTIONS(999), 1, - aux_sym_value_identifier_token1, - ACTIONS(4658), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, sym__escape_identifier, - STATE(1101), 1, - sym_variant_identifier, - STATE(2796), 1, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + ACTIONS(3966), 1, + anon_sym_RBRACE, + STATE(1053), 1, sym__reserved_identifier, - STATE(2831), 1, - sym_value_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3407), 1, + STATE(2761), 1, sym_decorator, - ACTIONS(4656), 2, + STATE(3790), 1, + sym_value_identifier, + STATE(3969), 1, + sym__record_type_member, + ACTIONS(1113), 2, anon_sym_unpack, anon_sym_async, + STATE(4013), 2, + sym_record_type_field, + sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [181947] = 7, + [148119] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4787), 1, - anon_sym_DOT, - STATE(3408), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + ACTIONS(3968), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2762), 1, sym_decorator, + STATE(3790), 1, + sym_value_identifier, + STATE(3969), 1, + sym__record_type_member, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, + STATE(4013), 2, + sym_record_type_field, + sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4783), 4, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_QMARK, + [148166] = 14, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, sym__escape_identifier, - ACTIONS(4785), 4, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + ACTIONS(3970), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2763), 1, + sym_decorator, + STATE(3790), 1, + sym_value_identifier, + STATE(3969), 1, + sym__record_type_member, + ACTIONS(1113), 2, anon_sym_unpack, anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - [181977] = 5, + STATE(4013), 2, + sym_record_type_field, + sym_type_spread, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + [148213] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3409), 1, + ACTIONS(3974), 1, + anon_sym_EQ, + STATE(2764), 1, sym_decorator, + STATE(2805), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4789), 9, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3972), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PLUS_EQ, - anon_sym_constraint, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - [182003] = 6, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [148246] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3410), 1, + ACTIONS(3944), 1, + anon_sym_LT, + ACTIONS(3976), 1, + anon_sym_EQ, + ACTIONS(3978), 1, + anon_sym_PLUS_EQ, + ACTIONS(3980), 1, + anon_sym_constraint, + STATE(2765), 1, sym_decorator, + STATE(2884), 1, + sym_type_parameters, + STATE(2967), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4793), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - ACTIONS(4791), 5, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK, - sym__escape_identifier, - [182031] = 12, + ACTIONS(3938), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [148289] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(69), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4778), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, sym__escape_identifier, - STATE(1366), 1, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + ACTIONS(3982), 1, + anon_sym_RBRACE, + STATE(1053), 1, sym__reserved_identifier, - STATE(1571), 1, - sym_value_identifier, - STATE(3411), 1, + STATE(2766), 1, sym_decorator, - STATE(4370), 1, - aux_sym_member_expression_repeat1, - STATE(4844), 1, - sym_module_identifier, - ACTIONS(4776), 2, + STATE(3790), 1, + sym_value_identifier, + STATE(3969), 1, + sym__record_type_member, + ACTIONS(1113), 2, anon_sym_unpack, anon_sym_async, + STATE(4013), 2, + sym_record_type_field, + sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [182071] = 10, + [148336] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(3998), 1, - anon_sym_unpack, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(3322), 1, - sym_module_identifier, - STATE(3412), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + ACTIONS(3984), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2767), 1, sym_decorator, - STATE(3968), 1, - sym_module_primary_expression, + STATE(3790), 1, + sym_value_identifier, + STATE(3969), 1, + sym__record_type_member, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, + STATE(4013), 2, + sym_record_type_field, + sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - STATE(3301), 4, - sym_module_unpack, - sym_parenthesized_module_expression, - sym_module_identifier_path, - sym_functor_use, - [182107] = 11, + [148383] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(2751), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - ACTIONS(4121), 1, + ACTIONS(3793), 1, sym__escape_identifier, - STATE(2950), 1, + ACTIONS(3986), 1, + anon_sym_GT, + STATE(2572), 1, sym__reserved_identifier, - STATE(3361), 1, - sym__jsx_identifier, - STATE(3413), 1, + STATE(2586), 1, + sym__jsx_element_name, + STATE(2768), 1, sym_decorator, - ACTIONS(4113), 2, + ACTIONS(3785), 2, anon_sym_unpack, anon_sym_async, - STATE(3410), 2, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, sym_value_identifier, sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [182145] = 6, + [148428] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4662), 1, - anon_sym_as, - STATE(3414), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + ACTIONS(3988), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2769), 1, sym_decorator, + STATE(3790), 1, + sym_value_identifier, + STATE(3969), 1, + sym__record_type_member, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, + STATE(4013), 2, + sym_record_type_field, + sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4795), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_with, - [182173] = 6, + [148475] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3415), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + ACTIONS(3990), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2770), 1, sym_decorator, - STATE(3435), 1, - sym__module_type_constraint_with, + STATE(3790), 1, + sym_value_identifier, + STATE(3969), 1, + sym__record_type_member, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, + STATE(4013), 2, + sym_record_type_field, + sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4797), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_with, - [182201] = 7, + [148522] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2639), 1, - anon_sym_as, - STATE(3214), 1, - sym_as_aliasing, - STATE(3416), 1, + ACTIONS(161), 1, + anon_sym_SLASH, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(1123), 1, + sym_number, + STATE(2771), 1, sym_decorator, + STATE(2839), 1, + sym__literal_pattern, + ACTIONS(1125), 2, + sym_true, + sym_false, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4560), 7, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - [182231] = 6, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + [148565] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3406), 1, - aux_sym_variant_type_repeat1, - STATE(3417), 1, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1436), 1, + anon_sym_EQ_GT, + ACTIONS(3934), 1, + anon_sym_as, + STATE(2772), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 8, + ACTIONS(1371), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, + anon_sym_PLUS_EQ, anon_sym_constraint, anon_sym_PIPE, - anon_sym_as, - [182259] = 6, + anon_sym_with, + [148600] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3406), 1, - aux_sym_variant_type_repeat1, - STATE(3418), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3992), 1, + anon_sym_GT, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2603), 1, + sym__jsx_element_name, + STATE(2773), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_constraint, - anon_sym_PIPE, - anon_sym_as, - [182287] = 9, + [148645] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + ACTIONS(3931), 1, anon_sym_constraint, - ACTIONS(4662), 1, + ACTIONS(3934), 1, anon_sym_as, - STATE(3419), 1, + ACTIONS(3994), 1, + anon_sym_EQ, + ACTIONS(3996), 1, + anon_sym_PLUS_EQ, + STATE(2774), 1, sym_decorator, - STATE(3444), 1, + STATE(3017), 1, aux_sym_type_binding_repeat1, - STATE(3607), 1, + STATE(3048), 1, sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4766), 5, + ACTIONS(3959), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_and, anon_sym_PIPE, - [182321] = 7, + [148688] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4636), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(3420), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3998), 1, + anon_sym_GT, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2594), 1, + sym__jsx_element_name, + STATE(2775), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 6, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [182350] = 8, + [148733] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - STATE(3421), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(4000), 1, + anon_sym_GT, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2585), 1, + sym__jsx_element_name, + STATE(2776), 1, sym_decorator, - STATE(3484), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4799), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [182381] = 6, + [148778] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3422), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(3870), 1, + anon_sym_GT, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2583), 1, + sym__jsx_element_name, + STATE(2777), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4615), 4, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_QMARK, - sym__escape_identifier, - ACTIONS(4617), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - [182408] = 6, + [148823] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3423), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + ACTIONS(4002), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2778), 1, sym_decorator, + STATE(3790), 1, + sym_value_identifier, + STATE(3969), 1, + sym__record_type_member, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, + STATE(4013), 2, + sym_record_type_field, + sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4801), 4, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_QMARK, - sym__escape_identifier, - ACTIONS(4803), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - [182435] = 8, + [148870] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - STATE(3424), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + ACTIONS(4004), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2779), 1, sym_decorator, - STATE(3484), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, + STATE(3790), 1, + sym_value_identifier, + STATE(3969), 1, + sym__record_type_member, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, + STATE(4013), 2, + sym_record_type_field, + sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4805), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [182466] = 7, + [148917] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3425), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(175), 1, + aux_sym_template_string_token1, + ACTIONS(177), 1, + anon_sym_SQUOTE, + ACTIONS(1123), 1, + sym_number, + ACTIONS(1414), 1, + anon_sym_SLASH, + STATE(2780), 1, sym_decorator, - ACTIONS(2071), 2, - anon_sym_DOT, - anon_sym_with, + STATE(2839), 1, + sym__literal_pattern, + ACTIONS(1125), 2, + sym_true, + sym_false, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1299), 3, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_as, - ACTIONS(1337), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - [182495] = 6, + STATE(2781), 4, + sym_regex, + sym_string, + sym_template_string, + sym_character, + [148960] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4809), 1, - anon_sym_PIPE, - STATE(3426), 1, + ACTIONS(2505), 1, + anon_sym_EQ, + STATE(2781), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4807), 7, + ACTIONS(2503), 11, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_EQ, + anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PIPE, anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, - [182522] = 6, + [148991] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3427), 1, + ACTIONS(1143), 1, + anon_sym_EQ, + ACTIONS(4006), 1, + anon_sym_LPAREN, + STATE(2782), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4576), 4, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_QMARK, - sym__escape_identifier, - ACTIONS(4578), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - [182549] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4668), 1, + ACTIONS(1138), 10, + anon_sym_RBRACE, anon_sym_RPAREN, - ACTIONS(4670), 1, anon_sym_COLON, - STATE(3428), 1, - sym_decorator, - STATE(4685), 1, - sym_module_type_annotation, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1428), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [182580] = 6, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [149024] = 14, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3429), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + ACTIONS(4008), 1, + anon_sym_RBRACE, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2783), 1, sym_decorator, + STATE(3790), 1, + sym_value_identifier, + STATE(3969), 1, + sym__record_type_member, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, + STATE(4013), 2, + sym_record_type_field, + sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4222), 4, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_QMARK, - sym__escape_identifier, - ACTIONS(4224), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - [182607] = 6, + [149071] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4812), 1, - anon_sym_PIPE, - STATE(3430), 2, + ACTIONS(4012), 1, + anon_sym_EQ, + STATE(2784), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 6, + ACTIONS(4010), 10, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_and, + anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, - anon_sym_with, - [182634] = 8, + [149101] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - STATE(3431), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2785), 1, sym_decorator, - STATE(3432), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, + STATE(4366), 1, + sym__jsx_element_name, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4815), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [182665] = 7, + [149143] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4819), 1, - anon_sym_constraint, - STATE(3607), 1, - sym_type_constraint, - STATE(3432), 2, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(4014), 1, + aux_sym_variant_identifier_token1, + STATE(2786), 1, sym_decorator, - aux_sym_type_binding_repeat1, + STATE(2891), 1, + sym_module_identifier, + STATE(3671), 1, + sym_module_primary_expression, + STATE(3389), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4817), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [182694] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [149183] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4822), 1, - anon_sym_PIPE, - STATE(3433), 1, + ACTIONS(2574), 1, + anon_sym_EQ, + STATE(2787), 1, sym_decorator, - STATE(3485), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 6, + ACTIONS(2576), 10, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_and, + anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, - anon_sym_with, - [182723] = 7, + [149213] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4822), 1, - anon_sym_PIPE, - STATE(3434), 1, + ACTIONS(2592), 1, + anon_sym_EQ, + STATE(2788), 1, sym_decorator, - STATE(3494), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 6, + ACTIONS(2594), 10, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_and, + anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, - anon_sym_with, - [182752] = 5, + [149243] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3435), 1, + STATE(2789), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4824), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1234), 3, + anon_sym_DOT, + anon_sym_as, + sym__identifier, + ACTIONS(1236), 8, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_LT, anon_sym_PIPE, - anon_sym_with, - [182777] = 5, + anon_sym_DOT_DOT_DOT, + aux_sym_type_identifier_token1, + sym__escape_identifier, + [149273] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3436), 1, + ACTIONS(2538), 1, + anon_sym_EQ, + STATE(2790), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1333), 8, + ACTIONS(2540), 10, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - aux_sym_type_identifier_token1, - sym__escape_identifier, - [182802] = 7, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [149303] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2529), 1, - sym_regex_flags, - STATE(3437), 1, + ACTIONS(4018), 1, + anon_sym_EQ, + STATE(2791), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1601), 3, - anon_sym_if, - anon_sym_when, - anon_sym_as, - ACTIONS(1599), 4, + ACTIONS(4016), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE, - [182831] = 7, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [149333] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3438), 1, + STATE(2792), 1, sym_decorator, - STATE(3443), 1, - aux_sym__module_type_constraint_with_repeat1, - ACTIONS(4828), 2, - anon_sym_and, - anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4826), 5, + ACTIONS(2027), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_EQ, - [182860] = 8, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_with, + [149361] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - STATE(3439), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2793), 1, sym_decorator, - STATE(3484), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, + STATE(4394), 1, + sym__jsx_element_name, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4602), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [182891] = 5, + [149403] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3440), 1, + ACTIONS(4022), 1, + anon_sym_EQ, + STATE(2794), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4436), 8, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4020), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_with, - [182916] = 8, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [149433] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - STATE(3432), 1, - aux_sym_type_binding_repeat1, - STATE(3441), 1, + ACTIONS(4026), 1, + anon_sym_LPAREN, + ACTIONS(4028), 1, + anon_sym_DOT, + STATE(2795), 1, sym_decorator, - STATE(3607), 1, - sym_type_constraint, + STATE(2860), 1, + sym_functor_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4830), 5, + ACTIONS(4024), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, anon_sym_and, anon_sym_PIPE, - [182947] = 8, + anon_sym_with, + [149467] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - STATE(3432), 1, - aux_sym_type_binding_repeat1, - STATE(3442), 1, + ACTIONS(4032), 1, + anon_sym_EQ, + STATE(2796), 1, sym_decorator, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4832), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4030), 10, anon_sym_RBRACE, - anon_sym_and, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - [182978] = 6, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [149497] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4836), 2, - anon_sym_and, - anon_sym_with, - STATE(3443), 2, + ACTIONS(4036), 1, + anon_sym_EQ, + STATE(2797), 1, sym_decorator, - aux_sym__module_type_constraint_with_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4834), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4034), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, - [183005] = 8, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [149527] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - STATE(3432), 1, - aux_sym_type_binding_repeat1, - STATE(3444), 1, + ACTIONS(4040), 1, + anon_sym_EQ, + STATE(2798), 1, sym_decorator, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4839), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4038), 10, anon_sym_RBRACE, - anon_sym_and, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - [183036] = 8, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [149557] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - STATE(3432), 1, - aux_sym_type_binding_repeat1, - STATE(3445), 1, + ACTIONS(2548), 1, + anon_sym_EQ, + STATE(2799), 1, sym_decorator, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4799), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2550), 10, anon_sym_RBRACE, - anon_sym_and, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - [183067] = 5, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [149587] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3446), 1, + ACTIONS(4044), 1, + anon_sym_EQ, + STATE(2800), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4841), 8, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4042), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_with, - [183092] = 8, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [149617] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - STATE(3432), 1, - aux_sym_type_binding_repeat1, - STATE(3447), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2586), 1, + sym__jsx_element_name, + STATE(2801), 1, sym_decorator, - STATE(3607), 1, - sym_type_constraint, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4843), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [183123] = 8, + [149659] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - STATE(3432), 1, - aux_sym_type_binding_repeat1, - STATE(3448), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2585), 1, + sym__jsx_element_name, + STATE(2802), 1, sym_decorator, - STATE(3607), 1, - sym_type_constraint, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4845), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [183154] = 6, + [149701] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3430), 1, - aux_sym_variant_type_repeat1, - STATE(3449), 1, + ACTIONS(4048), 1, + anon_sym_EQ, + STATE(2803), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, + ACTIONS(4046), 10, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_and, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, - anon_sym_with, - [183181] = 6, + [149731] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3430), 1, - aux_sym_variant_type_repeat1, - STATE(3450), 1, + ACTIONS(4052), 1, + anon_sym_EQ, + STATE(2804), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, + ACTIONS(4050), 10, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_and, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, - anon_sym_with, - [183208] = 6, + [149761] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3449), 1, - aux_sym_variant_type_repeat1, - STATE(3451), 1, + ACTIONS(4056), 1, + anon_sym_EQ, + STATE(2805), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, + ACTIONS(4054), 10, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_and, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, - anon_sym_with, - [183235] = 6, + [149791] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3450), 1, - aux_sym_variant_type_repeat1, - STATE(3452), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2806), 1, sym_decorator, + STATE(4300), 1, + sym__jsx_element_name, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_and, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_as, - anon_sym_with, - [183262] = 8, + [149833] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - STATE(3432), 1, - aux_sym_type_binding_repeat1, - STATE(3453), 1, + ACTIONS(4060), 1, + anon_sym_EQ, + STATE(2807), 1, sym_decorator, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4805), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4058), 10, anon_sym_RBRACE, - anon_sym_and, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - [183293] = 8, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [149863] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4847), 1, - anon_sym_DOT_DOT, - ACTIONS(4849), 1, - anon_sym_as, - STATE(3214), 1, - sym_as_aliasing, - STATE(3454), 1, + ACTIONS(4064), 1, + anon_sym_EQ, + STATE(2808), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4560), 5, + ACTIONS(4062), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_if, anon_sym_when, - [183324] = 6, + anon_sym_as, + [149893] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4662), 1, - anon_sym_as, - STATE(3455), 1, + ACTIONS(4068), 1, + anon_sym_EQ, + STATE(2809), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1377), 7, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4066), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - [183351] = 11, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [149923] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(2751), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - STATE(1091), 1, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, sym__reserved_identifier, - STATE(1496), 1, - sym_value_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3456), 1, + STATE(2810), 1, sym_decorator, - ACTIONS(1199), 2, + STATE(4316), 1, + sym__jsx_element_name, + ACTIONS(3785), 2, anon_sym_unpack, anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [183388] = 6, + [149965] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3457), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4852), 4, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, sym__escape_identifier, - ACTIONS(4854), 4, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2603), 1, + sym__jsx_element_name, + STATE(2811), 1, + sym_decorator, + ACTIONS(3785), 2, anon_sym_unpack, anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - [183415] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4670), 1, - anon_sym_COLON, - ACTIONS(4764), 1, - anon_sym_RPAREN, - STATE(3458), 1, - sym_decorator, - STATE(4831), 1, - sym_module_type_annotation, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1428), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [183446] = 5, + [150007] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3459), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2812), 1, sym_decorator, + STATE(4379), 1, + sym__jsx_element_name, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2071), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_with, - [183471] = 6, + [150049] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4662), 1, - anon_sym_as, - STATE(3460), 1, + ACTIONS(3905), 1, + anon_sym_COLON, + STATE(1358), 1, + sym_type_annotation, + STATE(2813), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4856), 7, + ACTIONS(1158), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ, anon_sym_and, - anon_sym_constraint, anon_sym_PIPE, - [183498] = 8, + anon_sym_as, + anon_sym_with, + [150081] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2506), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4072), 1, anon_sym_EQ, - STATE(3461), 1, + STATE(2814), 1, sym_decorator, - STATE(3686), 1, - sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4858), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4070), 10, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - [183529] = 6, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150111] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3462), 1, + ACTIONS(4076), 1, + anon_sym_EQ, + STATE(2815), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4862), 4, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_QMARK, - sym__escape_identifier, - ACTIONS(4864), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - [183556] = 8, + ACTIONS(4074), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150141] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - STATE(3463), 1, + ACTIONS(3892), 1, + anon_sym_EQ, + STATE(2816), 1, sym_decorator, - STATE(3484), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4845), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3888), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_and, - [183587] = 8, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150171] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - STATE(3464), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2817), 1, sym_decorator, - STATE(3484), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, + STATE(4230), 1, + sym__jsx_element_name, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4815), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [183618] = 5, + [150213] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3465), 1, + ACTIONS(4080), 1, + anon_sym_EQ, + STATE(2818), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1291), 8, + ACTIONS(4078), 10, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, - [183643] = 6, + [150243] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3466), 1, + ACTIONS(4084), 1, + anon_sym_EQ, + STATE(2819), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4866), 4, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_QMARK, - sym__escape_identifier, - ACTIONS(4868), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - [183670] = 11, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - ACTIONS(4872), 1, - anon_sym_EQ, - ACTIONS(4874), 1, - anon_sym_as, - STATE(3467), 1, - sym_decorator, - STATE(3682), 1, - sym_as_aliasing, - STATE(4153), 1, - sym_type_annotation, - STATE(4171), 1, - sym__labeled_parameter_default_value, - ACTIONS(4870), 2, + ACTIONS(4082), 10, + anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, anon_sym_COMMA, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [183707] = 7, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150273] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3468), 1, + ACTIONS(4088), 1, + anon_sym_EQ, + STATE(2820), 1, sym_decorator, - STATE(3472), 1, - aux_sym__module_type_constraint_with_repeat1, - ACTIONS(4876), 2, - anon_sym_and, - anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4826), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4086), 10, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - [183736] = 7, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150303] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1337), 1, - anon_sym_LPAREN, - ACTIONS(2071), 1, - anon_sym_DOT, - STATE(3469), 1, + ACTIONS(4092), 1, + anon_sym_EQ, + STATE(2821), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1299), 6, + ACTIONS(4090), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, - [183765] = 9, + [150333] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4632), 1, - anon_sym_LPAREN, - ACTIONS(4878), 1, - anon_sym_COLON, - STATE(3470), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2594), 1, + sym__jsx_element_name, + STATE(2822), 1, sym_decorator, - STATE(3558), 1, - sym_type_annotation, - STATE(3719), 1, - sym_variant_parameters, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1234), 4, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, - [183798] = 8, + [150375] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4847), 1, - anon_sym_DOT_DOT, - ACTIONS(4880), 1, - anon_sym_as, - STATE(3214), 1, - sym_as_aliasing, - STATE(3471), 1, + ACTIONS(4096), 1, + anon_sym_EQ, + STATE(2823), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4560), 5, + ACTIONS(4094), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_if, anon_sym_when, - [183829] = 6, + anon_sym_as, + [150405] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4882), 2, - anon_sym_and, - anon_sym_with, - STATE(3472), 2, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + ACTIONS(3934), 1, + anon_sym_as, + STATE(2824), 1, sym_decorator, - aux_sym__module_type_constraint_with_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4834), 5, + ACTIONS(1371), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_constraint, anon_sym_PIPE, - [183856] = 7, + anon_sym_with, + [150439] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3438), 1, - aux_sym__module_type_constraint_with_repeat1, - STATE(3473), 1, + ACTIONS(4100), 1, + anon_sym_EQ, + STATE(2825), 1, sym_decorator, - ACTIONS(4828), 2, - anon_sym_and, - anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4885), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4098), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, - [183885] = 7, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150469] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4889), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3474), 1, + ACTIONS(4104), 1, + anon_sym_EQ, + STATE(2826), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4887), 6, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4102), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - [183914] = 7, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150499] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4889), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3475), 1, + ACTIONS(4026), 1, + anon_sym_LPAREN, + ACTIONS(4028), 1, + anon_sym_DOT, + STATE(2827), 1, sym_decorator, + STATE(2860), 1, + sym_functor_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4891), 6, + ACTIONS(4106), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_EQ, anon_sym_and, - [183943] = 8, + anon_sym_PIPE, + anon_sym_with, + [150533] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - STATE(3476), 1, + ACTIONS(4110), 1, + anon_sym_EQ, + STATE(2828), 1, sym_decorator, - STATE(3484), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4830), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4108), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_and, - [183974] = 8, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150563] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - STATE(3477), 1, + ACTIONS(4114), 1, + anon_sym_EQ, + STATE(2829), 1, sym_decorator, - STATE(3484), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4843), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4112), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_and, - [184005] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4634), 1, anon_sym_COLON, - STATE(3478), 1, - sym_decorator, - STATE(3575), 1, - sym_type_annotation, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1250), 6, - anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, - [184034] = 7, + [150593] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3468), 1, - aux_sym__module_type_constraint_with_repeat1, - STATE(3479), 1, + ACTIONS(4118), 1, + anon_sym_EQ, + STATE(2830), 1, sym_decorator, - ACTIONS(4876), 2, - anon_sym_and, - anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4885), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4116), 10, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - [184063] = 7, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150623] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4893), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3480), 1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3677), 1, + anon_sym_unpack, + ACTIONS(4014), 1, + aux_sym_variant_identifier_token1, + STATE(2831), 1, sym_decorator, + STATE(2891), 1, + sym_module_identifier, + STATE(3671), 1, + sym_module_primary_expression, + STATE(3362), 2, + sym_nested_variant_identifier, + sym_variant_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4887), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - [184092] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [150663] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4893), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3481), 1, + ACTIONS(1385), 1, + anon_sym_EQ, + STATE(2832), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4891), 6, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1387), 10, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_and, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - [184121] = 8, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150693] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - STATE(3482), 1, + ACTIONS(4122), 1, + anon_sym_EQ, + STATE(2833), 1, sym_decorator, - STATE(3484), 1, - aux_sym_type_binding_repeat1, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4839), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4120), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_and, - [184152] = 8, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150723] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(3483), 1, + ACTIONS(4126), 1, + anon_sym_EQ, + STATE(2834), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4436), 5, + ACTIONS(4124), 10, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_with, - [184183] = 7, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150753] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4895), 1, - anon_sym_constraint, - STATE(3607), 1, - sym_type_constraint, - STATE(3484), 2, + ACTIONS(4130), 1, + anon_sym_EQ, + STATE(2835), 1, sym_decorator, - aux_sym_type_binding_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4817), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4128), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_and, - [184212] = 7, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150783] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4822), 1, - anon_sym_PIPE, - STATE(3430), 1, - aux_sym_variant_type_repeat1, - STATE(3485), 1, + ACTIONS(4134), 1, + anon_sym_EQ, + STATE(2836), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 6, + ACTIONS(4132), 10, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_and, + anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, - anon_sym_with, - [184241] = 8, + [150813] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4362), 1, - anon_sym_constraint, - STATE(3484), 1, - aux_sym_type_binding_repeat1, - STATE(3486), 1, + ACTIONS(4138), 1, + anon_sym_EQ, + STATE(2837), 1, sym_decorator, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4832), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4136), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_and, - [184272] = 5, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150843] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3487), 1, + ACTIONS(4142), 1, + anon_sym_EQ, + STATE(2838), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1285), 8, + ACTIONS(4140), 10, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, anon_sym_as, - [184297] = 8, + [150873] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4374), 1, - anon_sym_constraint, - STATE(3432), 1, - aux_sym_type_binding_repeat1, - STATE(3488), 1, + ACTIONS(4146), 1, + anon_sym_EQ, + STATE(2839), 1, sym_decorator, - STATE(3607), 1, - sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4602), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4144), 10, anon_sym_RBRACE, - anon_sym_and, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_PIPE, - [184328] = 5, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [150903] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3489), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2600), 1, + sym__jsx_element_name, + STATE(2840), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2945), 2, + sym__jsx_identifier, + sym_nested_jsx_identifier, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4834), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - anon_sym_with, - [184353] = 5, + [150945] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3490), 1, + ACTIONS(1179), 1, + anon_sym_as, + STATE(2841), 1, sym_decorator, + ACTIONS(1181), 2, + anon_sym_DOT, + sym__identifier, + ACTIONS(2019), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1273), 8, + ACTIONS(1177), 6, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_GT, + anon_sym_LT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, - anon_sym_as, - [184378] = 5, + [150979] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3491), 1, + ACTIONS(3876), 1, + anon_sym_COLON, + STATE(1358), 1, + sym_type_annotation, + STATE(2842), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4797), 8, + ACTIONS(1158), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, anon_sym_and, + anon_sym_constraint, anon_sym_PIPE, + anon_sym_as, anon_sym_with, - [184403] = 8, + [151011] = 13, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4893), 1, - anon_sym_with, - ACTIONS(4900), 1, - anon_sym_EQ, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3492), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + anon_sym_mutable, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2843), 1, sym_decorator, + STATE(3790), 1, + sym_value_identifier, + STATE(3969), 1, + sym__record_type_member, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, + STATE(4013), 2, + sym_record_type_field, + sym_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4898), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [184434] = 8, + [151055] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4889), 1, - anon_sym_with, - ACTIONS(4902), 1, + ACTIONS(4150), 1, anon_sym_EQ, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3493), 1, + STATE(2844), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4898), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4148), 10, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_and, - [184465] = 7, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [151085] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4822), 1, - anon_sym_PIPE, - STATE(3430), 1, - aux_sym_variant_type_repeat1, - STATE(3494), 1, + STATE(2845), 1, sym_decorator, + ACTIONS(4154), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 6, + ACTIONS(4152), 8, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_and, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_as, + anon_sym_DOT, + anon_sym_COLON_EQ, anon_sym_with, - [184494] = 6, + [151114] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3495), 1, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + ACTIONS(4156), 1, + anon_sym_LPAREN, + ACTIONS(4158), 1, + anon_sym_rec, + ACTIONS(4160), 1, + anon_sym_type, + STATE(2846), 1, sym_decorator, + STATE(3301), 1, + sym_module_binding, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(3154), 2, + sym_type_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4904), 4, - anon_sym_LBRACE, - anon_sym_GT, - anon_sym_QMARK, - sym__escape_identifier, - ACTIONS(4906), 4, - anon_sym_unpack, - anon_sym_async, - anon_sym_SLASH, - aux_sym_value_identifier_token1, - [184521] = 10, + [151155] = 13, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4908), 1, - anon_sym_RBRACE, - STATE(3496), 1, + ACTIONS(4164), 1, + anon_sym_BQUOTE, + ACTIONS(4168), 1, + anon_sym_DOLLAR, + ACTIONS(4170), 1, + anon_sym_DOLLAR_LBRACE, + STATE(2847), 1, sym_decorator, - STATE(4473), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, - ACTIONS(5), 3, + STATE(2952), 1, + aux_sym_template_string_content_repeat1, + STATE(3116), 1, + sym_template_substitution, + STATE(4097), 1, + sym_template_string_content, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [184555] = 6, + ACTIONS(4162), 2, + sym_escape_sequence, + anon_sym_BSLASH_BQUOTE, + ACTIONS(4166), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + [151198] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3497), 1, + STATE(2848), 1, sym_decorator, - STATE(3534), 1, - aux_sym_variant_type_repeat1, + ACTIONS(4174), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 6, - anon_sym_COLON, + ACTIONS(4172), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [184581] = 6, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_COLON_EQ, + anon_sym_with, + [151227] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3498), 1, + STATE(2849), 1, sym_decorator, - STATE(3534), 1, - aux_sym_variant_type_repeat1, + ACTIONS(1515), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 6, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [184607] = 6, + ACTIONS(4176), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4178), 4, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [151258] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3497), 1, - aux_sym_variant_type_repeat1, - STATE(3499), 1, + ACTIONS(4180), 1, + anon_sym_PIPE, + STATE(2850), 2, sym_decorator, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 6, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_when, + ACTIONS(1205), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_constraint, anon_sym_as, - [184633] = 6, + anon_sym_with, + [151287] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3498), 1, + ACTIONS(4183), 1, + anon_sym_PIPE, + STATE(2850), 1, aux_sym_variant_type_repeat1, - STATE(3500), 1, + STATE(2851), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 6, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_when, + ACTIONS(1195), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_constraint, anon_sym_as, - [184659] = 7, + anon_sym_with, + [151318] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4910), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3501), 1, + STATE(2852), 1, sym_decorator, + STATE(2904), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4887), 5, + ACTIONS(1249), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, - [184687] = 10, + anon_sym_constraint, + anon_sym_PIPE, + anon_sym_as, + anon_sym_with, + [151347] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(917), 1, - aux_sym_value_identifier_token1, - ACTIONS(4666), 1, - sym__escape_identifier, - ACTIONS(4912), 1, - aux_sym_variant_identifier_token1, - STATE(1595), 1, - sym__reserved_identifier, - STATE(1736), 1, - sym_value_identifier, - STATE(3502), 1, + STATE(2853), 1, sym_decorator, - ACTIONS(4664), 2, - anon_sym_unpack, - anon_sym_async, + ACTIONS(4187), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [184721] = 5, + ACTIONS(4185), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_COLON_EQ, + anon_sym_with, + [151376] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3503), 1, + ACTIONS(4189), 1, + anon_sym_PIPE, + STATE(2854), 1, sym_decorator, + STATE(2857), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1513), 7, + ACTIONS(1195), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ, + anon_sym_and, anon_sym_as, - [184745] = 5, + anon_sym_with, + [151407] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3504), 1, + STATE(2855), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1501), 7, + ACTIONS(4152), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, + anon_sym_EQ, + anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [184769] = 10, + anon_sym_with, + [151434] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - STATE(2950), 1, - sym__reserved_identifier, - STATE(3353), 1, - sym_value_identifier, - STATE(3362), 1, - sym__jsx_attribute_name, - STATE(3505), 1, + ACTIONS(4189), 1, + anon_sym_PIPE, + STATE(2856), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, + STATE(2857), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [184803] = 10, + ACTIONS(1201), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_as, + anon_sym_with, + [151465] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4914), 1, - anon_sym_RBRACE, - STATE(3506), 1, + ACTIONS(4191), 1, + anon_sym_PIPE, + STATE(2857), 2, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [184837] = 10, + ACTIONS(1205), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_as, + anon_sym_with, + [151494] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4916), 1, - anon_sym_RBRACE, - STATE(3507), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1111), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + sym__list_constructor, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(2858), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [184871] = 7, + STATE(3567), 3, + sym_array_pattern, + sym_list_pattern, + sym_value_identifier, + [151533] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4918), 1, - anon_sym_COLON, - STATE(3238), 1, - sym_type_annotation, - STATE(3508), 1, + ACTIONS(2397), 1, + anon_sym_as, + ACTIONS(4196), 1, + anon_sym_DOT_DOT, + STATE(2784), 1, + sym_as_aliasing, + STATE(2859), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4380), 5, + ACTIONS(4194), 7, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_as, - [184899] = 7, + [151566] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4922), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - STATE(3509), 2, + STATE(2860), 1, sym_decorator, - aux_sym_polymorphic_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4920), 3, + ACTIONS(4198), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_EQ, + anon_sym_and, anon_sym_DOT, - [184927] = 5, + anon_sym_PIPE, + anon_sym_with, + [151593] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3510), 1, + STATE(2861), 1, sym_decorator, + STATE(2871), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + ACTIONS(1195), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, + anon_sym_and, + anon_sym_constraint, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, anon_sym_as, - [184951] = 7, + anon_sym_with, + [151622] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4910), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3511), 1, + ACTIONS(4189), 1, + anon_sym_PIPE, + STATE(2854), 1, + aux_sym_variant_type_repeat1, + STATE(2862), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4925), 5, + ACTIONS(1249), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ, anon_sym_and, - [184979] = 7, + anon_sym_as, + anon_sym_with, + [151653] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4929), 1, - anon_sym_COLON, - ACTIONS(4931), 1, - anon_sym_EQ, - STATE(3512), 1, + ACTIONS(4189), 1, + anon_sym_PIPE, + STATE(2856), 1, + aux_sym_variant_type_repeat1, + STATE(2863), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4927), 5, + ACTIONS(1195), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ, anon_sym_and, - [185007] = 5, + anon_sym_as, + anon_sym_with, + [151684] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3513), 1, + STATE(2864), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1303), 7, + ACTIONS(4200), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, + anon_sym_EQ, + anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [185031] = 10, + anon_sym_with, + [151711] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4933), 1, - anon_sym_RBRACE, - STATE(3514), 1, + STATE(2865), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, + ACTIONS(4204), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [185065] = 7, + ACTIONS(4202), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_COLON_EQ, + anon_sym_with, + [151740] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4700), 1, - anon_sym_COLON, - STATE(3515), 1, + STATE(2866), 1, sym_decorator, - STATE(3575), 1, - sym_type_annotation, + ACTIONS(4208), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 5, + ACTIONS(4206), 8, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [185093] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(3516), 1, - sym_decorator, - STATE(3524), 1, - aux_sym__module_type_constraint_with_repeat1, - ACTIONS(4935), 2, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_COLON_EQ, anon_sym_with, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, + [151769] = 13, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(4826), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [185121] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1303), 1, - anon_sym_EQ_GT, - STATE(3517), 1, + ACTIONS(4168), 1, + anon_sym_DOLLAR, + ACTIONS(4170), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4210), 1, + anon_sym_BQUOTE, + STATE(2867), 1, sym_decorator, - ACTIONS(5), 3, + STATE(2952), 1, + aux_sym_template_string_content_repeat1, + STATE(3116), 1, + sym_template_substitution, + STATE(4203), 1, + sym_template_string_content, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - ACTIONS(1438), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [185147] = 7, + ACTIONS(4162), 2, + sym_escape_sequence, + anon_sym_BSLASH_BQUOTE, + ACTIONS(4166), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + [151812] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1355), 1, - anon_sym_EQ_GT, - ACTIONS(4937), 1, - anon_sym_as, - STATE(3518), 1, + STATE(2868), 1, sym_decorator, + ACTIONS(4214), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1351), 5, + ACTIONS(4212), 8, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - [185175] = 5, + anon_sym_DOT, + anon_sym_COLON_EQ, + anon_sym_with, + [151841] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3519), 1, + STATE(2857), 1, + aux_sym_variant_type_repeat1, + STATE(2869), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1470), 7, + ACTIONS(1195), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, + anon_sym_EQ, + anon_sym_and, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, anon_sym_as, - [185199] = 5, + anon_sym_with, + [151870] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3520), 1, + STATE(2857), 1, + aux_sym_variant_type_repeat1, + STATE(2870), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1478), 7, + ACTIONS(1201), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, + anon_sym_EQ, + anon_sym_and, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, anon_sym_as, - [185223] = 10, + anon_sym_with, + [151899] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4939), 1, - anon_sym_RBRACE, - STATE(3521), 1, + STATE(2850), 1, + aux_sym_variant_type_repeat1, + STATE(2871), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [185257] = 10, + ACTIONS(1201), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_constraint, + anon_sym_PIPE, + anon_sym_as, + anon_sym_with, + [151928] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(999), 1, - aux_sym_value_identifier_token1, - ACTIONS(4658), 1, - sym__escape_identifier, - ACTIONS(4912), 1, - aux_sym_variant_identifier_token1, - STATE(2796), 1, - sym__reserved_identifier, - STATE(2824), 1, - sym_value_identifier, - STATE(3522), 1, + ACTIONS(1240), 1, + anon_sym_EQ_GT, + ACTIONS(1276), 1, + anon_sym_EQ, + STATE(2872), 1, sym_decorator, - ACTIONS(4656), 2, - anon_sym_unpack, - anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [185291] = 7, + ACTIONS(1279), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_PIPE, + anon_sym_as, + anon_sym_with, + [151959] = 13, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3523), 1, + ACTIONS(4168), 1, + anon_sym_DOLLAR, + ACTIONS(4170), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4216), 1, + anon_sym_BQUOTE, + STATE(2873), 1, sym_decorator, + STATE(2952), 1, + aux_sym_template_string_content_repeat1, + STATE(3116), 1, + sym_template_substitution, + STATE(4188), 1, + sym_template_string_content, ACTIONS(5), 2, sym__continuation, sym_block_comment, - ACTIONS(4943), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - ACTIONS(4941), 5, + ACTIONS(4162), 2, sym_escape_sequence, - anon_sym_BQUOTE, anon_sym_BSLASH_BQUOTE, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LBRACE, - [185319] = 6, + ACTIONS(4166), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + [152002] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4945), 2, + STATE(2874), 1, + sym_decorator, + ACTIONS(4218), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(4198), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_COLON_EQ, anon_sym_with, - STATE(3524), 2, + [152031] = 6, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(2869), 1, + aux_sym_variant_type_repeat1, + STATE(2875), 1, sym_decorator, - aux_sym__module_type_constraint_with_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4834), 4, + ACTIONS(1249), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, anon_sym_PIPE, - [185345] = 10, + anon_sym_as, + anon_sym_with, + [152060] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(69), 1, - aux_sym_value_identifier_token1, - ACTIONS(4778), 1, - sym__escape_identifier, - ACTIONS(4912), 1, - aux_sym_variant_identifier_token1, - STATE(1366), 1, - sym__reserved_identifier, - STATE(1603), 1, - sym_value_identifier, - STATE(3525), 1, + STATE(2870), 1, + aux_sym_variant_type_repeat1, + STATE(2876), 1, sym_decorator, - ACTIONS(4776), 2, - anon_sym_unpack, - anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [185379] = 5, + ACTIONS(1195), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_PIPE, + anon_sym_as, + anon_sym_with, + [152089] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3526), 1, + STATE(2877), 1, sym_decorator, + ACTIONS(4222), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1438), 7, + ACTIONS(4220), 8, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [185403] = 5, + anon_sym_DOT, + anon_sym_COLON_EQ, + anon_sym_with, + [152118] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3527), 1, + ACTIONS(3946), 1, + anon_sym_constraint, + ACTIONS(4226), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_PLUS_EQ, + STATE(2878), 1, sym_decorator, + STATE(3011), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1493), 7, + ACTIONS(4224), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [185427] = 10, + anon_sym_and, + [152155] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4912), 1, - aux_sym_variant_identifier_token1, - STATE(2950), 1, - sym__reserved_identifier, - STATE(3012), 1, - sym_value_identifier, - STATE(3528), 1, + STATE(2879), 1, sym_decorator, - ACTIONS(4113), 2, - anon_sym_unpack, - anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [185461] = 10, + ACTIONS(4202), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_with, + [152182] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4948), 1, - anon_sym_RBRACE, - STATE(3529), 1, + STATE(2880), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [185495] = 10, + ACTIONS(4206), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_with, + [152209] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4950), 1, - anon_sym_RBRACE, - STATE(3530), 1, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + ACTIONS(4156), 1, + anon_sym_LPAREN, + ACTIONS(4230), 1, + anon_sym_rec, + ACTIONS(4232), 1, + anon_sym_type, + STATE(2881), 1, sym_decorator, - STATE(4481), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, + STATE(3166), 1, + sym_module_binding, + ACTIONS(2008), 2, + aux_sym_type_identifier_token1, + sym__escape_identifier, + STATE(3057), 2, + sym_type_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [185529] = 10, + [152250] = 13, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4952), 1, - anon_sym_RBRACE, - STATE(3531), 1, + ACTIONS(4168), 1, + anon_sym_DOLLAR, + ACTIONS(4170), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4234), 1, + anon_sym_BQUOTE, + STATE(2882), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, - ACTIONS(5), 3, + STATE(2952), 1, + aux_sym_template_string_content_repeat1, + STATE(3116), 1, + sym_template_substitution, + STATE(4142), 1, + sym_template_string_content, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [185563] = 5, + ACTIONS(4162), 2, + sym_escape_sequence, + anon_sym_BSLASH_BQUOTE, + ACTIONS(4166), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + [152293] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3532), 1, + STATE(2883), 1, sym_decorator, + ACTIONS(4238), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1351), 7, + ACTIONS(4236), 8, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [185587] = 10, + anon_sym_DOT, + anon_sym_COLON_EQ, + anon_sym_with, + [152322] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(831), 1, - aux_sym_value_identifier_token1, - ACTIONS(4755), 1, - sym__escape_identifier, - ACTIONS(4912), 1, - aux_sym_variant_identifier_token1, - STATE(797), 1, - sym__reserved_identifier, - STATE(847), 1, - sym_value_identifier, - STATE(3533), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + ACTIONS(4240), 1, + anon_sym_EQ, + ACTIONS(4242), 1, + anon_sym_PLUS_EQ, + STATE(2884), 1, sym_decorator, - ACTIONS(4753), 2, - anon_sym_unpack, - anon_sym_async, + STATE(3000), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [185621] = 6, + ACTIONS(4224), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [152359] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4954), 1, - anon_sym_PIPE, - STATE(3534), 2, + STATE(2885), 1, sym_decorator, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 5, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [185647] = 10, + ACTIONS(4172), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_with, + [152386] = 13, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(831), 1, - aux_sym_value_identifier_token1, - ACTIONS(4755), 1, - sym__escape_identifier, - ACTIONS(4912), 1, - aux_sym_variant_identifier_token1, - STATE(797), 1, - sym__reserved_identifier, - STATE(848), 1, - sym_value_identifier, - STATE(3535), 1, + ACTIONS(4168), 1, + anon_sym_DOLLAR, + ACTIONS(4170), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4244), 1, + anon_sym_BQUOTE, + STATE(2886), 1, sym_decorator, - ACTIONS(4753), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, + STATE(2952), 1, + aux_sym_template_string_content_repeat1, + STATE(3116), 1, + sym_template_substitution, + STATE(4162), 1, + sym_template_string_content, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [185681] = 6, + ACTIONS(4162), 2, + sym_escape_sequence, + anon_sym_BSLASH_BQUOTE, + ACTIONS(4166), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + [152429] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3536), 1, + STATE(2887), 1, sym_decorator, - STATE(3602), 1, - aux_sym_variant_type_repeat1, + ACTIONS(4246), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 6, + ACTIONS(4200), 8, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [185707] = 10, + anon_sym_DOT, + anon_sym_COLON_EQ, + anon_sym_with, + [152458] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - ACTIONS(4957), 1, - anon_sym_type, - STATE(3537), 1, + STATE(2888), 1, sym_decorator, - STATE(3665), 1, - sym_module_binding, - STATE(3512), 2, - sym_type_identifier, - sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [185741] = 10, + ACTIONS(4185), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_with, + [152485] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4959), 1, - anon_sym_RBRACE, - STATE(3538), 1, + STATE(2889), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [185775] = 8, + ACTIONS(4220), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_with, + [152512] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4847), 1, - anon_sym_DOT_DOT, - ACTIONS(4961), 1, - anon_sym_as, - STATE(3214), 1, - sym_as_aliasing, - STATE(3539), 1, + STATE(2890), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4560), 4, - anon_sym_EQ_GT, + ACTIONS(4248), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - [185805] = 5, + anon_sym_with, + [152539] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3540), 1, + STATE(2891), 1, sym_decorator, + ACTIONS(4250), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1448), 7, + ACTIONS(4248), 8, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [185829] = 10, + anon_sym_DOT, + anon_sym_COLON_EQ, + anon_sym_with, + [152568] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4963), 1, - anon_sym_RBRACE, - STATE(3541), 1, + STATE(2892), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, + ACTIONS(1523), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [185863] = 7, + ACTIONS(4252), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4254), 4, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [152599] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(4937), 1, - anon_sym_as, - STATE(3542), 1, + STATE(2893), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1351), 5, + ACTIONS(4248), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, + anon_sym_EQ, + anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - [185891] = 7, + anon_sym_with, + [152626] = 13, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4880), 1, - anon_sym_as, - STATE(3214), 1, - sym_as_aliasing, - STATE(3543), 1, + ACTIONS(4168), 1, + anon_sym_DOLLAR, + ACTIONS(4170), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4256), 1, + anon_sym_BQUOTE, + STATE(2894), 1, sym_decorator, - ACTIONS(5), 3, + STATE(2952), 1, + aux_sym_template_string_content_repeat1, + STATE(3116), 1, + sym_template_substitution, + STATE(4072), 1, + sym_template_string_content, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - ACTIONS(4560), 5, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - [185919] = 10, + ACTIONS(4162), 2, + sym_escape_sequence, + anon_sym_BSLASH_BQUOTE, + ACTIONS(4166), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + [152669] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4965), 1, - anon_sym_RBRACE, - STATE(3544), 1, + ACTIONS(4183), 1, + anon_sym_PIPE, + STATE(2851), 1, + aux_sym_variant_type_repeat1, + STATE(2895), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [185953] = 9, + ACTIONS(1249), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_constraint, + anon_sym_as, + anon_sym_with, + [152700] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4967), 1, - anon_sym_RPAREN, - ACTIONS(4970), 1, - anon_sym_COLON, - ACTIONS(4973), 1, - anon_sym_COMMA, - STATE(3545), 1, + STATE(2896), 1, sym_decorator, - STATE(4559), 1, - sym_module_type_annotation, + ACTIONS(4250), 2, + anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4628), 3, + ACTIONS(4248), 8, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT, + anon_sym_COLON_EQ, anon_sym_with, - [185985] = 6, + [152729] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - STATE(3546), 1, + STATE(2897), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4795), 6, + ACTIONS(4212), 10, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_EQ, anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_with, - [186011] = 7, + [152756] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4880), 1, - anon_sym_as, - STATE(3222), 1, - sym_as_aliasing, - STATE(3547), 1, + ACTIONS(4183), 1, + anon_sym_PIPE, + STATE(2850), 1, + aux_sym_variant_type_repeat1, + STATE(2898), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4478), 5, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - [186039] = 7, + ACTIONS(1201), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_constraint, + anon_sym_as, + anon_sym_with, + [152787] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4910), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3548), 1, + ACTIONS(4183), 1, + anon_sym_PIPE, + STATE(2898), 1, + aux_sym_variant_type_repeat1, + STATE(2899), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4975), 5, + ACTIONS(1195), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, - [186067] = 7, + anon_sym_constraint, + anon_sym_as, + anon_sym_with, + [152818] = 13, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3549), 1, + ACTIONS(4168), 1, + anon_sym_DOLLAR, + ACTIONS(4170), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4258), 1, + anon_sym_BQUOTE, + STATE(2900), 1, sym_decorator, + STATE(2952), 1, + aux_sym_template_string_content_repeat1, + STATE(3116), 1, + sym_template_substitution, + STATE(4334), 1, + sym_template_string_content, ACTIONS(5), 2, sym__continuation, sym_block_comment, - ACTIONS(1381), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - ACTIONS(1383), 5, + ACTIONS(4162), 2, sym_escape_sequence, - anon_sym_BQUOTE, anon_sym_BSLASH_BQUOTE, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LBRACE, - [186095] = 7, + ACTIONS(4166), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + [152861] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4977), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3550), 1, + STATE(2901), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4975), 5, + ACTIONS(4236), 10, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, - [186123] = 7, + anon_sym_with, + [152888] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3551), 1, + ACTIONS(4260), 1, + anon_sym_LPAREN, + ACTIONS(4262), 1, + anon_sym_COLON, + STATE(2902), 1, sym_decorator, - STATE(3611), 1, - aux_sym__module_type_constraint_with_repeat1, - ACTIONS(4979), 2, - anon_sym_and, - anon_sym_with, + STATE(3005), 1, + sym_variant_parameters, + STATE(3065), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4885), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1150), 6, anon_sym_RPAREN, - [186151] = 7, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [152923] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4977), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3552), 1, + ACTIONS(2435), 1, + anon_sym_as, + ACTIONS(4196), 1, + anon_sym_DOT_DOT, + STATE(2784), 1, + sym_as_aliasing, + STATE(2903), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4925), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4194), 7, anon_sym_RBRACE, - anon_sym_and, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - [186179] = 7, + anon_sym_RBRACK, + [152956] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4977), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3553), 1, + STATE(2850), 1, + aux_sym_variant_type_repeat1, + STATE(2904), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4981), 5, + ACTIONS(1195), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_and, + anon_sym_constraint, anon_sym_PIPE, - [186207] = 7, + anon_sym_as, + anon_sym_with, + [152985] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4977), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3554), 1, + ACTIONS(4268), 1, + anon_sym_EQ, + STATE(2905), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4983), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [186235] = 7, + ACTIONS(4264), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4266), 4, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [153015] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4849), 1, - anon_sym_as, - STATE(3214), 1, - sym_as_aliasing, - STATE(3555), 1, + ACTIONS(13), 1, + sym__identifier, + ACTIONS(69), 1, + aux_sym_variant_identifier_token1, + ACTIONS(4272), 1, + sym__escape_identifier, + STATE(1408), 1, + sym__reserved_identifier, + STATE(1509), 1, + sym_value_identifier, + STATE(1691), 1, + sym_variant_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(2906), 1, sym_decorator, + ACTIONS(4270), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4560), 5, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - [186263] = 7, + [153055] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4985), 1, - anon_sym_as, - STATE(3222), 1, - sym_as_aliasing, - STATE(3556), 1, + STATE(2907), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4478), 5, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - [186291] = 10, + ACTIONS(4274), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4276), 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [153083] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4988), 1, - anon_sym_RBRACE, - STATE(3557), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(367), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1079), 1, + sym_variant_identifier, + STATE(1097), 1, + sym_value_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(2908), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [186325] = 5, + [153123] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3558), 1, + STATE(2909), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 7, + ACTIONS(4278), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, + anon_sym_EQ, + anon_sym_and, + anon_sym_PLUS_EQ, + anon_sym_constraint, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [186349] = 7, + [153149] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4710), 1, - anon_sym_COLON, - STATE(1060), 1, - sym_type_annotation, - STATE(3559), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1250), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_when, + ACTIONS(3946), 1, + anon_sym_constraint, + ACTIONS(4282), 1, anon_sym_as, - [186377] = 10, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4990), 1, - anon_sym_RBRACE, - STATE(3560), 1, + STATE(2910), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, + STATE(2989), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [186411] = 5, + ACTIONS(4280), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [153183] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3561), 1, + ACTIONS(4260), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, + anon_sym_COLON, + STATE(2911), 1, sym_decorator, + STATE(3065), 1, + sym_type_annotation, + STATE(3086), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, + ACTIONS(1150), 5, anon_sym_RPAREN, - anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_as, - [186435] = 7, + [153217] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4992), 1, - anon_sym_PIPE, - STATE(3562), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4288), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(2912), 1, sym_decorator, - STATE(3600), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 5, + ACTIONS(4106), 6, anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_and, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [186463] = 7, + anon_sym_with, + [153249] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4992), 1, - anon_sym_PIPE, - STATE(3563), 1, + ACTIONS(3946), 1, + anon_sym_constraint, + ACTIONS(4282), 1, + anon_sym_as, + STATE(2913), 1, sym_decorator, - STATE(3601), 1, - aux_sym_variant_type_repeat1, + STATE(2971), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 5, + ACTIONS(4290), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [186491] = 5, + anon_sym_and, + [153283] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3564), 1, + STATE(2914), 1, sym_decorator, + STATE(3020), 1, + sym__module_type_constraint_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1377), 7, + ACTIONS(4292), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, + anon_sym_EQ, + anon_sym_and, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [186515] = 5, + anon_sym_with, + [153311] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3565), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + ACTIONS(4282), 1, + anon_sym_as, + STATE(2915), 1, sym_decorator, + STATE(2964), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1407), 7, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(4280), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [186539] = 10, + [153345] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4994), 1, - anon_sym_RBRACE, - STATE(3566), 1, + ACTIONS(389), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(4296), 1, + sym__escape_identifier, + STATE(1638), 1, + sym__reserved_identifier, + STATE(1773), 1, + sym_value_identifier, + STATE(2916), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, + STATE(3663), 1, + aux_sym_member_expression_repeat1, + STATE(4098), 1, + sym_module_identifier, + ACTIONS(4294), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [186573] = 5, + [153385] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3567), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3677), 1, + anon_sym_unpack, + STATE(2891), 1, + sym_module_identifier, + STATE(2917), 1, sym_decorator, + STATE(3379), 1, + sym_module_primary_expression, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1411), 7, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [186597] = 7, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [153421] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4708), 1, + ACTIONS(4260), 1, + anon_sym_LPAREN, + ACTIONS(4298), 1, anon_sym_COLON, - STATE(3568), 1, + STATE(2918), 1, sym_decorator, - STATE(3575), 1, + STATE(3058), 1, + sym_variant_parameters, + STATE(3065), 1, sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 5, + ACTIONS(1150), 5, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, anon_sym_as, - [186625] = 10, + [153455] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(999), 1, - aux_sym_value_identifier_token1, - ACTIONS(4658), 1, - sym__escape_identifier, - ACTIONS(4912), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(1063), 1, aux_sym_variant_identifier_token1, - STATE(2796), 1, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, sym__reserved_identifier, - STATE(2818), 1, + STATE(2641), 1, + sym_variant_identifier, + STATE(2699), 1, sym_value_identifier, - STATE(3569), 1, + STATE(2866), 1, + sym_module_identifier, + STATE(2919), 1, sym_decorator, - ACTIONS(4656), 2, + ACTIONS(3785), 2, anon_sym_unpack, anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [186659] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(3570), 1, - sym_decorator, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - ACTIONS(4998), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - ACTIONS(4996), 5, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_BSLASH_BQUOTE, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LBRACE, - [186687] = 7, + [153495] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3516), 1, - aux_sym__module_type_constraint_with_repeat1, - STATE(3571), 1, + ACTIONS(4282), 1, + anon_sym_as, + STATE(2920), 1, sym_decorator, - ACTIONS(4935), 2, - anon_sym_and, - anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4885), 4, + ACTIONS(4300), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, anon_sym_PIPE, - [186715] = 7, + anon_sym_with, + [153523] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4977), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3572), 1, + ACTIONS(673), 1, + sym__identifier, + ACTIONS(713), 1, + aux_sym_variant_identifier_token1, + ACTIONS(4304), 1, + sym__escape_identifier, + STATE(802), 1, + sym__reserved_identifier, + STATE(854), 1, + sym_variant_identifier, + STATE(944), 1, + sym_value_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(2921), 1, sym_decorator, + ACTIONS(4302), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4887), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [186743] = 7, + [153563] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4977), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3573), 1, + ACTIONS(3946), 1, + anon_sym_constraint, + ACTIONS(4282), 1, + anon_sym_as, + STATE(2922), 1, sym_decorator, + STATE(2968), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4891), 5, + ACTIONS(4306), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_and, - anon_sym_PIPE, - [186771] = 10, + [153597] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5000), 1, - anon_sym_RBRACE, - STATE(3574), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3677), 1, + anon_sym_unpack, + STATE(2891), 1, + sym_module_identifier, + STATE(2912), 1, + sym_module_primary_expression, + STATE(2923), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [186805] = 5, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [153633] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3575), 1, + STATE(2924), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1509), 7, + ACTIONS(4308), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, + anon_sym_EQ, + anon_sym_and, + anon_sym_PLUS_EQ, + anon_sym_constraint, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [186829] = 10, + [153659] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, + ACTIONS(761), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(4312), 1, sym__escape_identifier, - ACTIONS(4912), 1, + STATE(1056), 1, + sym_value_identifier, + STATE(1515), 1, + sym__reserved_identifier, + STATE(2925), 1, + sym_decorator, + STATE(3698), 1, + aux_sym_member_expression_repeat1, + STATE(4271), 1, + sym_module_identifier, + ACTIONS(4310), 2, + anon_sym_unpack, + anon_sym_async, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + [153699] = 12, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(907), 1, + sym__identifier, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - STATE(1091), 1, + ACTIONS(4316), 1, + sym__escape_identifier, + STATE(2398), 1, sym__reserved_identifier, - STATE(1137), 1, + STATE(2452), 1, sym_value_identifier, - STATE(3576), 1, + STATE(2926), 1, sym_decorator, - ACTIONS(1199), 2, + STATE(3930), 1, + aux_sym_member_expression_repeat1, + STATE(4080), 1, + sym_module_identifier, + ACTIONS(4314), 2, anon_sym_unpack, anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [186863] = 5, + [153739] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3577), 1, + STATE(2927), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1415), 7, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, + ACTIONS(4318), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4320), 5, + anon_sym_LBRACE, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [186887] = 7, + anon_sym_DOT, + anon_sym_QMARK, + sym__escape_identifier, + [153767] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4910), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3578), 1, + ACTIONS(3946), 1, + anon_sym_constraint, + ACTIONS(4282), 1, + anon_sym_as, + STATE(2928), 1, sym_decorator, + STATE(2996), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4983), 5, + ACTIONS(4322), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, - [186915] = 5, + [153801] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3579), 1, + ACTIONS(4324), 1, + anon_sym_LT, + STATE(2929), 1, sym_decorator, + STATE(3066), 1, + sym_type_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, + ACTIONS(1240), 7, anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, @@ -249446,29568 +214085,29389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_as, - [186939] = 7, + [153831] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4910), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3580), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + ACTIONS(3677), 1, + anon_sym_unpack, + STATE(2891), 1, + sym_module_identifier, + STATE(2930), 1, sym_decorator, + STATE(3465), 1, + sym_module_primary_expression, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4981), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [186967] = 10, + STATE(2896), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [153867] = 11, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5002), 1, - anon_sym_RBRACE, - STATE(3581), 1, + ACTIONS(4329), 1, + anon_sym_BQUOTE, + ACTIONS(4334), 1, + anon_sym_DOLLAR, + ACTIONS(4337), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3116), 1, + sym_template_substitution, + ACTIONS(5), 2, + sym__continuation, + sym_block_comment, + ACTIONS(4326), 2, + sym_escape_sequence, + anon_sym_BSLASH_BQUOTE, + ACTIONS(4331), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + STATE(2931), 2, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, + aux_sym_template_string_content_repeat1, + [153905] = 9, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(3946), 1, + anon_sym_constraint, + ACTIONS(4282), 1, + anon_sym_as, + STATE(2932), 1, + sym_decorator, + STATE(2969), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [187001] = 10, + ACTIONS(4340), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [153939] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(447), 1, - aux_sym_value_identifier_token1, - ACTIONS(4774), 1, - sym__escape_identifier, - ACTIONS(4912), 1, + ACTIONS(13), 1, + sym__identifier, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - STATE(1759), 1, + ACTIONS(4272), 1, + sym__escape_identifier, + STATE(1408), 1, sym__reserved_identifier, - STATE(1867), 1, + STATE(1491), 1, sym_value_identifier, - STATE(3582), 1, + STATE(2933), 1, sym_decorator, - ACTIONS(4772), 2, + STATE(3783), 1, + aux_sym_member_expression_repeat1, + STATE(4243), 1, + sym_module_identifier, + ACTIONS(4270), 2, anon_sym_unpack, anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [187035] = 6, + [153979] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1425), 1, + ACTIONS(2382), 1, anon_sym_EQ_GT, - STATE(3583), 1, + ACTIONS(4342), 1, + anon_sym_RPAREN, + ACTIONS(4344), 1, + anon_sym_COLON, + STATE(2934), 1, sym_decorator, + STATE(4265), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1421), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [187061] = 10, + ACTIONS(1398), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [154013] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(69), 1, - aux_sym_value_identifier_token1, - ACTIONS(4778), 1, - sym__escape_identifier, - ACTIONS(4912), 1, - aux_sym_variant_identifier_token1, - STATE(1366), 1, - sym__reserved_identifier, - STATE(1584), 1, - sym_value_identifier, - STATE(3584), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + ACTIONS(4282), 1, + anon_sym_as, + STATE(2935), 1, sym_decorator, - ACTIONS(4776), 2, - anon_sym_unpack, - anon_sym_async, + STATE(2984), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [187095] = 10, + ACTIONS(4340), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [154047] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5004), 1, - anon_sym_RBRACE, - STATE(3585), 1, + STATE(2936), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [187129] = 8, + ACTIONS(4346), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_PLUS_EQ, + anon_sym_constraint, + anon_sym_PIPE, + [154073] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4847), 1, - anon_sym_DOT_DOT, - ACTIONS(5006), 1, + ACTIONS(2397), 1, anon_sym_as, - STATE(3214), 1, + STATE(2834), 1, sym_as_aliasing, - STATE(3586), 1, + STATE(2937), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4560), 4, - anon_sym_EQ_GT, + ACTIONS(4010), 7, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - [187159] = 5, + anon_sym_RBRACK, + [154103] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3587), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2927), 1, + sym__jsx_identifier, + STATE(2938), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, + STATE(2947), 2, + sym_value_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1474), 7, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [187183] = 5, + [154141] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3588), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2697), 1, + sym_value_identifier, + STATE(2939), 1, sym_decorator, + STATE(3694), 1, + aux_sym_member_expression_repeat1, + STATE(4208), 1, + sym_module_identifier, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1458), 7, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [187207] = 7, + [154181] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4710), 1, - anon_sym_COLON, - STATE(3238), 1, - sym_type_annotation, - STATE(3589), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(167), 1, + aux_sym_variant_identifier_token1, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1079), 1, + sym_variant_identifier, + STATE(1097), 1, + sym_value_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(2940), 1, sym_decorator, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4380), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [187235] = 7, - ACTIONS(3), 1, - sym_line_comment, + [154221] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3590), 1, + ACTIONS(673), 1, + sym__identifier, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(4304), 1, + sym__escape_identifier, + STATE(802), 1, + sym__reserved_identifier, + STATE(813), 1, + sym_value_identifier, + STATE(2941), 1, sym_decorator, - ACTIONS(5), 2, + STATE(3687), 1, + aux_sym_member_expression_repeat1, + STATE(4290), 1, + sym_module_identifier, + ACTIONS(4302), 2, + anon_sym_unpack, + anon_sym_async, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(1221), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - ACTIONS(1226), 5, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_BSLASH_BQUOTE, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LBRACE, - [187263] = 8, + sym_line_comment, + [154261] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3591), 1, + STATE(2942), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5009), 3, + ACTIONS(4348), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - [187293] = 5, + anon_sym_EQ, + anon_sym_and, + anon_sym_PLUS_EQ, + anon_sym_constraint, + anon_sym_PIPE, + [154287] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3592), 1, + STATE(2943), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1360), 7, + ACTIONS(1185), 9, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_as, - [187317] = 10, + [154313] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(447), 1, - aux_sym_value_identifier_token1, - ACTIONS(4774), 1, - sym__escape_identifier, - ACTIONS(4912), 1, - aux_sym_variant_identifier_token1, - STATE(1759), 1, - sym__reserved_identifier, - STATE(1861), 1, - sym_value_identifier, - STATE(3593), 1, + ACTIONS(2382), 1, + anon_sym_EQ_GT, + ACTIONS(4344), 1, + anon_sym_COLON, + ACTIONS(4350), 1, + anon_sym_RPAREN, + STATE(2944), 1, sym_decorator, - ACTIONS(4772), 2, - anon_sym_unpack, - anon_sym_async, + STATE(4116), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [187351] = 5, + ACTIONS(1398), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [154347] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3594), 1, + ACTIONS(4356), 1, + anon_sym_DOT, + STATE(2945), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4887), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_and, - anon_sym_PIPE, - [187375] = 10, + ACTIONS(4352), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4354), 4, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [154377] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5011), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(4362), 1, + anon_sym_EQ, + STATE(2946), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [187409] = 5, + ACTIONS(4358), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4360), 4, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [154407] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3596), 1, + STATE(2947), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1466), 7, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, + ACTIONS(4364), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4366), 5, + anon_sym_LBRACE, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [187433] = 10, + anon_sym_DOT, + anon_sym_QMARK, + sym__escape_identifier, + [154435] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5013), 1, - anon_sym_RBRACE, - STATE(3597), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + ACTIONS(4282), 1, + anon_sym_as, + STATE(2948), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, + STATE(3015), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [187467] = 6, + ACTIONS(4322), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [154469] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3598), 1, + ACTIONS(2397), 1, + anon_sym_as, + STATE(2784), 1, + sym_as_aliasing, + STATE(2949), 1, sym_decorator, - ACTIONS(2071), 2, - anon_sym_LPAREN, - anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1299), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4194), 7, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - [187493] = 5, + anon_sym_RBRACK, + [154499] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3599), 1, + ACTIONS(4368), 1, + anon_sym_as, + STATE(2834), 1, + sym_as_aliasing, + STATE(2950), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1489), 7, + ACTIONS(4010), 7, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [187517] = 7, + anon_sym_RBRACK, + [154529] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4992), 1, - anon_sym_PIPE, - STATE(3600), 1, + ACTIONS(2435), 1, + anon_sym_as, + STATE(2784), 1, + sym_as_aliasing, + STATE(2951), 1, sym_decorator, - STATE(3602), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 5, + ACTIONS(4194), 7, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [187545] = 7, + anon_sym_PIPE, + anon_sym_RBRACK, + [154559] = 12, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4992), 1, - anon_sym_PIPE, - STATE(3601), 1, + ACTIONS(4168), 1, + anon_sym_DOLLAR, + ACTIONS(4170), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4371), 1, + anon_sym_BQUOTE, + STATE(2931), 1, + aux_sym_template_string_content_repeat1, + STATE(2952), 1, sym_decorator, - STATE(3602), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, + STATE(3116), 1, + sym_template_substitution, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - ACTIONS(1322), 5, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [187573] = 6, + ACTIONS(4162), 2, + sym_escape_sequence, + anon_sym_BSLASH_BQUOTE, + ACTIONS(4166), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + [154599] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5015), 1, - anon_sym_PIPE, - STATE(3602), 2, + ACTIONS(389), 1, + sym__identifier, + ACTIONS(435), 1, + aux_sym_variant_identifier_token1, + ACTIONS(4296), 1, + sym__escape_identifier, + STATE(1638), 1, + sym__reserved_identifier, + STATE(1892), 1, + sym_variant_identifier, + STATE(2074), 1, + sym_value_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(2953), 1, sym_decorator, - aux_sym_variant_type_repeat1, + ACTIONS(4294), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 5, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [187599] = 8, + [154639] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2636), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_DOT_DOT, - STATE(3214), 1, - sym_as_aliasing, - STATE(3603), 1, + ACTIONS(3689), 1, + anon_sym_unpack, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + ACTIONS(4373), 1, + anon_sym_LPAREN, + STATE(2827), 1, + sym_module_primary_expression, + STATE(2893), 1, + sym_module_identifier, + STATE(2954), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4560), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - [187629] = 5, + STATE(2890), 4, + sym_module_unpack, + sym_parenthesized_module_expression, + sym_module_identifier_path, + sym_functor_use, + [154675] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3604), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + ACTIONS(4282), 1, + anon_sym_as, + STATE(2955), 1, sym_decorator, + STATE(3019), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1462), 7, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(4290), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [187653] = 10, + [154709] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1147), 1, - aux_sym_value_identifier_token1, - ACTIONS(4121), 1, - sym__escape_identifier, - ACTIONS(4912), 1, + ACTIONS(167), 1, aux_sym_variant_identifier_token1, - STATE(2950), 1, + ACTIONS(907), 1, + sym__identifier, + ACTIONS(4316), 1, + sym__escape_identifier, + STATE(1079), 1, + sym_variant_identifier, + STATE(2398), 1, sym__reserved_identifier, - STATE(3027), 1, + STATE(2454), 1, sym_value_identifier, - STATE(3605), 1, + STATE(2866), 1, + sym_module_identifier, + STATE(2956), 1, sym_decorator, - ACTIONS(4113), 2, + ACTIONS(4314), 2, anon_sym_unpack, anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [187687] = 5, + [154749] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3606), 1, + ACTIONS(761), 1, + sym__identifier, + ACTIONS(785), 1, + aux_sym_variant_identifier_token1, + ACTIONS(4312), 1, + sym__escape_identifier, + STATE(1097), 1, + sym_value_identifier, + STATE(1515), 1, + sym__reserved_identifier, + STATE(1815), 1, + sym_variant_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(2957), 1, sym_decorator, + ACTIONS(4310), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1347), 7, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [187711] = 5, + [154789] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3607), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + ACTIONS(4282), 1, + anon_sym_as, + STATE(2958), 1, sym_decorator, + STATE(2998), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5018), 7, + ACTIONS(4306), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_and, - anon_sym_constraint, anon_sym_PIPE, - [187735] = 10, + [154823] = 12, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(917), 1, - aux_sym_value_identifier_token1, - ACTIONS(4666), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, sym__escape_identifier, - ACTIONS(4912), 1, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - STATE(1595), 1, + STATE(1053), 1, sym__reserved_identifier, - STATE(1735), 1, + STATE(1056), 1, sym_value_identifier, - STATE(3608), 1, + STATE(2959), 1, sym_decorator, - ACTIONS(4664), 2, + STATE(3723), 1, + aux_sym_member_expression_repeat1, + STATE(4238), 1, + sym_module_identifier, + ACTIONS(1113), 2, anon_sym_unpack, anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [187769] = 5, + [154863] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3609), 1, + ACTIONS(3946), 1, + anon_sym_constraint, + STATE(2960), 1, sym_decorator, + STATE(3023), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1403), 7, + ACTIONS(4375), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [187793] = 6, + anon_sym_and, + [154894] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5020), 2, - anon_sym_and, - anon_sym_with, - STATE(3610), 2, + STATE(2961), 1, sym_decorator, - aux_sym__module_type_constraint_with_repeat1, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4834), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + ACTIONS(4377), 3, anon_sym_RPAREN, - [187819] = 7, + anon_sym_COMMA, + anon_sym_DOT, + [154925] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3610), 1, - aux_sym__module_type_constraint_with_repeat1, - STATE(3611), 1, + STATE(2962), 1, sym_decorator, - ACTIONS(4979), 2, - anon_sym_and, - anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4826), 4, + ACTIONS(4024), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - [187847] = 10, + anon_sym_EQ, + anon_sym_and, + anon_sym_PIPE, + anon_sym_with, + [154950] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5023), 1, - anon_sym_RBRACE, - STATE(3612), 1, + STATE(2963), 1, sym_decorator, - STATE(4270), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [187881] = 5, + ACTIONS(3858), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(3860), 4, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [154977] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3613), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + STATE(2964), 1, sym_decorator, + STATE(3002), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4891), 7, + ACTIONS(4379), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, anon_sym_and, anon_sym_PIPE, - [187905] = 5, + [155008] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3614), 1, + ACTIONS(4383), 1, + anon_sym_PIPE, + STATE(2965), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1521), 7, + ACTIONS(4381), 7, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, anon_sym_as, - [187929] = 7, - ACTIONS(3), 1, - sym_line_comment, + [155035] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3615), 1, + ACTIONS(4342), 1, + anon_sym_RPAREN, + ACTIONS(4344), 1, + anon_sym_COLON, + STATE(2966), 1, sym_decorator, - ACTIONS(5), 2, + STATE(4265), 1, + sym_module_type_annotation, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5027), 2, - sym__template_chars, - aux_sym_template_string_content_token1, - ACTIONS(5025), 5, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_BSLASH_BQUOTE, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LBRACE, - [187957] = 7, + sym_line_comment, + ACTIONS(1398), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [155066] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4910), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3616), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + STATE(2967), 1, sym_decorator, + STATE(3002), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4891), 5, + ACTIONS(4224), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_and, - [187985] = 5, + anon_sym_PIPE, + [155097] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3617), 1, + ACTIONS(3946), 1, + anon_sym_constraint, + STATE(2968), 1, sym_decorator, + STATE(3023), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1505), 7, + ACTIONS(4386), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [188009] = 10, + anon_sym_and, + [155128] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - ACTIONS(4912), 1, - aux_sym_variant_identifier_token1, - STATE(1091), 1, - sym__reserved_identifier, - STATE(1129), 1, - sym_value_identifier, - STATE(3618), 1, + ACTIONS(3946), 1, + anon_sym_constraint, + STATE(2969), 1, sym_decorator, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, + STATE(3023), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [188043] = 6, + ACTIONS(4388), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [155159] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3619), 1, + STATE(2970), 1, sym_decorator, - STATE(3624), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 6, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [188069] = 10, + ACTIONS(4390), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4392), 4, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [155186] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5029), 1, - anon_sym_RBRACE, - STATE(3620), 1, + ACTIONS(3946), 1, + anon_sym_constraint, + STATE(2971), 1, sym_decorator, - STATE(4447), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, + STATE(3023), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [188103] = 6, + ACTIONS(4394), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [155217] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3536), 1, - aux_sym_variant_type_repeat1, - STATE(3621), 1, + STATE(2972), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 6, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [188129] = 10, + ACTIONS(4176), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4178), 4, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [155244] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5031), 1, - anon_sym_RBRACE, - STATE(3622), 1, + ACTIONS(4344), 1, + anon_sym_COLON, + ACTIONS(4350), 1, + anon_sym_RPAREN, + STATE(2973), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, + STATE(4116), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [188163] = 5, + ACTIONS(1398), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [155275] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3623), 1, + STATE(2974), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1343), 7, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, + ACTIONS(4252), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4254), 4, + anon_sym_LBRACE, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [188187] = 6, + anon_sym_QMARK, + sym__escape_identifier, + [155302] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3602), 1, - aux_sym_variant_type_repeat1, - STATE(3624), 1, + STATE(2975), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 6, + ACTIONS(1220), 8, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_as, - [188213] = 7, + [155327] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5033), 1, + ACTIONS(4260), 1, + anon_sym_LPAREN, + ACTIONS(4396), 1, anon_sym_COLON, - ACTIONS(5035), 1, - anon_sym_EQ, - STATE(3625), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4927), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [188241] = 5, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(3626), 1, + STATE(2976), 1, sym_decorator, + STATE(3065), 1, + sym_type_annotation, + STATE(3219), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1517), 7, - anon_sym_RPAREN, - anon_sym_EQ_GT, + ACTIONS(1150), 4, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, anon_sym_as, - [188265] = 10, + [155360] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5037), 1, - anon_sym_RBRACE, - STATE(3627), 1, + STATE(2977), 1, sym_decorator, - STATE(4390), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [188299] = 10, + ACTIONS(4398), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_PIPE, + anon_sym_with, + [155385] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - ACTIONS(4131), 1, - aux_sym_type_identifier_token1, - ACTIONS(4133), 1, - sym__escape_identifier, - ACTIONS(5039), 1, - anon_sym_type, - STATE(3628), 1, + STATE(2978), 1, sym_decorator, - STATE(3740), 1, - sym_module_binding, - STATE(3625), 2, - sym_type_identifier, - sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [188333] = 10, + ACTIONS(4400), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4402), 4, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [155412] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5041), 1, - anon_sym_RBRACE, - STATE(3629), 1, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(4406), 1, + anon_sym_as, + STATE(2784), 1, + sym_as_aliasing, + STATE(2979), 1, sym_decorator, - STATE(4291), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [188367] = 8, + ACTIONS(4194), 5, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_when, + [155443] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4038), 1, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(3691), 1, aux_sym_variant_identifier_token1, - STATE(3630), 1, + ACTIONS(4409), 1, + anon_sym_type, + STATE(2980), 1, sym_decorator, - STATE(3687), 1, + STATE(3284), 1, sym_module_binding, - ACTIONS(4133), 2, + ACTIONS(2008), 2, aux_sym_type_identifier_token1, sym__escape_identifier, - STATE(3512), 2, + STATE(3057), 2, sym_type_identifier, sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [188396] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3467), 1, - sym_value_identifier, - STATE(3631), 1, - sym_decorator, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [188427] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_PIPE, - STATE(3238), 1, - sym_type_annotation, - STATE(3632), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4380), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_when, - [188456] = 9, + [155478] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(447), 1, - aux_sym_value_identifier_token1, - ACTIONS(4774), 1, - sym__escape_identifier, - STATE(1759), 1, - sym__reserved_identifier, - STATE(3633), 1, + ACTIONS(3946), 1, + anon_sym_constraint, + STATE(2981), 1, sym_decorator, - STATE(4030), 1, - sym_value_identifier, - ACTIONS(4772), 2, - anon_sym_unpack, - anon_sym_async, + STATE(3023), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [188487] = 7, + ACTIONS(4224), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [155509] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5047), 1, - anon_sym_PIPE, - STATE(3238), 1, - sym_type_annotation, - STATE(3634), 1, + STATE(2982), 1, sym_decorator, + STATE(2983), 1, + aux_sym__module_type_constraint_with_repeat1, + ACTIONS(4413), 2, + anon_sym_and, + anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4380), 4, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4411), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_EQ, - anon_sym_COMMA, - [188514] = 7, + anon_sym_PIPE, + [155538] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5051), 1, + ACTIONS(4415), 2, anon_sym_and, - STATE(3635), 1, + anon_sym_with, + STATE(2983), 2, sym_decorator, - STATE(3690), 1, - aux_sym_module_declaration_repeat1, + aux_sym__module_type_constraint_with_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5049), 4, + ACTIONS(4398), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_RPAREN, - [188541] = 5, + anon_sym_EQ, + anon_sym_PIPE, + [155565] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3636), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + STATE(2984), 1, sym_decorator, + STATE(3002), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4925), 6, + ACTIONS(4388), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_and, anon_sym_PIPE, - [188564] = 9, + [155596] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3637), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4288), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(2985), 1, sym_decorator, - STATE(4946), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [188595] = 8, + ACTIONS(4024), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_with, + [155627] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5055), 1, - anon_sym_GT, - STATE(3638), 1, - sym_decorator, - STATE(4651), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, sym__escape_identifier, - ACTIONS(5053), 2, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1097), 1, + sym_value_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(2986), 1, + sym_decorator, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [188624] = 8, + [155664] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5059), 1, - anon_sym_PIPE, - ACTIONS(5061), 1, - anon_sym_as, - STATE(3639), 1, + STATE(3249), 1, + sym_type_identifier, + STATE(2987), 2, sym_decorator, - STATE(4522), 1, - sym_as_aliasing, + aux_sym_polymorphic_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5057), 3, - anon_sym_RBRACE, + ACTIONS(4418), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + ACTIONS(4421), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [188653] = 7, + anon_sym_DOT, + [155693] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3640), 1, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(2027), 1, + anon_sym_DOT, + STATE(2988), 1, sym_decorator, - STATE(3648), 1, - aux_sym__module_type_constraint_with_repeat1, - ACTIONS(5063), 2, - anon_sym_and, - anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4885), 3, - anon_sym_RPAREN, + ACTIONS(1185), 6, anon_sym_COLON, + anon_sym_EQ_GT, anon_sym_COMMA, - [188680] = 5, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_as, + [155722] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3641), 1, + ACTIONS(3946), 1, + anon_sym_constraint, + STATE(2989), 1, sym_decorator, + STATE(3023), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4832), 6, + ACTIONS(4379), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, - anon_sym_PIPE, - [188703] = 9, + [155753] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5067), 1, - aux_sym_value_identifier_token1, - ACTIONS(5069), 1, - sym__escape_identifier, - STATE(3523), 1, - sym_value_identifier, - STATE(3549), 1, - sym__reserved_identifier, - STATE(3642), 1, + STATE(2990), 1, sym_decorator, - ACTIONS(5065), 2, - anon_sym_unpack, - anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [188734] = 7, + ACTIONS(1228), 8, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [155778] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5073), 1, - anon_sym_and, - STATE(3643), 1, + STATE(2991), 1, sym_decorator, - STATE(3696), 1, - aux_sym_type_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5071), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - [188761] = 8, + ACTIONS(4423), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4425), 4, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [155805] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2682), 1, - anon_sym_as, - ACTIONS(4562), 1, - anon_sym_DOT_DOT, - STATE(3214), 1, - sym_as_aliasing, - STATE(3644), 1, + STATE(2992), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4560), 3, + ACTIONS(4427), 8, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, anon_sym_PIPE, - [188790] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3645), 1, - sym_decorator, - STATE(4665), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [188821] = 7, + anon_sym_with, + [155830] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5077), 1, - anon_sym_and, - STATE(3646), 1, + STATE(2993), 1, sym_decorator, - STATE(3650), 1, - aux_sym_type_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5075), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [188848] = 6, + ACTIONS(4429), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4431), 4, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [155857] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3647), 1, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(4433), 1, + anon_sym_as, + STATE(2784), 1, + sym_as_aliasing, + STATE(2994), 1, sym_decorator, - STATE(3911), 1, - sym__module_type_constraint_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4797), 5, - anon_sym_RPAREN, + ACTIONS(4194), 5, anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_with, - [188873] = 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_when, + [155888] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3648), 1, + STATE(2995), 1, sym_decorator, - STATE(3658), 1, + STATE(3010), 1, aux_sym__module_type_constraint_with_repeat1, - ACTIONS(5063), 2, + ACTIONS(4437), 2, anon_sym_and, anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4826), 3, + ACTIONS(4435), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - [188900] = 7, + anon_sym_EQ, + [155917] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5077), 1, - anon_sym_and, - STATE(3649), 1, + ACTIONS(3946), 1, + anon_sym_constraint, + STATE(2996), 1, sym_decorator, - STATE(3650), 1, - aux_sym_type_declaration_repeat1, + STATE(3023), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5079), 4, + ACTIONS(4439), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_PIPE, - [188927] = 6, + anon_sym_RPAREN, + anon_sym_and, + [155948] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5083), 1, - anon_sym_and, - STATE(3650), 2, + ACTIONS(4443), 1, + anon_sym_with, + STATE(2997), 1, sym_decorator, - aux_sym_type_declaration_repeat1, + STATE(3020), 1, + sym__module_type_constraint_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5081), 4, + ACTIONS(4441), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_PIPE, - [188952] = 7, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + [155977] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5077), 1, - anon_sym_and, - STATE(3651), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + STATE(2998), 1, sym_decorator, - STATE(3653), 1, - aux_sym_type_declaration_repeat1, + STATE(3002), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5079), 4, + ACTIONS(4386), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_and, anon_sym_PIPE, - [188979] = 8, + [156008] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(5086), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(3652), 1, + STATE(2999), 1, sym_decorator, + ACTIONS(2027), 2, + anon_sym_DOT, + anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4436), 3, + ACTIONS(1185), 3, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(1251), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_with, - [189008] = 7, + [156037] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5077), 1, - anon_sym_and, - STATE(3650), 1, - aux_sym_type_declaration_repeat1, - STATE(3653), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + STATE(3000), 1, sym_decorator, + STATE(3002), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5071), 4, + ACTIONS(4445), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_and, anon_sym_PIPE, - [189035] = 7, + [156068] = 11, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2636), 1, + ACTIONS(225), 1, + anon_sym_COLON, + ACTIONS(4449), 1, + anon_sym_EQ, + ACTIONS(4451), 1, anon_sym_as, - STATE(3214), 1, - sym_as_aliasing, - STATE(3654), 1, + STATE(3001), 1, sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4560), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - [189062] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2639), 1, - anon_sym_as, - STATE(3214), 1, + STATE(3293), 1, sym_as_aliasing, - STATE(3655), 1, - sym_decorator, - ACTIONS(4560), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5088), 2, + STATE(3617), 1, + sym_type_annotation, + STATE(3622), 1, + sym__labeled_parameter_default_value, + ACTIONS(4447), 2, anon_sym_RPAREN, anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [189091] = 7, + [156105] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5091), 1, - anon_sym_as, - STATE(3222), 1, - sym_as_aliasing, - STATE(3656), 1, + ACTIONS(4455), 1, + anon_sym_constraint, + STATE(3048), 1, + sym_type_constraint, + STATE(3002), 2, sym_decorator, + aux_sym_type_binding_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4478), 4, + ACTIONS(4453), 5, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_and, anon_sym_PIPE, - anon_sym_RBRACK, - [189118] = 5, + [156134] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3657), 1, + STATE(3003), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4834), 6, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_and, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_with, - [189141] = 6, + ACTIONS(4458), 4, + anon_sym_unpack, + anon_sym_async, + anon_sym_SLASH, + sym__identifier, + ACTIONS(4460), 4, + anon_sym_LBRACE, + anon_sym_GT, + anon_sym_QMARK, + sym__escape_identifier, + [156161] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5094), 2, - anon_sym_and, - anon_sym_with, - STATE(3658), 2, + ACTIONS(4282), 1, + anon_sym_as, + STATE(3004), 1, sym_decorator, - aux_sym__module_type_constraint_with_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4834), 3, + ACTIONS(4462), 7, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - [189166] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(5097), 1, + anon_sym_and, + anon_sym_constraint, anon_sym_PIPE, - STATE(3659), 1, - sym_decorator, - STATE(3661), 1, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1254), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [189193] = 7, + [156188] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5097), 1, - anon_sym_PIPE, - STATE(3660), 1, + ACTIONS(4262), 1, + anon_sym_COLON, + STATE(3005), 1, sym_decorator, - STATE(3661), 1, - aux_sym_variant_type_repeat1, + STATE(3081), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 4, + ACTIONS(1158), 6, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [189220] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(5099), 1, anon_sym_PIPE, - STATE(3661), 2, - sym_decorator, - aux_sym_variant_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(1326), 4, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_as, - [189245] = 8, + [156217] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(5102), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(3662), 1, + STATE(2982), 1, + aux_sym__module_type_constraint_with_repeat1, + STATE(3006), 1, sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4436), 3, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4413), 2, + anon_sym_and, anon_sym_with, - [189274] = 6, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(3663), 1, - sym_decorator, - STATE(3677), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 5, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(4435), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_as, - [189299] = 6, + [156246] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3664), 1, + ACTIONS(4466), 1, + anon_sym_with, + STATE(3007), 1, sym_decorator, - STATE(3677), 1, - aux_sym_variant_type_repeat1, + STATE(3020), 1, + sym__module_type_constraint_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 5, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(4464), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_and, anon_sym_PIPE, - anon_sym_as, - [189324] = 7, + [156275] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5051), 1, - anon_sym_and, - STATE(3665), 1, + ACTIONS(4466), 1, + anon_sym_with, + STATE(3008), 1, sym_decorator, - STATE(3688), 1, - aux_sym_module_declaration_repeat1, + STATE(3020), 1, + sym__module_type_constraint_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5104), 4, + ACTIONS(4441), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_RPAREN, - [189351] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(3666), 1, - sym_decorator, - STATE(3689), 1, - sym_module_binding, - ACTIONS(4133), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - STATE(3512), 2, - sym_type_identifier, - sym_module_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [189380] = 7, + anon_sym_EQ, + anon_sym_and, + anon_sym_PIPE, + [156304] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5051), 1, - anon_sym_and, - STATE(3667), 1, + STATE(3009), 1, sym_decorator, - STATE(3690), 1, - aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5104), 4, + ACTIONS(4292), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - [189407] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4961), 1, - anon_sym_as, - STATE(3214), 1, - sym_as_aliasing, - STATE(3668), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4560), 4, - anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_and, anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - [189434] = 7, + anon_sym_with, + [156329] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4961), 1, - anon_sym_as, - STATE(3222), 1, - sym_as_aliasing, - STATE(3669), 1, + STATE(3010), 1, sym_decorator, + STATE(3018), 1, + aux_sym__module_type_constraint_with_repeat1, + ACTIONS(4437), 2, + anon_sym_and, + anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4478), 4, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - [189461] = 7, + ACTIONS(4411), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + [156358] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5073), 1, - anon_sym_and, - STATE(3670), 1, + ACTIONS(3946), 1, + anon_sym_constraint, + STATE(3011), 1, sym_decorator, - STATE(3694), 1, - aux_sym_type_declaration_repeat1, + STATE(3023), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5075), 4, + ACTIONS(4445), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - [189488] = 8, + anon_sym_and, + [156389] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4038), 1, + ACTIONS(1988), 1, + sym__identifier, + ACTIONS(3691), 1, aux_sym_variant_identifier_token1, - STATE(3665), 1, - sym_module_binding, - STATE(3671), 1, + ACTIONS(4468), 1, + anon_sym_type, + STATE(3012), 1, sym_decorator, - ACTIONS(4133), 2, + STATE(3204), 1, + sym_module_binding, + ACTIONS(2008), 2, aux_sym_type_identifier_token1, sym__escape_identifier, - STATE(3512), 2, + STATE(3154), 2, sym_type_identifier, sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [189517] = 7, + [156424] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5006), 1, - anon_sym_as, - STATE(3214), 1, - sym_as_aliasing, - STATE(3672), 1, + ACTIONS(2345), 1, + sym_regex_flags, + STATE(3013), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4560), 4, - anon_sym_EQ_GT, - anon_sym_PIPE, + ACTIONS(1501), 3, anon_sym_if, anon_sym_when, - [189544] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(5106), 1, anon_sym_as, - STATE(3222), 1, - sym_as_aliasing, - STATE(3673), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4478), 4, + ACTIONS(1503), 4, + anon_sym_COLON, anon_sym_EQ_GT, + anon_sym_DOT_DOT, anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - [189571] = 7, + [156453] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5073), 1, - anon_sym_and, - STATE(3674), 1, + ACTIONS(4466), 1, + anon_sym_with, + ACTIONS(4472), 1, + anon_sym_EQ, + STATE(3014), 1, sym_decorator, - STATE(3696), 1, - aux_sym_type_declaration_repeat1, + STATE(3020), 1, + sym__module_type_constraint_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5075), 4, + ACTIONS(4470), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_RPAREN, - [189598] = 7, + anon_sym_and, + anon_sym_PIPE, + [156484] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5109), 1, - anon_sym_PIPE, - STATE(3675), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + STATE(3002), 1, + aux_sym_type_binding_repeat1, + STATE(3015), 1, sym_decorator, - STATE(3677), 1, - aux_sym_variant_type_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 4, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_as, - [189625] = 7, + ACTIONS(4439), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [156515] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5109), 1, - anon_sym_PIPE, - STATE(3676), 1, + STATE(3016), 1, sym_decorator, - STATE(3677), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 4, + ACTIONS(1232), 8, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_as, - [189652] = 6, + [156540] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5111), 1, - anon_sym_PIPE, - STATE(3677), 2, + ACTIONS(3980), 1, + anon_sym_constraint, + STATE(3002), 1, + aux_sym_type_binding_repeat1, + STATE(3017), 1, sym_decorator, - aux_sym_variant_type_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 4, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_as, - [189677] = 7, + ACTIONS(4375), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [156571] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5051), 1, + ACTIONS(4474), 2, anon_sym_and, - STATE(3667), 1, - aux_sym_module_declaration_repeat1, - STATE(3678), 1, + anon_sym_with, + STATE(3018), 2, sym_decorator, + aux_sym__module_type_constraint_with_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5114), 4, + ACTIONS(4398), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - [189704] = 6, + anon_sym_EQ, + [156598] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3661), 1, - aux_sym_variant_type_repeat1, - STATE(3679), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + STATE(3002), 1, + aux_sym_type_binding_repeat1, + STATE(3019), 1, sym_decorator, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4394), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [189729] = 6, + [156629] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3661), 1, - aux_sym_variant_type_repeat1, - STATE(3680), 1, + STATE(3020), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 5, + ACTIONS(4477), 8, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_EQ, + anon_sym_and, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_as, - [189754] = 7, + anon_sym_with, + [156654] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5073), 1, - anon_sym_and, - STATE(3674), 1, - aux_sym_type_declaration_repeat1, - STATE(3681), 1, + ACTIONS(3946), 1, + anon_sym_constraint, + STATE(3021), 1, sym_decorator, + STATE(3023), 1, + aux_sym_type_binding_repeat1, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5116), 4, + ACTIONS(4479), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - [189781] = 9, + anon_sym_and, + [156685] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - ACTIONS(4872), 1, - anon_sym_EQ, - STATE(3682), 1, + ACTIONS(4282), 1, + anon_sym_as, + STATE(3022), 1, sym_decorator, - STATE(4065), 1, - sym__labeled_parameter_default_value, - STATE(4197), 1, - sym_type_annotation, - ACTIONS(5118), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [189812] = 6, + ACTIONS(1426), 7, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_PIPE, + [156712] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4764), 1, - anon_sym_RPAREN, - STATE(3683), 1, + ACTIONS(4481), 1, + anon_sym_constraint, + STATE(3048), 1, + sym_type_constraint, + STATE(3023), 2, sym_decorator, + aux_sym_type_binding_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1428), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [189837] = 5, + ACTIONS(4453), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [156741] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3684), 1, + ACTIONS(4443), 1, + anon_sym_with, + ACTIONS(4484), 1, + anon_sym_EQ, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3024), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4981), 6, + ACTIONS(4470), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, - anon_sym_PIPE, - [189860] = 8, + [156772] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5120), 1, - anon_sym_GT, - STATE(3685), 1, + ACTIONS(3980), 1, + anon_sym_constraint, + STATE(3002), 1, + aux_sym_type_binding_repeat1, + STATE(3025), 1, sym_decorator, - STATE(4651), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - ACTIONS(5053), 2, - anon_sym_PLUS, - anon_sym_DASH, + STATE(3048), 1, + sym_type_constraint, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [189889] = 6, + ACTIONS(4479), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [156803] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5124), 1, + ACTIONS(2327), 1, + anon_sym_LPAREN, + ACTIONS(4488), 1, anon_sym_EQ, - STATE(3686), 1, + STATE(3026), 1, sym_decorator, + STATE(3186), 1, + sym_variant_parameters, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5122), 5, + ACTIONS(4486), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_PIPE, - [189914] = 7, + [156834] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5051), 1, - anon_sym_and, - STATE(3635), 1, - aux_sym_module_declaration_repeat1, - STATE(3687), 1, + ACTIONS(4443), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3027), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5126), 4, + ACTIONS(4464), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - [189941] = 7, + anon_sym_EQ, + anon_sym_and, + [156863] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5051), 1, - anon_sym_and, - STATE(3688), 1, + ACTIONS(389), 1, + sym__identifier, + ACTIONS(4296), 1, + sym__escape_identifier, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(1638), 1, + sym__reserved_identifier, + STATE(1685), 1, + sym_value_identifier, + STATE(3028), 1, sym_decorator, - STATE(3690), 1, - aux_sym_module_declaration_repeat1, + ACTIONS(4294), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5126), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - [189968] = 5, + [156897] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3689), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4492), 1, + anon_sym_RBRACE, + STATE(3029), 1, sym_decorator, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5128), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_PIPE, - [189991] = 6, + [156931] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5130), 1, - anon_sym_and, - STATE(3690), 2, + STATE(3030), 1, sym_decorator, - aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5128), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1272), 7, anon_sym_RPAREN, - [190016] = 6, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [156955] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4902), 1, - anon_sym_EQ, - STATE(3691), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4494), 1, + anon_sym_RBRACE, + STATE(3031), 1, sym_decorator, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4898), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - [190041] = 9, + [156989] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2520), 1, - anon_sym_LBRACK, - ACTIONS(5133), 1, - anon_sym_DOT, - STATE(1494), 1, - sym_call_arguments, - STATE(3692), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4496), 1, + anon_sym_RBRACE, + STATE(3032), 1, sym_decorator, - ACTIONS(3978), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [190072] = 5, + [157023] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3693), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4498), 1, + anon_sym_RBRACE, + STATE(3033), 1, sym_decorator, + STATE(3686), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4975), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_PIPE, - [190095] = 7, + [157057] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5073), 1, - anon_sym_and, - STATE(3694), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4500), 1, + anon_sym_RBRACE, + STATE(3034), 1, sym_decorator, - STATE(3696), 1, - aux_sym_type_declaration_repeat1, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5079), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - [190122] = 5, + [157091] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3695), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4502), 1, + anon_sym_RBRACE, + STATE(3035), 1, sym_decorator, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5081), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_PIPE, - [190145] = 6, + [157125] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5135), 1, - anon_sym_and, - STATE(3696), 2, + ACTIONS(1240), 1, + anon_sym_EQ_GT, + STATE(3036), 1, sym_decorator, - aux_sym_type_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5081), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1279), 6, anon_sym_RPAREN, - [190170] = 5, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [157151] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3697), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4504), 1, + anon_sym_RBRACE, + STATE(3037), 1, sym_decorator, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5138), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_PIPE, - [190193] = 5, + [157185] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3698), 1, + ACTIONS(13), 1, + sym__identifier, + ACTIONS(4272), 1, + sym__escape_identifier, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(1408), 1, + sym__reserved_identifier, + STATE(1538), 1, + sym_value_identifier, + STATE(3038), 1, sym_decorator, + ACTIONS(4270), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4815), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_PIPE, - [190216] = 7, + [157219] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4910), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3699), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2706), 1, + sym_value_identifier, + STATE(3039), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5140), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - [190243] = 8, + [157253] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(5142), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(3700), 1, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(3040), 1, sym_decorator, + STATE(3283), 1, + sym_module_binding, + STATE(3057), 2, + sym_type_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4436), 3, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_with, - [190272] = 7, + ACTIONS(2008), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [157283] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5146), 1, - anon_sym_and, - STATE(3701), 1, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(3041), 1, sym_decorator, - STATE(3712), 1, - aux_sym_let_declaration_repeat1, + STATE(3237), 1, + sym_module_binding, + STATE(3057), 2, + sym_type_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5144), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - [190299] = 7, + ACTIONS(2008), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [157313] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5148), 1, - anon_sym_and, - STATE(3702), 1, + ACTIONS(13), 1, + sym__identifier, + ACTIONS(4272), 1, + sym__escape_identifier, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(1408), 1, + sym__reserved_identifier, + STATE(1578), 1, + sym_value_identifier, + STATE(3042), 1, sym_decorator, - STATE(3753), 1, - aux_sym_module_declaration_repeat1, + ACTIONS(4270), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5114), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [190326] = 7, + [157347] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5150), 1, - anon_sym_PIPE, - STATE(3534), 1, - aux_sym_variant_type_repeat1, - STATE(3703), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4506), 1, + anon_sym_RBRACE, + STATE(3043), 1, sym_decorator, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 4, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [190353] = 7, + [157381] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5077), 1, - anon_sym_and, - STATE(3646), 1, - aux_sym_type_declaration_repeat1, - STATE(3704), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4508), 1, + anon_sym_RBRACE, + STATE(3044), 1, sym_decorator, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5116), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [190380] = 8, + [157415] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - ACTIONS(5047), 1, - anon_sym_PIPE, - STATE(3238), 1, - sym_type_annotation, - STATE(3705), 1, + ACTIONS(4510), 2, + anon_sym_and, + anon_sym_with, + STATE(3045), 2, sym_decorator, + aux_sym__module_type_constraint_with_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4380), 3, + ACTIONS(4398), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - [190409] = 7, + anon_sym_RPAREN, + [157441] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5077), 1, - anon_sym_and, - STATE(3649), 1, - aux_sym_type_declaration_repeat1, - STATE(3706), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3793), 1, + sym__escape_identifier, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2708), 1, + sym_value_identifier, + STATE(3046), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5075), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [190436] = 7, + [157475] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5152), 1, - anon_sym_and, - STATE(3707), 1, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(3047), 1, sym_decorator, - STATE(3711), 1, - aux_sym_let_declaration_repeat1, + STATE(3284), 1, + sym_module_binding, + STATE(3057), 2, + sym_type_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5144), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [190463] = 7, + ACTIONS(2008), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [157505] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5146), 1, - anon_sym_and, - STATE(3708), 1, + STATE(3048), 1, sym_decorator, - STATE(3715), 1, - aux_sym_let_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5144), 4, + ACTIONS(4513), 7, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - [190490] = 6, + anon_sym_and, + anon_sym_constraint, + anon_sym_PIPE, + [157529] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5156), 1, - anon_sym_EQ, - STATE(3709), 1, + ACTIONS(4517), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3049), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5154), 5, + ACTIONS(4515), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_and, - [190515] = 7, + [157557] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5152), 1, - anon_sym_and, - STATE(3710), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1065), 1, + sym_value_identifier, + STATE(3050), 1, sym_decorator, - STATE(3711), 1, - aux_sym_let_declaration_repeat1, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5158), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [190542] = 6, + [157591] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5162), 1, - anon_sym_and, - STATE(3711), 2, + ACTIONS(4521), 1, + anon_sym_GT, + STATE(3051), 1, sym_decorator, - aux_sym_let_declaration_repeat1, + STATE(3990), 1, + sym_type_identifier, + ACTIONS(4519), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5160), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [190567] = 7, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [157621] = 7, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5146), 1, - anon_sym_and, - STATE(3712), 1, + STATE(3052), 1, sym_decorator, - STATE(3715), 1, - aux_sym_let_declaration_repeat1, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - ACTIONS(5158), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - [190594] = 7, + ACTIONS(1430), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + ACTIONS(1428), 5, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_BSLASH_BQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, + [157649] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5073), 1, - anon_sym_and, - STATE(3643), 1, - aux_sym_type_declaration_repeat1, - STATE(3713), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4523), 1, + anon_sym_RBRACE, + STATE(3053), 1, sym_decorator, + STATE(3787), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5079), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - [190621] = 5, + [157683] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3714), 1, + ACTIONS(2386), 1, + anon_sym_as, + ACTIONS(4196), 1, + anon_sym_DOT_DOT, + STATE(2784), 1, + sym_as_aliasing, + STATE(3054), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5160), 6, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4194), 4, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_and, + anon_sym_COMMA, anon_sym_PIPE, - [190644] = 6, + anon_sym_RBRACK, + [157713] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5165), 1, - anon_sym_and, - STATE(3715), 2, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4525), 1, + anon_sym_RBRACE, + STATE(3055), 1, sym_decorator, - aux_sym_let_declaration_repeat1, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5160), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - [190669] = 9, + [157747] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2516), 1, - anon_sym_LPAREN, - ACTIONS(2518), 1, - anon_sym_DOT, - ACTIONS(2520), 1, - anon_sym_LBRACK, - STATE(1494), 1, - sym_call_arguments, - STATE(3716), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4527), 1, + anon_sym_RBRACE, + STATE(3056), 1, sym_decorator, - ACTIONS(3978), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [190700] = 7, + [157781] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5109), 1, - anon_sym_PIPE, - STATE(3675), 1, - aux_sym_variant_type_repeat1, - STATE(3717), 1, + ACTIONS(4531), 1, + anon_sym_COLON, + ACTIONS(4533), 1, + anon_sym_EQ, + STATE(3057), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 4, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_as, - [190727] = 7, + ACTIONS(4529), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [157809] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5109), 1, - anon_sym_PIPE, - STATE(3676), 1, - aux_sym_variant_type_repeat1, - STATE(3718), 1, + ACTIONS(4298), 1, + anon_sym_COLON, + STATE(3058), 1, sym_decorator, + STATE(3081), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 4, + ACTIONS(1158), 5, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_GT, + anon_sym_PIPE, anon_sym_as, - [190754] = 7, + [157837] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4878), 1, - anon_sym_COLON, - STATE(3575), 1, - sym_type_annotation, - STATE(3719), 1, + STATE(3059), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1250), 4, + ACTIONS(1240), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_as, - [190781] = 8, + [157861] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(5168), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(3720), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4535), 1, + anon_sym_RBRACE, + STATE(3060), 1, sym_decorator, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4436), 3, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_with, - [190810] = 6, + [157895] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4668), 1, - anon_sym_RPAREN, - STATE(3721), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4537), 1, + anon_sym_RBRACE, + STATE(3061), 1, sym_decorator, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1428), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, - [190835] = 5, + [157929] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3722), 1, + STATE(3062), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4983), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1320), 7, anon_sym_RPAREN, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, - [190858] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [157953] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5146), 1, - anon_sym_and, - STATE(3708), 1, - aux_sym_let_declaration_repeat1, - STATE(3723), 1, + STATE(3063), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5170), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1383), 7, anon_sym_RPAREN, - [190885] = 8, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [157977] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5172), 1, - anon_sym_GT, - STATE(3724), 1, + ACTIONS(1389), 1, + anon_sym_EQ_GT, + STATE(3064), 1, sym_decorator, - STATE(4651), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - ACTIONS(5053), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [190914] = 6, + ACTIONS(1387), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158003] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3663), 1, - aux_sym_variant_type_repeat1, - STATE(3725), 1, + STATE(3065), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 5, + ACTIONS(1158), 7, + anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_as, - [190939] = 6, + [158027] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3664), 1, - aux_sym_variant_type_repeat1, - STATE(3726), 1, + STATE(3066), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 5, + ACTIONS(1394), 7, + anon_sym_RPAREN, anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_as, - [190964] = 7, + [158051] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4910), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3727), 1, + ACTIONS(907), 1, + sym__identifier, + ACTIONS(4316), 1, + sym__escape_identifier, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(2398), 1, + sym__reserved_identifier, + STATE(2448), 1, + sym_value_identifier, + STATE(3067), 1, + sym_decorator, + ACTIONS(4314), 2, + anon_sym_unpack, + anon_sym_async, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + [158085] = 7, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(3045), 1, + aux_sym__module_type_constraint_with_repeat1, + STATE(3068), 1, sym_decorator, + ACTIONS(4539), 2, + anon_sym_and, + anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5174), 4, + ACTIONS(4411), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - [190991] = 9, + [158113] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(4052), 1, - anon_sym_DOT_DOT_DOT, - STATE(3728), 1, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(4541), 1, + anon_sym_as, + STATE(2784), 1, + sym_as_aliasing, + STATE(3069), 1, sym_decorator, - STATE(4621), 1, - sym__object_type_member, - STATE(4917), 1, - sym_string, - STATE(4630), 2, - sym_type_spread, - sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [191022] = 8, + ACTIONS(4194), 4, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_when, + [158143] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2639), 1, - anon_sym_as, - STATE(3214), 1, - sym_as_aliasing, - STATE(3729), 1, + STATE(3070), 1, sym_decorator, - ACTIONS(4560), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5176), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [191051] = 7, + ACTIONS(4441), 7, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_PIPE, + [158167] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5097), 1, - anon_sym_PIPE, - STATE(3659), 1, - aux_sym_variant_type_repeat1, - STATE(3730), 1, + STATE(3071), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 4, + ACTIONS(1418), 7, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_as, - [191078] = 7, + [158191] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5097), 1, + STATE(3072), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(1422), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, - STATE(3660), 1, - aux_sym_variant_type_repeat1, - STATE(3731), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158215] = 5, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(3073), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 4, + ACTIONS(1434), 7, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_as, - [191105] = 6, + [158239] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3679), 1, - aux_sym_variant_type_repeat1, - STATE(3732), 1, + ACTIONS(4517), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3074), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(4441), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [158267] = 5, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + STATE(3075), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 5, + ACTIONS(1347), 7, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_as, - [191130] = 6, + [158291] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3680), 1, - aux_sym_variant_type_repeat1, - STATE(3733), 1, + STATE(3076), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 5, + ACTIONS(1359), 7, anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_as, - [191155] = 9, + [158315] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3734), 1, + STATE(3077), 1, sym_decorator, - STATE(4277), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [191186] = 7, + ACTIONS(1363), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158339] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5150), 1, - anon_sym_PIPE, - STATE(3735), 1, + STATE(3078), 1, sym_decorator, - STATE(3760), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 4, + ACTIONS(1205), 7, + anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_if, - anon_sym_when, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_as, - [191213] = 7, + [158363] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5150), 1, - anon_sym_PIPE, - STATE(3703), 1, - aux_sym_variant_type_repeat1, - STATE(3736), 1, + STATE(3079), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 4, + ACTIONS(1426), 7, + anon_sym_RPAREN, anon_sym_EQ_GT, - anon_sym_if, - anon_sym_when, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_as, - [191240] = 7, + [158387] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5152), 1, - anon_sym_and, - STATE(3707), 1, - aux_sym_let_declaration_repeat1, - STATE(3737), 1, + STATE(3080), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5170), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1259), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, - [191267] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158411] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5152), 1, - anon_sym_and, - STATE(3710), 1, - aux_sym_let_declaration_repeat1, - STATE(3738), 1, + STATE(3081), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5144), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1355), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, - [191294] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158435] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5179), 1, - anon_sym_EQ, - STATE(3739), 1, + ACTIONS(907), 1, + sym__identifier, + ACTIONS(4316), 1, + sym__escape_identifier, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(2398), 1, + sym__reserved_identifier, + STATE(2453), 1, + sym_value_identifier, + STATE(3082), 1, sym_decorator, + ACTIONS(4314), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5154), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_PIPE, - [191319] = 7, + [158469] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5148), 1, - anon_sym_and, - STATE(3740), 1, + ACTIONS(4517), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3083), 1, sym_decorator, - STATE(3755), 1, - aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5104), 4, + ACTIONS(4543), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_PIPE, - [191346] = 6, + anon_sym_RPAREN, + anon_sym_and, + [158497] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5181), 1, - anon_sym_PIPE, - STATE(3741), 1, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(4545), 1, + anon_sym_as, + STATE(2784), 1, + sym_as_aliasing, + STATE(3084), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4807), 5, - anon_sym_COLON, + ACTIONS(4194), 4, anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_if, anon_sym_when, - anon_sym_as, - [191371] = 9, + [158527] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, + ACTIONS(389), 1, + sym__identifier, + ACTIONS(4296), 1, sym__escape_identifier, - STATE(1091), 1, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(1638), 1, sym__reserved_identifier, - STATE(3742), 1, - sym_decorator, - STATE(4959), 1, + STATE(1705), 1, sym_value_identifier, - ACTIONS(1199), 2, + STATE(3085), 1, + sym_decorator, + ACTIONS(4294), 2, anon_sym_unpack, anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [191402] = 7, + [158561] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4977), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3743), 1, + ACTIONS(4284), 1, + anon_sym_COLON, + STATE(3081), 1, + sym_type_annotation, + STATE(3086), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5140), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1158), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - [191429] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158589] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4977), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3744), 1, + STATE(3087), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5174), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1268), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, - [191456] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158613] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4910), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3745), 1, + STATE(3088), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5184), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1284), 7, anon_sym_RPAREN, - [191483] = 7, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158637] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4977), 1, - anon_sym_with, - STATE(3435), 1, - sym__module_type_constraint_with, - STATE(3746), 1, + ACTIONS(673), 1, + sym__identifier, + ACTIONS(4304), 1, + sym__escape_identifier, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(802), 1, + sym__reserved_identifier, + STATE(815), 1, + sym_value_identifier, + STATE(3089), 1, sym_decorator, + ACTIONS(4302), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5184), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [191510] = 7, + [158671] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5186), 1, - anon_sym_COLON, - STATE(3238), 1, - sym_type_annotation, - STATE(3747), 1, + STATE(3090), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4380), 4, + ACTIONS(1288), 7, + anon_sym_RPAREN, anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, - anon_sym_if, - anon_sym_when, - [191537] = 9, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158695] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3748), 1, + STATE(3091), 1, sym_decorator, - STATE(4994), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [191568] = 9, + ACTIONS(1292), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158719] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, - sym__escape_identifier, - STATE(1091), 1, - sym__reserved_identifier, - STATE(3749), 1, + STATE(3092), 1, sym_decorator, - STATE(5010), 1, - sym_value_identifier, - ACTIONS(1199), 2, - anon_sym_unpack, - anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [191599] = 9, + ACTIONS(1296), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158743] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(171), 1, - aux_sym_value_identifier_token1, - ACTIONS(2063), 1, + ACTIONS(673), 1, + sym__identifier, + ACTIONS(4304), 1, sym__escape_identifier, - STATE(1091), 1, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(802), 1, sym__reserved_identifier, - STATE(3750), 1, - sym_decorator, - STATE(5027), 1, + STATE(816), 1, sym_value_identifier, - ACTIONS(1199), 2, + STATE(3093), 1, + sym_decorator, + ACTIONS(4302), 2, anon_sym_unpack, anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [191630] = 8, + [158777] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(3751), 1, + STATE(3094), 1, sym_decorator, - STATE(3754), 1, - sym_module_binding, - ACTIONS(4133), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - STATE(3625), 2, - sym_type_identifier, - sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [191659] = 8, + ACTIONS(1300), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158801] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(3689), 1, - sym_module_binding, - STATE(3752), 1, + STATE(3095), 1, sym_decorator, - ACTIONS(4133), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - STATE(3625), 2, - sym_type_identifier, - sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [191688] = 7, + ACTIONS(1312), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158825] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5148), 1, - anon_sym_and, - STATE(3753), 1, + STATE(3096), 1, sym_decorator, - STATE(3756), 1, - aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5104), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1324), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, - [191715] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158849] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5148), 1, - anon_sym_and, - STATE(3754), 1, + STATE(3097), 1, sym_decorator, - STATE(3758), 1, - aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5126), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1328), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, - [191742] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158873] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5148), 1, - anon_sym_and, - STATE(3755), 1, + STATE(3098), 1, sym_decorator, - STATE(3756), 1, - aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5126), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1332), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, - [191769] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158897] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5188), 1, - anon_sym_and, - STATE(3756), 2, + STATE(3099), 1, sym_decorator, - aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5128), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1336), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, - [191794] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158921] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4900), 1, - anon_sym_EQ, - STATE(3757), 1, + STATE(3100), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4898), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_and, + ACTIONS(1371), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, - [191819] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [158945] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5148), 1, - anon_sym_and, - STATE(3756), 1, - aux_sym_module_declaration_repeat1, - STATE(3758), 1, + ACTIONS(4517), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3101), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5049), 4, + ACTIONS(4548), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_PIPE, - [191846] = 8, + anon_sym_RPAREN, + anon_sym_and, + [158973] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(3740), 1, - sym_module_binding, - STATE(3759), 1, + ACTIONS(4550), 1, + anon_sym_GT, + STATE(3102), 1, sym_decorator, - ACTIONS(4133), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - STATE(3625), 2, + STATE(3990), 1, sym_type_identifier, - sym_module_identifier, + ACTIONS(4519), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [191875] = 7, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [159003] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5150), 1, - anon_sym_PIPE, - STATE(3534), 1, - aux_sym_variant_type_repeat1, - STATE(3760), 1, + ACTIONS(1033), 1, + sym__identifier, + ACTIONS(3793), 1, + sym__escape_identifier, + STATE(2572), 1, + sym__reserved_identifier, + STATE(2905), 1, + sym__jsx_attribute_name, + STATE(2907), 1, + sym_value_identifier, + STATE(3103), 1, sym_decorator, + ACTIONS(3785), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 4, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [191902] = 9, + [159037] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(505), 1, - anon_sym_RPAREN, - ACTIONS(5191), 1, - anon_sym_COMMA, - STATE(3761), 1, + ACTIONS(4552), 1, + anon_sym_RBRACE, + STATE(3104), 1, sym_decorator, - STATE(4208), 1, - aux_sym_call_arguments_repeat1, - STATE(4918), 1, - sym_partial_application_spread, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [191932] = 9, + [159071] = 7, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, + STATE(3105), 1, + sym_decorator, + ACTIONS(5), 2, + sym__continuation, + sym_block_comment, + ACTIONS(4556), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + ACTIONS(4554), 5, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_BSLASH_BQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, + [159099] = 10, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(173), 1, anon_sym_DQUOTE, - ACTIONS(5193), 1, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4558), 1, anon_sym_RBRACE, - STATE(3762), 1, + STATE(3106), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, + STATE(3754), 1, + sym__object_type_member, + STATE(4138), 1, sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [191962] = 8, + [159133] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - ACTIONS(5047), 1, - anon_sym_PIPE, - STATE(3763), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4560), 1, + anon_sym_RBRACE, + STATE(3107), 1, sym_decorator, - STATE(4607), 1, - sym_type_annotation, - ACTIONS(5195), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [191990] = 8, + [159167] = 7, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5197), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3764), 1, + STATE(3108), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, + ACTIONS(4564), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + ACTIONS(4562), 5, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_BSLASH_BQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, + [159195] = 7, + ACTIONS(3), 1, sym_line_comment, - [192018] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5199), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3765), 1, + STATE(3109), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + ACTIONS(5), 2, + sym__continuation, + sym_block_comment, + ACTIONS(1138), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + ACTIONS(1143), 5, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_BSLASH_BQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, + [159223] = 10, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4566), 1, + anon_sym_RBRACE, + STATE(3110), 1, + sym_decorator, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192046] = 5, + [159257] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3766), 1, + ACTIONS(4517), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3111), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5201), 5, + ACTIONS(4568), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_PIPE, - [192068] = 8, + anon_sym_and, + [159285] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2136), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5203), 1, - aux_sym_variant_identifier_token1, - STATE(3348), 1, - sym_variant_identifier, - STATE(3767), 1, + ACTIONS(4570), 1, + anon_sym_RBRACE, + STATE(3112), 1, sym_decorator, - STATE(3726), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3857), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192096] = 8, + [159319] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2298), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5205), 1, - aux_sym_variant_identifier_token1, - STATE(1358), 1, - sym_variant_identifier, - STATE(3768), 1, + ACTIONS(4572), 1, + anon_sym_RBRACE, + STATE(3113), 1, sym_decorator, - STATE(1514), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192124] = 9, + [159353] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(475), 1, - anon_sym_RPAREN, - ACTIONS(5207), 1, - anon_sym_COMMA, - STATE(3761), 1, - aux_sym_call_arguments_repeat1, - STATE(3769), 1, + ACTIONS(4574), 1, + anon_sym_GT, + STATE(3114), 1, sym_decorator, - STATE(5003), 1, - sym_partial_application_spread, + STATE(3990), 1, + sym_type_identifier, + ACTIONS(4519), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192154] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [159383] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2272), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5209), 1, - aux_sym_variant_identifier_token1, - STATE(755), 1, - sym_variant_identifier, - STATE(3770), 1, + ACTIONS(4576), 1, + anon_sym_RBRACE, + STATE(3115), 1, sym_decorator, - STATE(810), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192182] = 8, + [159417] = 7, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1549), 1, - sym_variant_identifier, - STATE(3771), 1, + STATE(3116), 1, sym_decorator, - STATE(1696), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [192210] = 8, + ACTIONS(4580), 2, + sym__template_chars, + aux_sym_template_string_content_token1, + ACTIONS(4578), 5, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_BSLASH_BQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, + [159445] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5213), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3772), 1, + ACTIONS(4582), 1, + anon_sym_RPAREN, + ACTIONS(4585), 1, + anon_sym_COLON, + ACTIONS(4588), 1, + anon_sym_COMMA, + STATE(3117), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(4015), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192238] = 8, + ACTIONS(4248), 3, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_with, + [159477] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(2482), 1, - sym_variant_identifier, - STATE(3773), 1, + ACTIONS(4590), 1, + anon_sym_COLON, + STATE(2805), 1, + sym_type_annotation, + STATE(3118), 1, sym_decorator, - STATE(2628), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192266] = 8, + ACTIONS(3972), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [159505] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5217), 1, - aux_sym_variant_identifier_token1, - STATE(1594), 1, - sym_variant_identifier, - STATE(3774), 1, + STATE(3119), 1, sym_decorator, - STATE(1767), 2, - sym_variant_declaration, - sym_variant_type_spread, + ACTIONS(2027), 2, + anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192294] = 8, + ACTIONS(1185), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PIPE, + [159531] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5219), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3775), 1, + ACTIONS(3948), 1, + anon_sym_as, + STATE(3120), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192322] = 9, + ACTIONS(4300), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_with, + [159557] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(481), 1, - anon_sym_RPAREN, - ACTIONS(5221), 1, - anon_sym_COMMA, - STATE(3776), 1, + ACTIONS(4592), 1, + anon_sym_PIPE, + STATE(3121), 1, sym_decorator, - STATE(4208), 1, - aux_sym_call_arguments_repeat1, - STATE(4928), 1, - sym_partial_application_spread, + STATE(3123), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192352] = 8, + ACTIONS(1195), 5, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [159585] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5205), 1, - aux_sym_variant_identifier_token1, - STATE(1358), 1, - sym_variant_identifier, - STATE(3777), 1, + ACTIONS(4592), 1, + anon_sym_PIPE, + STATE(3122), 1, sym_decorator, - STATE(1516), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3123), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192380] = 8, + ACTIONS(1201), 5, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [159613] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5223), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3778), 1, + ACTIONS(4594), 1, + anon_sym_PIPE, + STATE(3123), 2, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192408] = 9, + ACTIONS(1205), 5, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [159639] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(481), 1, - anon_sym_RPAREN, - ACTIONS(5221), 1, - anon_sym_COMMA, - STATE(3779), 1, + STATE(3124), 1, sym_decorator, - STATE(3796), 1, - aux_sym_call_arguments_repeat1, - STATE(4928), 1, - sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192438] = 8, + ACTIONS(1279), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [159663] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5225), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3780), 1, - sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, + ACTIONS(761), 1, + sym__identifier, + ACTIONS(4312), 1, sym__escape_identifier, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(1059), 1, + sym_value_identifier, + STATE(1515), 1, + sym__reserved_identifier, + STATE(3125), 1, + sym_decorator, + ACTIONS(4310), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192466] = 8, + [159697] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5227), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3781), 1, - sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, + ACTIONS(761), 1, + sym__identifier, + ACTIONS(4312), 1, sym__escape_identifier, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(1065), 1, + sym_value_identifier, + STATE(1515), 1, + sym__reserved_identifier, + STATE(3126), 1, + sym_decorator, + ACTIONS(4310), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192494] = 8, + [159731] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5229), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3782), 1, + STATE(3123), 1, + aux_sym_variant_type_repeat1, + STATE(3127), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192522] = 8, + ACTIONS(1195), 6, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [159757] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5231), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3783), 1, + STATE(3123), 1, + aux_sym_variant_type_repeat1, + STATE(3128), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192550] = 8, + ACTIONS(1201), 6, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [159783] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5233), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3784), 1, + STATE(3068), 1, + aux_sym__module_type_constraint_with_repeat1, + STATE(3129), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + ACTIONS(4539), 2, + anon_sym_and, + anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192578] = 8, + ACTIONS(4435), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [159811] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5235), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3785), 1, + STATE(3130), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3131), 1, + aux_sym__module_type_constraint_with_repeat1, + ACTIONS(4597), 2, + anon_sym_and, + anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192606] = 8, + ACTIONS(4411), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [159839] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5237), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3786), 1, + ACTIONS(4599), 2, + anon_sym_and, + anon_sym_with, + STATE(3131), 2, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + aux_sym__module_type_constraint_with_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192634] = 8, + ACTIONS(4398), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [159865] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5239), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3787), 1, + ACTIONS(4602), 1, + anon_sym_COLON, + STATE(2805), 1, + sym_type_annotation, + STATE(3132), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192662] = 8, + ACTIONS(3972), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_as, + [159893] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5241), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3788), 1, + STATE(3133), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192690] = 8, + ACTIONS(4464), 7, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_and, + anon_sym_PIPE, + [159917] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5243), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3789), 1, + ACTIONS(4517), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3134), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192718] = 8, + ACTIONS(4464), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [159945] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5245), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3790), 1, + ACTIONS(4592), 1, + anon_sym_PIPE, + STATE(3121), 1, + aux_sym_variant_type_repeat1, + STATE(3135), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192746] = 9, + ACTIONS(1249), 5, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [159973] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5247), 1, - anon_sym_RBRACE, - STATE(3791), 1, + ACTIONS(4592), 1, + anon_sym_PIPE, + STATE(3122), 1, + aux_sym_variant_type_repeat1, + STATE(3136), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192776] = 8, + ACTIONS(1195), 5, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [160001] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5249), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3792), 1, - sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, sym__escape_identifier, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(1053), 1, + sym__reserved_identifier, + STATE(1059), 1, + sym_value_identifier, + STATE(3137), 1, + sym_decorator, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192804] = 8, + [160035] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5205), 1, - aux_sym_variant_identifier_token1, - STATE(1477), 1, - sym_variant_identifier, - STATE(3793), 1, + STATE(3127), 1, + aux_sym_variant_type_repeat1, + STATE(3138), 1, sym_decorator, - STATE(1590), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192832] = 8, + ACTIONS(1249), 6, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [160061] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1862), 1, - sym_variant_identifier, - STATE(3794), 1, + STATE(3128), 1, + aux_sym_variant_type_repeat1, + STATE(3139), 1, sym_decorator, - STATE(2252), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192860] = 8, + ACTIONS(1195), 6, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [160087] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5251), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3795), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4604), 1, + anon_sym_RBRACE, + STATE(3140), 1, sym_decorator, - STATE(3802), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192888] = 9, + [160121] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(483), 1, - anon_sym_RPAREN, - ACTIONS(5253), 1, - anon_sym_COMMA, - STATE(3796), 1, + ACTIONS(4433), 1, + anon_sym_as, + STATE(2784), 1, + sym_as_aliasing, + STATE(3141), 1, sym_decorator, - STATE(4208), 1, - aux_sym_call_arguments_repeat1, - STATE(5000), 1, - sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192918] = 9, + ACTIONS(4194), 5, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_when, + [160149] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - ACTIONS(5047), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, - anon_sym_RPAREN, - ACTIONS(5258), 1, - anon_sym_COMMA, - STATE(3797), 1, + ACTIONS(4433), 1, + anon_sym_as, + STATE(2834), 1, + sym_as_aliasing, + STATE(3142), 1, sym_decorator, - STATE(4649), 1, - sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192948] = 9, + ACTIONS(4010), 5, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_when, + [160177] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5261), 1, - anon_sym_RBRACE, - STATE(3798), 1, + ACTIONS(4606), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3143), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [192978] = 8, + ACTIONS(4543), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [160205] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(3309), 1, - sym_variant_identifier, - STATE(3799), 1, + ACTIONS(4606), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3144), 1, sym_decorator, - STATE(3434), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193006] = 8, + ACTIONS(4568), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [160233] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1419), 1, - sym_variant_identifier, - STATE(3800), 1, + ACTIONS(4606), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3145), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193034] = 8, + ACTIONS(4515), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [160261] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(2903), 1, - sym_type_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3801), 1, + ACTIONS(4606), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3146), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193062] = 5, + ACTIONS(4548), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [160289] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3802), 1, + ACTIONS(4406), 1, + anon_sym_as, + STATE(2784), 1, + sym_as_aliasing, + STATE(3147), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2525), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - aux_sym_type_identifier_token1, - sym__escape_identifier, - [193084] = 8, + ACTIONS(4194), 5, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_when, + [160317] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5203), 1, - aux_sym_variant_identifier_token1, - STATE(3348), 1, - sym_variant_identifier, - STATE(3803), 1, + ACTIONS(4608), 1, + anon_sym_as, + STATE(2834), 1, + sym_as_aliasing, + STATE(3148), 1, sym_decorator, - STATE(3561), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193112] = 8, + ACTIONS(4010), 5, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_when, + [160345] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5263), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3804), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4611), 1, + anon_sym_RBRACE, + STATE(3149), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3734), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193140] = 9, + [160379] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5265), 1, - anon_sym_RBRACE, - STATE(3805), 1, + STATE(3130), 1, + aux_sym__module_type_constraint_with_repeat1, + STATE(3150), 1, sym_decorator, - STATE(4495), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, + ACTIONS(4597), 2, + anon_sym_and, + anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193170] = 9, + ACTIONS(4435), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [160407] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4670), 1, - anon_sym_COLON, - ACTIONS(5267), 1, - anon_sym_RPAREN, - ACTIONS(5270), 1, + ACTIONS(4606), 1, anon_sym_with, - STATE(3806), 1, - sym_decorator, - STATE(4308), 1, + STATE(3020), 1, sym__module_type_constraint_with, - STATE(4748), 1, - sym_module_type_annotation, + STATE(3151), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193200] = 8, + ACTIONS(4464), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [160435] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5209), 1, - aux_sym_variant_identifier_token1, - STATE(808), 1, - sym_variant_identifier, - STATE(3807), 1, + ACTIONS(4606), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3152), 1, sym_decorator, - STATE(878), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193228] = 8, + ACTIONS(4441), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [160463] = 10, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2272), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5209), 1, - aux_sym_variant_identifier_token1, - STATE(808), 1, - sym_variant_identifier, - STATE(3808), 1, + ACTIONS(4613), 1, + anon_sym_RBRACE, + STATE(3153), 1, sym_decorator, - STATE(830), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3763), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193256] = 7, + [160497] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3809), 1, + ACTIONS(4615), 1, + anon_sym_COLON, + ACTIONS(4617), 1, + anon_sym_EQ, + STATE(3154), 1, sym_decorator, - STATE(4254), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - ACTIONS(5272), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193282] = 8, + ACTIONS(4529), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [160525] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5209), 1, + ACTIONS(3691), 1, aux_sym_variant_identifier_token1, - STATE(846), 1, - sym_variant_identifier, - STATE(3810), 1, + STATE(3155), 1, sym_decorator, - STATE(918), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3307), 1, + sym_module_binding, + STATE(3154), 2, + sym_type_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193310] = 8, + ACTIONS(2008), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [160555] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5203), 1, + ACTIONS(3691), 1, aux_sym_variant_identifier_token1, - STATE(3346), 1, - sym_variant_identifier, - STATE(3811), 1, + STATE(3156), 1, sym_decorator, - STATE(3733), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3237), 1, + sym_module_binding, + STATE(3154), 2, + sym_type_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193338] = 8, + ACTIONS(2008), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [160585] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5209), 1, + ACTIONS(3691), 1, aux_sym_variant_identifier_token1, - STATE(808), 1, - sym_variant_identifier, - STATE(3812), 1, + STATE(3157), 1, sym_decorator, - STATE(882), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3204), 1, + sym_module_binding, + STATE(3154), 2, + sym_type_identifier, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193366] = 8, + ACTIONS(2008), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [160615] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1419), 1, - sym_variant_identifier, - STATE(3813), 1, + STATE(3158), 1, sym_decorator, - STATE(1521), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193394] = 8, + ACTIONS(1351), 7, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [160639] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5217), 1, - aux_sym_variant_identifier_token1, - STATE(1974), 1, - sym_variant_identifier, - STATE(3814), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(3159), 1, sym_decorator, - STATE(2430), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(4330), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193422] = 8, + [160670] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - STATE(2903), 1, + STATE(2517), 1, sym_type_identifier, - STATE(3269), 1, + STATE(2866), 1, sym_module_identifier, - STATE(3815), 1, + STATE(3160), 1, sym_decorator, - ACTIONS(4212), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193450] = 8, + ACTIONS(2183), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [160699] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(3075), 1, - sym_type_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3816), 1, + ACTIONS(4619), 2, + anon_sym_and, + anon_sym_with, + STATE(3161), 2, sym_decorator, - ACTIONS(4133), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + aux_sym__module_type_constraint_with_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193478] = 8, + ACTIONS(4398), 3, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + [160724] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5209), 1, - aux_sym_variant_identifier_token1, - STATE(846), 1, - sym_variant_identifier, - STATE(3817), 1, + ACTIONS(4350), 1, + anon_sym_RPAREN, + STATE(3162), 1, sym_decorator, - STATE(986), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193506] = 8, + ACTIONS(1398), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [160749] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5203), 1, - aux_sym_variant_identifier_token1, - STATE(3470), 1, - sym_variant_identifier, - STATE(3818), 1, + ACTIONS(4624), 1, + anon_sym_and, + STATE(3163), 1, sym_decorator, - STATE(3561), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3169), 1, + aux_sym_type_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193534] = 8, + ACTIONS(4622), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [160776] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5274), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3819), 1, + ACTIONS(4545), 1, + anon_sym_as, + STATE(2784), 1, + sym_as_aliasing, + STATE(3164), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193562] = 7, + ACTIONS(4194), 4, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_when, + [160803] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5276), 1, - anon_sym_PIPE, - STATE(3820), 1, + ACTIONS(4628), 1, + anon_sym_and, + STATE(3165), 1, sym_decorator, - STATE(3875), 1, - aux_sym_variant_type_repeat1, + STATE(3304), 1, + aux_sym_type_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_as, - [193588] = 8, + ACTIONS(4626), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [160830] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1862), 1, - sym_variant_identifier, - STATE(3821), 1, + ACTIONS(4632), 1, + anon_sym_and, + STATE(3166), 1, sym_decorator, - STATE(2277), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3291), 1, + aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193616] = 8, + ACTIONS(4630), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [160857] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1797), 1, - sym_variant_identifier, - STATE(3822), 1, + ACTIONS(4634), 1, + anon_sym_as, + STATE(2834), 1, + sym_as_aliasing, + STATE(3167), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193644] = 5, + ACTIONS(4010), 4, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_when, + [160884] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3823), 1, + STATE(3168), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5278), 5, + ACTIONS(4637), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_and, anon_sym_PIPE, - [193666] = 8, + [160907] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5209), 1, - aux_sym_variant_identifier_token1, - STATE(754), 1, - sym_variant_identifier, - STATE(3824), 1, + ACTIONS(4639), 1, + anon_sym_and, + STATE(3169), 2, sym_decorator, - STATE(778), 2, - sym_variant_declaration, - sym_variant_type_spread, + aux_sym_type_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193694] = 8, + ACTIONS(4637), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [160932] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - ACTIONS(5047), 1, + ACTIONS(4642), 1, anon_sym_PIPE, - STATE(3825), 1, + STATE(3170), 1, sym_decorator, - STATE(4563), 1, - sym_type_annotation, - ACTIONS(5280), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(3173), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193722] = 7, + ACTIONS(1195), 4, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_as, + [160959] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5061), 1, + ACTIONS(2386), 1, anon_sym_as, - STATE(3826), 1, - sym_decorator, - STATE(4522), 1, + STATE(2784), 1, sym_as_aliasing, + STATE(3171), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5057), 3, + ACTIONS(4194), 4, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_RBRACK, - [193748] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5209), 1, - aux_sym_variant_identifier_token1, - STATE(754), 1, - sym_variant_identifier, - STATE(3827), 1, - sym_decorator, - STATE(830), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [193776] = 8, + [160986] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2903), 1, - sym_type_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3828), 1, + ACTIONS(4642), 1, + anon_sym_PIPE, + STATE(3172), 1, sym_decorator, - ACTIONS(4212), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3173), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193804] = 8, + ACTIONS(1201), 4, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_as, + [161013] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5203), 1, - aux_sym_variant_identifier_token1, - STATE(3303), 1, - sym_variant_identifier, - STATE(3829), 1, + ACTIONS(4644), 1, + anon_sym_PIPE, + STATE(3173), 2, sym_decorator, - STATE(3621), 2, - sym_variant_declaration, - sym_variant_type_spread, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193832] = 8, + ACTIONS(1205), 4, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_as, + [161038] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5209), 1, - aux_sym_variant_identifier_token1, - STATE(754), 1, - sym_variant_identifier, - STATE(3830), 1, + ACTIONS(4647), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3174), 1, sym_decorator, - STATE(759), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3249), 1, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193860] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [161067] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - STATE(1797), 1, - sym_variant_identifier, - STATE(3831), 1, + STATE(1490), 1, + sym_type_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(3175), 1, sym_decorator, - STATE(2234), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193888] = 8, + ACTIONS(2241), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [161096] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5217), 1, - aux_sym_variant_identifier_token1, - STATE(1548), 1, - sym_variant_identifier, - STATE(3832), 1, + ACTIONS(225), 1, + anon_sym_COLON, + ACTIONS(4649), 1, + anon_sym_PIPE, + STATE(2805), 1, + sym_type_annotation, + STATE(3176), 1, sym_decorator, - STATE(1671), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193916] = 9, + ACTIONS(3972), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + [161125] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(541), 1, - anon_sym_DQUOTE, - ACTIONS(5282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5284), 1, - aux_sym_polyvar_identifier_token1, - ACTIONS(5286), 1, - anon_sym_BSLASH, - STATE(1107), 1, - sym_string, - STATE(3833), 1, + ACTIONS(4632), 1, + anon_sym_and, + STATE(3177), 1, sym_decorator, + STATE(3248), 1, + aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193946] = 6, + ACTIONS(4651), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [161152] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3834), 1, + ACTIONS(4653), 1, + anon_sym_as, + STATE(2834), 1, + sym_as_aliasing, + STATE(3178), 1, sym_decorator, - STATE(3843), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 4, + ACTIONS(4010), 4, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, - anon_sym_as, - [193970] = 8, + anon_sym_RBRACK, + [161179] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(2903), 1, - sym_type_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3835), 1, + ACTIONS(4658), 1, + anon_sym_and, + STATE(3179), 1, sym_decorator, - ACTIONS(4208), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3235), 1, + aux_sym_let_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [193998] = 8, + ACTIONS(4656), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [161206] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5288), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3836), 1, + STATE(3180), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194026] = 5, + ACTIONS(4660), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_PIPE, + [161229] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3837), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(3181), 1, sym_decorator, + STATE(4066), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5290), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_PIPE, - [194048] = 6, + [161260] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3838), 1, + STATE(3182), 1, sym_decorator, - STATE(3845), 1, + STATE(3193), 1, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 4, + ACTIONS(1195), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_as, - [194072] = 8, + [161285] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5292), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3839), 1, + STATE(3183), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3193), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194100] = 8, + ACTIONS(1201), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [161310] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1578), 1, - sym_type_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3840), 1, + STATE(3184), 1, sym_decorator, - ACTIONS(4220), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194128] = 8, + ACTIONS(4445), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_PIPE, + [161333] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5217), 1, - aux_sym_variant_identifier_token1, - STATE(2183), 1, - sym_variant_identifier, - STATE(3841), 1, + ACTIONS(4624), 1, + anon_sym_and, + STATE(3185), 1, sym_decorator, - STATE(1716), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3238), 1, + aux_sym_type_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194156] = 5, + ACTIONS(4622), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [161360] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3842), 1, + ACTIONS(4664), 1, + anon_sym_EQ, + STATE(3186), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5294), 5, + ACTIONS(4662), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_PIPE, - [194178] = 6, + [161385] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3843), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(767), 1, + sym_type_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(3187), 1, sym_decorator, - STATE(3875), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 4, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, - [194202] = 8, + ACTIONS(3811), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [161414] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(2326), 1, - sym_variant_identifier, - STATE(3844), 1, + ACTIONS(4666), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3188), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3249), 1, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194230] = 6, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [161443] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3845), 1, + ACTIONS(4668), 1, + anon_sym_PIPE, + STATE(3189), 1, sym_decorator, - STATE(3875), 1, + STATE(3193), 1, aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 4, + ACTIONS(1195), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, anon_sym_as, - [194254] = 8, + [161470] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, + ACTIONS(4670), 1, anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(3846), 1, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3190), 1, sym_decorator, - ACTIONS(5296), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, + STATE(3249), 1, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194282] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [161499] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5217), 1, - aux_sym_variant_identifier_token1, - STATE(2183), 1, - sym_variant_identifier, - STATE(3847), 1, + ACTIONS(4668), 1, + anon_sym_PIPE, + STATE(3191), 1, sym_decorator, - STATE(2467), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3193), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194310] = 8, + ACTIONS(1201), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [161526] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - ACTIONS(5047), 1, - anon_sym_PIPE, - STATE(3848), 1, + STATE(3192), 1, sym_decorator, - STATE(4567), 1, - sym_type_annotation, - ACTIONS(5300), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194338] = 8, + ACTIONS(4548), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_PIPE, + [161549] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1774), 1, - sym_variant_identifier, - STATE(3849), 1, + ACTIONS(4672), 1, + anon_sym_PIPE, + STATE(3193), 2, sym_decorator, - STATE(2013), 2, - sym_variant_declaration, - sym_variant_type_spread, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194366] = 9, + ACTIONS(1205), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [161574] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5284), 1, - aux_sym_polyvar_identifier_token1, - ACTIONS(5302), 1, - anon_sym_BSLASH, - STATE(1107), 1, - sym_string, - STATE(3850), 1, + ACTIONS(4624), 1, + anon_sym_and, + STATE(3163), 1, + aux_sym_type_declaration_repeat1, + STATE(3194), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194396] = 7, + ACTIONS(4675), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [161601] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2682), 1, - anon_sym_as, - STATE(3214), 1, - sym_as_aliasing, - STATE(3851), 1, + STATE(3195), 1, sym_decorator, + STATE(3990), 1, + sym_type_identifier, + ACTIONS(4519), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4560), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - [194422] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [161628] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5304), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1312), 1, sym_type_identifier, - STATE(3852), 1, + STATE(2866), 1, + sym_module_identifier, + STATE(3196), 1, sym_decorator, - ACTIONS(4127), 2, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(2165), 3, aux_sym_type_identifier_token1, + sym__identifier, sym__escape_identifier, + [161657] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3197), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194450] = 8, + ACTIONS(4024), 3, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_with, + [161686] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(3707), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(3309), 1, - sym_variant_identifier, - STATE(3853), 1, + STATE(3198), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3973), 1, + sym__object_type_member, + STATE(4138), 1, + sym_string, + STATE(3964), 2, + sym_type_spread, + sym_object_type_field, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194478] = 8, + [161717] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5203), 1, - aux_sym_variant_identifier_token1, - STATE(3470), 1, - sym_variant_identifier, - STATE(3854), 1, + ACTIONS(2397), 1, + anon_sym_as, + STATE(2784), 1, + sym_as_aliasing, + STATE(3199), 1, sym_decorator, - STATE(3901), 2, - sym_variant_declaration, - sym_variant_type_spread, + ACTIONS(4194), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4679), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194506] = 8, + [161746] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(2326), 1, - sym_variant_identifier, - STATE(3855), 1, + ACTIONS(4628), 1, + anon_sym_and, + STATE(3200), 1, sym_decorator, - STATE(2552), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3278), 1, + aux_sym_type_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194534] = 9, + ACTIONS(4682), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [161773] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5306), 1, - anon_sym_RBRACE, - STATE(3856), 1, + ACTIONS(4684), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3201), 1, sym_decorator, - STATE(4251), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, + STATE(3249), 1, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194564] = 7, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [161802] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5276), 1, - anon_sym_PIPE, - STATE(3857), 1, + ACTIONS(4658), 1, + anon_sym_and, + STATE(3179), 1, + aux_sym_let_declaration_repeat1, + STATE(3202), 1, sym_decorator, - STATE(3875), 1, - aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1322), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_as, - [194590] = 8, + ACTIONS(4686), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [161829] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5308), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3858), 1, + ACTIONS(4628), 1, + anon_sym_and, + STATE(3203), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3300), 1, + aux_sym_type_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194618] = 9, + ACTIONS(4675), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [161856] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - ACTIONS(5047), 1, - anon_sym_PIPE, - ACTIONS(5195), 1, - anon_sym_COMMA, - ACTIONS(5310), 1, - anon_sym_RPAREN, - STATE(3859), 1, + ACTIONS(4690), 1, + anon_sym_and, + STATE(3204), 1, sym_decorator, - STATE(4636), 1, - sym_type_annotation, + STATE(3308), 1, + aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194648] = 8, + ACTIONS(4688), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [161883] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1773), 1, - sym_variant_identifier, - STATE(3860), 1, + ACTIONS(4692), 1, + anon_sym_and, + STATE(3205), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3210), 1, + aux_sym_let_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194676] = 8, + ACTIONS(4686), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [161910] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5312), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3861), 1, + ACTIONS(4696), 1, + anon_sym_EQ, + STATE(3206), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194704] = 8, + ACTIONS(4694), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [161935] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(2973), 1, - sym_variant_identifier, - STATE(3862), 1, + sym__decorator_inline, + ACTIONS(4658), 1, + anon_sym_and, + STATE(3207), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3225), 1, + aux_sym_let_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194732] = 7, + ACTIONS(4698), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [161962] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5276), 1, - anon_sym_PIPE, - STATE(3820), 1, - aux_sym_variant_type_repeat1, - STATE(3863), 1, + ACTIONS(2397), 1, + anon_sym_as, + STATE(2784), 1, + sym_as_aliasing, + STATE(3208), 1, sym_decorator, + ACTIONS(4194), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4700), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1318), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_as, - [194758] = 8, + [161991] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5314), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3864), 1, + ACTIONS(4692), 1, + anon_sym_and, + STATE(3209), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3210), 1, + aux_sym_let_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194786] = 9, + ACTIONS(4656), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [162018] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5316), 1, - anon_sym_RBRACE, - STATE(3865), 1, + ACTIONS(4705), 1, + anon_sym_and, + STATE(3210), 2, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, + aux_sym_let_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194816] = 8, + ACTIONS(4703), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [162043] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1774), 1, - sym_variant_identifier, - STATE(3866), 1, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + ACTIONS(4708), 1, + anon_sym_as, + STATE(3211), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194844] = 8, + ACTIONS(1371), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + [162070] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5318), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3867), 1, + STATE(3212), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194872] = 8, + ACTIONS(4703), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_PIPE, + [162093] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(2393), 1, - sym_variant_identifier, - STATE(3868), 1, + ACTIONS(4632), 1, + anon_sym_and, + STATE(3213), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3248), 1, + aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194900] = 8, + ACTIONS(4710), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [162120] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(3122), 1, - sym_variant_identifier, - STATE(3869), 1, + ACTIONS(1436), 1, + anon_sym_EQ_GT, + ACTIONS(4708), 1, + anon_sym_as, + STATE(3214), 1, sym_decorator, - STATE(3364), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194928] = 8, + ACTIONS(1371), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + [162147] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5320), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3870), 1, + STATE(3215), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194956] = 8, + ACTIONS(4568), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_PIPE, + [162170] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5322), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3871), 1, + ACTIONS(4712), 1, + anon_sym_COLON, + STATE(2805), 1, + sym_type_annotation, + STATE(3216), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [194984] = 9, + ACTIONS(3972), 4, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_when, + [162197] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(485), 1, - anon_sym_RPAREN, - ACTIONS(5324), 1, - anon_sym_COMMA, - STATE(3872), 1, + STATE(3173), 1, + aux_sym_variant_type_repeat1, + STATE(3217), 1, sym_decorator, - STATE(3880), 1, - aux_sym_call_arguments_repeat1, - STATE(4749), 1, - sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195014] = 8, + ACTIONS(1195), 5, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_as, + [162222] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(3220), 1, - sym_variant_identifier, - STATE(3873), 1, + STATE(3173), 1, + aux_sym_variant_type_repeat1, + STATE(3218), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195042] = 8, + ACTIONS(1201), 5, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_as, + [162247] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5326), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3874), 1, + ACTIONS(4396), 1, + anon_sym_COLON, + STATE(3081), 1, + sym_type_annotation, + STATE(3219), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195070] = 6, + ACTIONS(1158), 4, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_as, + [162274] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5328), 1, + ACTIONS(4642), 1, anon_sym_PIPE, - STATE(3875), 2, - sym_decorator, + STATE(3170), 1, aux_sym_variant_type_repeat1, + STATE(3220), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1326), 3, + ACTIONS(1249), 4, + anon_sym_EQ_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_as, - [195094] = 8, + [162301] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1376), 1, - sym_variant_identifier, - STATE(3876), 1, + ACTIONS(4642), 1, + anon_sym_PIPE, + STATE(3172), 1, + aux_sym_variant_type_repeat1, + STATE(3221), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195122] = 9, + ACTIONS(1195), 4, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_as, + [162328] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5331), 1, - anon_sym_RBRACE, - STATE(3877), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(3222), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, + STATE(3875), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195152] = 8, + [162359] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1675), 1, - sym_variant_identifier, - STATE(3878), 1, + ACTIONS(4714), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3223), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3249), 1, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195180] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [162388] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(2171), 1, - sym_variant_identifier, - STATE(3879), 1, + ACTIONS(2333), 1, + anon_sym_LPAREN, + ACTIONS(2337), 1, + anon_sym_LBRACK, + ACTIONS(4716), 1, + anon_sym_DOT, + STATE(1085), 1, + sym_call_arguments, + STATE(3224), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, + ACTIONS(3637), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195208] = 9, + [162419] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(487), 1, - anon_sym_RPAREN, - ACTIONS(5333), 1, - anon_sym_COMMA, - STATE(3880), 1, + ACTIONS(4658), 1, + anon_sym_and, + STATE(3225), 1, sym_decorator, - STATE(4208), 1, - aux_sym_call_arguments_repeat1, - STATE(4863), 1, - sym_partial_application_spread, + STATE(3235), 1, + aux_sym_let_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195238] = 8, + ACTIONS(4686), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [162446] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(3349), 1, - sym_variant_identifier, - STATE(3881), 1, + ACTIONS(4718), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3226), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3249), 1, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195266] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [162475] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1862), 1, - sym_variant_identifier, - STATE(3882), 1, + ACTIONS(4624), 1, + anon_sym_and, + STATE(3227), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3234), 1, + aux_sym_type_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195294] = 9, + ACTIONS(4682), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [162502] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(487), 1, - anon_sym_RPAREN, - ACTIONS(5333), 1, - anon_sym_COMMA, - STATE(3883), 1, + STATE(3217), 1, + aux_sym_variant_type_repeat1, + STATE(3228), 1, sym_decorator, - STATE(3890), 1, - aux_sym_call_arguments_repeat1, - STATE(4863), 1, - sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195324] = 7, + ACTIONS(1249), 5, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_as, + [162527] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2682), 1, - anon_sym_as, - STATE(3222), 1, - sym_as_aliasing, - STATE(3884), 1, + STATE(3218), 1, + aux_sym_variant_type_repeat1, + STATE(3229), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4478), 3, - anon_sym_RBRACE, + ACTIONS(1195), 5, + anon_sym_EQ_GT, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, - [195350] = 8, + anon_sym_as, + [162552] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1604), 1, - sym_variant_identifier, - STATE(3885), 1, + ACTIONS(389), 1, + sym__identifier, + ACTIONS(4296), 1, + sym__escape_identifier, + STATE(1638), 1, + sym__reserved_identifier, + STATE(3230), 1, sym_decorator, - STATE(1082), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3484), 1, + sym_value_identifier, + ACTIONS(4294), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195378] = 9, + [162583] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5335), 1, - anon_sym_RBRACE, - STATE(3886), 1, + STATE(3231), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195408] = 8, + ACTIONS(4375), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_PIPE, + [162606] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(2097), 1, - sym_variant_identifier, - STATE(3887), 1, + ACTIONS(4720), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3232), 1, sym_decorator, - STATE(2447), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3249), 1, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195436] = 9, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [162635] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5337), 1, - anon_sym_RBRACE, - STATE(3888), 1, + ACTIONS(4722), 1, + sym__identifier, + ACTIONS(4726), 1, + sym__escape_identifier, + STATE(3052), 1, + sym__reserved_identifier, + STATE(3105), 1, + sym_value_identifier, + STATE(3233), 1, sym_decorator, - STATE(4323), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, + ACTIONS(4724), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195466] = 8, + [162666] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5339), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3889), 1, + ACTIONS(4624), 1, + anon_sym_and, + STATE(3169), 1, + aux_sym_type_declaration_repeat1, + STATE(3234), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195494] = 9, + ACTIONS(4675), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [162693] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(489), 1, - anon_sym_RPAREN, - ACTIONS(5341), 1, - anon_sym_COMMA, - STATE(3890), 1, + ACTIONS(4728), 1, + anon_sym_and, + STATE(3235), 2, sym_decorator, - STATE(4208), 1, - aux_sym_call_arguments_repeat1, - STATE(4899), 1, - sym_partial_application_spread, + aux_sym_let_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195524] = 9, + ACTIONS(4703), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [162718] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4670), 1, - anon_sym_COLON, - ACTIONS(5270), 1, - anon_sym_with, - ACTIONS(5343), 1, - anon_sym_RPAREN, - STATE(3891), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(2517), 1, + sym_type_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(3236), 1, sym_decorator, - STATE(3911), 1, - sym__module_type_constraint_with, - STATE(5073), 1, - sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195554] = 5, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [162747] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3892), 1, + STATE(3237), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5345), 5, + ACTIONS(4731), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_and, anon_sym_PIPE, - [195576] = 9, + [162770] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4670), 1, - anon_sym_COLON, - ACTIONS(5270), 1, - anon_sym_with, - ACTIONS(5347), 1, - anon_sym_RPAREN, - STATE(3893), 1, + ACTIONS(4624), 1, + anon_sym_and, + STATE(3169), 1, + aux_sym_type_declaration_repeat1, + STATE(3238), 1, sym_decorator, - STATE(3911), 1, - sym__module_type_constraint_with, - STATE(4884), 1, - sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195606] = 7, + ACTIONS(4626), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [162797] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5351), 1, - anon_sym_as, - STATE(3894), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(1643), 1, + sym_type_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(3239), 1, sym_decorator, - STATE(4225), 1, - sym_as_aliasing, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5349), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_when, - [195632] = 8, + ACTIONS(2199), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [162826] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - STATE(2973), 1, - sym_variant_identifier, - STATE(3895), 1, + STATE(1542), 1, + sym_type_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(3240), 1, sym_decorator, - STATE(3175), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195660] = 8, + ACTIONS(2153), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [162855] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1549), 1, - sym_variant_identifier, - STATE(3896), 1, + ACTIONS(4733), 1, + anon_sym_EQ, + STATE(3241), 1, sym_decorator, - STATE(1689), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195688] = 8, + ACTIONS(4694), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [162880] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5205), 1, - aux_sym_variant_identifier_token1, - STATE(1477), 1, - sym_variant_identifier, - STATE(3897), 1, + ACTIONS(2491), 1, + anon_sym_as, + ACTIONS(4196), 1, + anon_sym_DOT_DOT, + STATE(2784), 1, + sym_as_aliasing, + STATE(3242), 1, sym_decorator, - STATE(1582), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195716] = 8, + ACTIONS(4194), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + [162909] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5353), 1, - anon_sym_EQ_GT, - ACTIONS(5355), 1, - anon_sym_PIPE, - STATE(3898), 1, + STATE(3243), 1, sym_decorator, - STATE(4789), 1, - sym_guard, - ACTIONS(5357), 2, - anon_sym_if, - anon_sym_when, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195744] = 8, + ACTIONS(4398), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_and, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_with, + [162932] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5359), 1, + ACTIONS(4735), 1, anon_sym_DOT, - STATE(3509), 1, + STATE(2987), 1, aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3899), 1, + STATE(3244), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3249), 1, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195772] = 9, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [162961] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5361), 1, - anon_sym_RBRACE, - STATE(3900), 1, + ACTIONS(4517), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3245), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195802] = 7, + ACTIONS(4737), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [162988] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5276), 1, - anon_sym_PIPE, - STATE(3857), 1, - aux_sym_variant_type_repeat1, - STATE(3901), 1, + STATE(3246), 1, sym_decorator, + STATE(3660), 1, + sym_type_identifier, + ACTIONS(4739), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1254), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_as, - [195828] = 5, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163015] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3902), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(3001), 1, + sym_value_identifier, + STATE(3247), 1, sym_decorator, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4797), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_with, - [195850] = 8, + [163046] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(3122), 1, - sym_variant_identifier, - STATE(3903), 1, + ACTIONS(4741), 1, + anon_sym_and, + STATE(3248), 2, sym_decorator, - STATE(1142), 2, - sym_variant_declaration, - sym_variant_type_spread, + aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195878] = 8, + ACTIONS(4731), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [163071] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1146), 1, - sym_type_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3904), 1, + STATE(3249), 1, sym_decorator, - ACTIONS(4208), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195906] = 9, + ACTIONS(2019), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163094] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5363), 1, - anon_sym_RBRACE, - STATE(3905), 1, + ACTIONS(4484), 1, + anon_sym_EQ, + STATE(3250), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195936] = 8, + ACTIONS(4470), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + [163119] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(2482), 1, - sym_variant_identifier, - STATE(3906), 1, + ACTIONS(4744), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, + sym_type_identifier, + STATE(3251), 1, sym_decorator, - STATE(2651), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [195964] = 7, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163148] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5365), 1, - anon_sym_COLON, - STATE(3238), 1, - sym_type_annotation, - STATE(3907), 1, + ACTIONS(4746), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, + sym_type_identifier, + STATE(3252), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4380), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_PIPE, - [195990] = 9, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163177] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4670), 1, - anon_sym_COLON, - ACTIONS(5270), 1, - anon_sym_with, - ACTIONS(5347), 1, - anon_sym_RPAREN, - STATE(3908), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4748), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3253), 1, sym_decorator, - STATE(4308), 1, - sym__module_type_constraint_with, - STATE(4884), 1, - sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196020] = 8, + ACTIONS(4024), 3, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_with, + [163206] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5203), 1, - aux_sym_variant_identifier_token1, - STATE(3346), 1, - sym_variant_identifier, - STATE(3909), 1, + ACTIONS(4752), 1, + anon_sym_PIPE, + ACTIONS(4754), 1, + anon_sym_as, + STATE(3254), 1, sym_decorator, - STATE(3731), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3898), 1, + sym_as_aliasing, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196048] = 8, + ACTIONS(4750), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + [163235] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5367), 1, + ACTIONS(4756), 1, anon_sym_DOT, - STATE(3509), 1, + STATE(2987), 1, aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, + STATE(3249), 1, sym_type_identifier, - STATE(3910), 1, + STATE(3255), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196076] = 5, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163264] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3911), 1, + ACTIONS(4758), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, + sym_type_identifier, + STATE(3256), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4824), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_with, - [196098] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163293] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(3162), 1, - sym_variant_identifier, - STATE(3912), 1, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, + sym_type_identifier, + STATE(3257), 1, sym_decorator, - STATE(1142), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196126] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163322] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5217), 1, - aux_sym_variant_identifier_token1, - STATE(1594), 1, - sym_variant_identifier, - STATE(3913), 1, + STATE(3258), 1, sym_decorator, - STATE(1709), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3289), 1, + aux_sym__module_type_constraint_with_repeat1, + ACTIONS(4762), 2, + anon_sym_and, + anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196154] = 8, + ACTIONS(4435), 3, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + [163349] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5203), 1, - aux_sym_variant_identifier_token1, - STATE(3470), 1, - sym_variant_identifier, - STATE(3914), 1, + ACTIONS(4668), 1, + anon_sym_PIPE, + STATE(3189), 1, + aux_sym_variant_type_repeat1, + STATE(3259), 1, sym_decorator, - STATE(3838), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196182] = 8, + ACTIONS(1249), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [163376] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5217), 1, - aux_sym_variant_identifier_token1, - STATE(1594), 1, - sym_variant_identifier, - STATE(3915), 1, + ACTIONS(4668), 1, + anon_sym_PIPE, + STATE(3191), 1, + aux_sym_variant_type_repeat1, + STATE(3260), 1, sym_decorator, - STATE(1716), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196210] = 8, + ACTIONS(1195), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [163403] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5369), 1, + ACTIONS(4764), 1, anon_sym_DOT, - STATE(3509), 1, + STATE(2987), 1, aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, + STATE(3249), 1, sym_type_identifier, - STATE(3916), 1, + STATE(3261), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196238] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163432] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5205), 1, - aux_sym_variant_identifier_token1, - STATE(1477), 1, - sym_variant_identifier, - STATE(3917), 1, + STATE(3182), 1, + aux_sym_variant_type_repeat1, + STATE(3262), 1, sym_decorator, - STATE(1612), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196266] = 5, + ACTIONS(1249), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [163457] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3918), 1, + STATE(3183), 1, + aux_sym_variant_type_repeat1, + STATE(3263), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5174), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1195), 5, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - [196288] = 8, + anon_sym_DOT_DOT_DOT, + anon_sym_as, + [163482] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5371), 1, + ACTIONS(2333), 1, + anon_sym_LPAREN, + ACTIONS(2335), 1, anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3919), 1, + ACTIONS(2337), 1, + anon_sym_LBRACK, + STATE(1085), 1, + sym_call_arguments, + STATE(3264), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + ACTIONS(3637), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196316] = 8, + [163513] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1549), 1, - sym_variant_identifier, - STATE(3920), 1, + ACTIONS(4766), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, + sym_type_identifier, + STATE(3265), 1, sym_decorator, - STATE(1142), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196344] = 9, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163542] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(509), 1, - anon_sym_RPAREN, - ACTIONS(5373), 1, - anon_sym_COMMA, - STATE(3921), 1, + ACTIONS(4768), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, + sym_type_identifier, + STATE(3266), 1, sym_decorator, - STATE(4208), 1, - aux_sym_call_arguments_repeat1, - STATE(4746), 1, - sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196374] = 9, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163571] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5375), 1, - anon_sym_RBRACE, - STATE(3922), 1, + ACTIONS(4342), 1, + anon_sym_RPAREN, + STATE(3267), 1, sym_decorator, - STATE(4352), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196404] = 8, + ACTIONS(1398), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, + [163596] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(2903), 1, + ACTIONS(4770), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, sym_type_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3923), 1, + STATE(3268), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196432] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163625] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - ACTIONS(5047), 1, - anon_sym_PIPE, - STATE(3924), 1, + ACTIONS(4772), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, + sym_type_identifier, + STATE(3269), 1, sym_decorator, - STATE(4660), 1, - sym_type_annotation, - ACTIONS(5377), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196460] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163654] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(3122), 1, - sym_variant_identifier, - STATE(3925), 1, + ACTIONS(4774), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, + sym_type_identifier, + STATE(3270), 1, sym_decorator, - STATE(3370), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196488] = 9, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163683] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5379), 1, - anon_sym_RBRACE, - STATE(3926), 1, + ACTIONS(4776), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, + sym_type_identifier, + STATE(3271), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196518] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163712] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(3162), 1, - sym_variant_identifier, - STATE(3927), 1, + ACTIONS(4541), 1, + anon_sym_as, + STATE(2784), 1, + sym_as_aliasing, + STATE(3272), 1, sym_decorator, - STATE(3367), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196546] = 8, + ACTIONS(4194), 4, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_when, + [163739] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5381), 1, + ACTIONS(4778), 1, anon_sym_DOT, - STATE(3509), 1, + STATE(2987), 1, aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, + STATE(3249), 1, sym_type_identifier, - STATE(3928), 1, + STATE(3273), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196574] = 9, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163768] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(515), 1, - anon_sym_RPAREN, - ACTIONS(5383), 1, - anon_sym_COMMA, - STATE(3929), 1, - sym_decorator, - STATE(3960), 1, - aux_sym_call_arguments_repeat1, - STATE(4736), 1, - sym_partial_application_spread, + STATE(3274), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196604] = 8, + ACTIONS(4515), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_PIPE, + [163791] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5385), 1, + ACTIONS(4780), 1, anon_sym_DOT, - STATE(3509), 1, + STATE(2987), 1, aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, + STATE(3249), 1, sym_type_identifier, - STATE(3930), 1, + STATE(3275), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196632] = 9, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163820] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(473), 1, - anon_sym_RPAREN, - ACTIONS(5387), 1, - anon_sym_COMMA, - STATE(3931), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4782), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3276), 1, sym_decorator, - STATE(3938), 1, - aux_sym_call_arguments_repeat1, - STATE(4978), 1, - sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196662] = 9, + ACTIONS(4024), 3, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_with, + [163849] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5389), 1, - anon_sym_RBRACE, - STATE(3932), 1, + ACTIONS(4692), 1, + anon_sym_and, + STATE(3205), 1, + aux_sym_let_declaration_repeat1, + STATE(3277), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196692] = 8, + ACTIONS(4698), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [163876] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(2957), 1, - sym_variant_identifier, - STATE(3933), 1, + ACTIONS(4628), 1, + anon_sym_and, + STATE(3278), 1, sym_decorator, - STATE(3129), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3304), 1, + aux_sym_type_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196720] = 8, + ACTIONS(4675), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [163903] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(3309), 1, - sym_variant_identifier, - STATE(3934), 1, + ACTIONS(4692), 1, + anon_sym_and, + STATE(3209), 1, + aux_sym_let_declaration_repeat1, + STATE(3279), 1, sym_decorator, - STATE(3452), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196748] = 8, + ACTIONS(4686), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [163930] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1806), 1, - sym_variant_identifier, - STATE(3935), 1, + ACTIONS(4784), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, + sym_type_identifier, + STATE(3280), 1, sym_decorator, - STATE(1142), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196776] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [163959] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5203), 1, - aux_sym_variant_identifier_token1, - STATE(3303), 1, - sym_variant_identifier, - STATE(3936), 1, + ACTIONS(4541), 1, + anon_sym_as, + STATE(2834), 1, + sym_as_aliasing, + STATE(3281), 1, sym_decorator, - STATE(3561), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196804] = 9, + ACTIONS(4010), 4, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_when, + [163986] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5391), 1, - anon_sym_RBRACE, - STATE(3937), 1, + ACTIONS(4786), 1, + anon_sym_DOT, + STATE(2987), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, + sym_type_identifier, + STATE(3282), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196834] = 9, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [164015] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(513), 1, - anon_sym_RPAREN, - ACTIONS(5393), 1, - anon_sym_COMMA, - STATE(3938), 1, + ACTIONS(4632), 1, + anon_sym_and, + STATE(3213), 1, + aux_sym_module_declaration_repeat1, + STATE(3283), 1, sym_decorator, - STATE(4208), 1, - aux_sym_call_arguments_repeat1, - STATE(4703), 1, - sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196864] = 9, + ACTIONS(4651), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [164042] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(513), 1, - anon_sym_RPAREN, - ACTIONS(5393), 1, - anon_sym_COMMA, - STATE(3939), 1, + ACTIONS(4632), 1, + anon_sym_and, + STATE(3177), 1, + aux_sym_module_declaration_repeat1, + STATE(3284), 1, sym_decorator, - STATE(3952), 1, - aux_sym_call_arguments_repeat1, - STATE(4703), 1, - sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196894] = 8, + ACTIONS(4688), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [164069] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1818), 1, - sym_variant_identifier, - STATE(3940), 1, + STATE(3285), 1, sym_decorator, - STATE(2364), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3382), 1, + sym__module_type_constraint_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196922] = 8, + ACTIONS(4292), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_with, + [164094] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(2973), 1, - sym_variant_identifier, - STATE(3941), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(3286), 1, sym_decorator, - STATE(3161), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(4202), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196950] = 8, + [164125] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(2453), 1, aux_sym_variant_identifier_token1, - STATE(2393), 1, - sym_variant_identifier, - STATE(3942), 1, + STATE(2741), 1, + sym_type_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(3287), 1, sym_decorator, - STATE(2577), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [196978] = 8, + ACTIONS(2008), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [164154] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5395), 1, + ACTIONS(4788), 1, anon_sym_DOT, - STATE(3509), 1, + STATE(2987), 1, aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, + STATE(3249), 1, sym_type_identifier, - STATE(3943), 1, + STATE(3288), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197006] = 9, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [164183] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5397), 1, - anon_sym_RBRACE, - STATE(3944), 1, + STATE(3161), 1, + aux_sym__module_type_constraint_with_repeat1, + STATE(3289), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, + ACTIONS(4762), 2, + anon_sym_and, + anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197036] = 8, + ACTIONS(4411), 3, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + [164210] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5399), 1, + ACTIONS(4790), 1, anon_sym_DOT, - STATE(3509), 1, + STATE(2987), 1, aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, + STATE(3249), 1, sym_type_identifier, - STATE(3945), 1, + STATE(3290), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197064] = 8, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [164239] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1806), 1, - sym_variant_identifier, - STATE(3946), 1, + ACTIONS(4632), 1, + anon_sym_and, + STATE(3248), 1, + aux_sym_module_declaration_repeat1, + STATE(3291), 1, sym_decorator, - STATE(2355), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197092] = 8, + ACTIONS(4688), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [164266] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1419), 1, - sym_variant_identifier, - STATE(3947), 1, + ACTIONS(4792), 1, + anon_sym_COLON, + ACTIONS(4794), 1, + anon_sym_PIPE, + STATE(2805), 1, + sym_type_annotation, + STATE(3292), 1, sym_decorator, - STATE(1510), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197120] = 8, + ACTIONS(3972), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_when, + [164295] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5203), 1, - aux_sym_variant_identifier_token1, - STATE(3348), 1, - sym_variant_identifier, - STATE(3948), 1, + ACTIONS(225), 1, + anon_sym_COLON, + ACTIONS(4449), 1, + anon_sym_EQ, + STATE(3293), 1, sym_decorator, - STATE(3718), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3613), 1, + sym_type_annotation, + STATE(3631), 1, + sym__labeled_parameter_default_value, + ACTIONS(4796), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197148] = 8, + [164326] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(3159), 1, - sym_variant_identifier, - STATE(3949), 1, + ACTIONS(4798), 1, + anon_sym_PIPE, + STATE(3294), 1, sym_decorator, - STATE(1142), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197176] = 8, + ACTIONS(4381), 5, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [164351] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5217), 1, - aux_sym_variant_identifier_token1, - STATE(1974), 1, - sym_variant_identifier, - STATE(3950), 1, + ACTIONS(4517), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3295), 1, sym_decorator, - STATE(2436), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197204] = 8, + ACTIONS(4801), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [164378] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2252), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5217), 1, - aux_sym_variant_identifier_token1, - STATE(1974), 1, - sym_variant_identifier, - STATE(3951), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(3296), 1, sym_decorator, - STATE(1716), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(4278), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197232] = 9, + [164409] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(477), 1, - anon_sym_RPAREN, - ACTIONS(5401), 1, - anon_sym_COMMA, - STATE(3952), 1, + ACTIONS(4606), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3297), 1, sym_decorator, - STATE(4208), 1, - aux_sym_call_arguments_repeat1, - STATE(4726), 1, - sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197262] = 9, + ACTIONS(4737), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [164436] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4670), 1, - anon_sym_COLON, - ACTIONS(5270), 1, + ACTIONS(4606), 1, anon_sym_with, - ACTIONS(5403), 1, - anon_sym_RPAREN, - STATE(3911), 1, + STATE(3020), 1, sym__module_type_constraint_with, - STATE(3953), 1, + STATE(3298), 1, sym_decorator, - STATE(5018), 1, - sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197292] = 8, + ACTIONS(4801), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [164463] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(3159), 1, - sym_variant_identifier, - STATE(3954), 1, + ACTIONS(4606), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3299), 1, sym_decorator, - STATE(3338), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197320] = 8, + ACTIONS(4803), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [164490] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(3162), 1, - sym_variant_identifier, - STATE(3955), 1, + ACTIONS(4628), 1, + anon_sym_and, + STATE(3300), 1, sym_decorator, - STATE(3344), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3304), 1, + aux_sym_type_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197348] = 8, + ACTIONS(4622), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [164517] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(3349), 1, - sym_variant_identifier, - STATE(3956), 1, + ACTIONS(4690), 1, + anon_sym_and, + STATE(3301), 1, sym_decorator, - STATE(3500), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3306), 1, + aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197376] = 8, + ACTIONS(4630), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [164544] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1442), 1, - sym_variant_identifier, - STATE(3957), 1, + ACTIONS(115), 1, + sym__identifier, + ACTIONS(1941), 1, + sym__escape_identifier, + STATE(1053), 1, + sym__reserved_identifier, + STATE(3302), 1, sym_decorator, - STATE(1142), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(4345), 1, + sym_value_identifier, + ACTIONS(1113), 2, + anon_sym_unpack, + anon_sym_async, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197404] = 8, + [164575] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1806), 1, - sym_variant_identifier, - STATE(3958), 1, + ACTIONS(4517), 1, + anon_sym_with, + STATE(3020), 1, + sym__module_type_constraint_with, + STATE(3303), 1, sym_decorator, - STATE(2390), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197432] = 8, + ACTIONS(4803), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + [164602] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(3220), 1, - sym_variant_identifier, - STATE(3959), 1, + ACTIONS(4805), 1, + anon_sym_and, + STATE(3304), 2, sym_decorator, - STATE(3385), 2, - sym_variant_declaration, - sym_variant_type_spread, + aux_sym_type_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197460] = 9, + ACTIONS(4637), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [164627] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(517), 1, - anon_sym_RPAREN, - ACTIONS(5405), 1, - anon_sym_COMMA, - STATE(3960), 1, + STATE(3305), 1, sym_decorator, - STATE(4208), 1, - aux_sym_call_arguments_repeat1, - STATE(4880), 1, - sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197490] = 9, + ACTIONS(4543), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_PIPE, + [164650] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(517), 1, - anon_sym_RPAREN, - ACTIONS(5405), 1, - anon_sym_COMMA, - STATE(3961), 1, + ACTIONS(4690), 1, + anon_sym_and, + STATE(3306), 1, sym_decorator, - STATE(4010), 1, - aux_sym_call_arguments_repeat1, - STATE(4880), 1, - sym_partial_application_spread, + STATE(3309), 1, + aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197520] = 8, + ACTIONS(4688), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [164677] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1376), 1, - sym_variant_identifier, - STATE(3962), 1, + ACTIONS(4690), 1, + anon_sym_and, + STATE(3307), 1, sym_decorator, - STATE(1501), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3311), 1, + aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197548] = 8, + ACTIONS(4651), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [164704] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1723), 1, - sym_type_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(3963), 1, + ACTIONS(4690), 1, + anon_sym_and, + STATE(3308), 1, sym_decorator, - ACTIONS(4204), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3309), 1, + aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197576] = 8, + ACTIONS(4651), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [164731] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1442), 1, - sym_variant_identifier, - STATE(3964), 1, + ACTIONS(4808), 1, + anon_sym_and, + STATE(3309), 2, sym_decorator, - STATE(1646), 2, - sym_variant_declaration, - sym_variant_type_spread, + aux_sym_module_declaration_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197604] = 9, + ACTIONS(4731), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [164756] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5407), 1, - anon_sym_RBRACE, - STATE(3965), 1, + ACTIONS(4472), 1, + anon_sym_EQ, + STATE(3310), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197634] = 8, + ACTIONS(4470), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_PIPE, + [164781] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1797), 1, - sym_variant_identifier, - STATE(3966), 1, + ACTIONS(4690), 1, + anon_sym_and, + STATE(3309), 1, + aux_sym_module_declaration_repeat1, + STATE(3311), 1, sym_decorator, - STATE(2239), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197662] = 8, + ACTIONS(4710), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [164808] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5203), 1, - aux_sym_variant_identifier_token1, - STATE(3303), 1, - sym_variant_identifier, - STATE(3967), 1, + ACTIONS(4628), 1, + anon_sym_and, + STATE(3165), 1, + aux_sym_type_declaration_repeat1, + STATE(3312), 1, sym_decorator, - STATE(3563), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197690] = 8, + ACTIONS(4622), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [164835] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(3968), 1, + ACTIONS(4649), 1, + anon_sym_PIPE, + STATE(2805), 1, + sym_type_annotation, + STATE(3313), 1, sym_decorator, - ACTIONS(5409), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197718] = 8, + ACTIONS(3972), 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + [164862] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, + ACTIONS(2211), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4811), 1, aux_sym_variant_identifier_token1, - STATE(2957), 1, + STATE(812), 1, sym_variant_identifier, - STATE(3969), 1, + STATE(3314), 1, sym_decorator, - STATE(1142), 2, + STATE(778), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197746] = 8, + [164890] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2252), 1, + ACTIONS(409), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5217), 1, - aux_sym_variant_identifier_token1, - STATE(1548), 1, - sym_variant_identifier, - STATE(3970), 1, + ACTIONS(471), 1, + anon_sym_RPAREN, + ACTIONS(4813), 1, + anon_sym_COMMA, + STATE(3315), 1, sym_decorator, - STATE(1651), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3601), 1, + aux_sym_call_arguments_repeat1, + STATE(4119), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197774] = 8, + [164920] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2252), 1, + ACTIONS(2211), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5217), 1, + ACTIONS(4811), 1, aux_sym_variant_identifier_token1, - STATE(1548), 1, + STATE(720), 1, sym_variant_identifier, - STATE(3971), 1, + STATE(3316), 1, sym_decorator, - STATE(1716), 2, + STATE(778), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197802] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5411), 1, - anon_sym_RBRACE, - STATE(3972), 1, - sym_decorator, - STATE(4439), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [197832] = 8, + [164948] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, + ACTIONS(2235), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4815), 1, aux_sym_variant_identifier_token1, - STATE(2957), 1, + STATE(1417), 1, sym_variant_identifier, - STATE(3973), 1, + STATE(3317), 1, sym_decorator, - STATE(3144), 2, + STATE(1478), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197860] = 8, + [164976] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, + ACTIONS(1622), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4817), 1, aux_sym_variant_identifier_token1, - STATE(3159), 1, + STATE(2613), 1, sym_variant_identifier, - STATE(3974), 1, + STATE(3318), 1, sym_decorator, - STATE(3403), 2, + STATE(2651), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197888] = 8, + [165004] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(3220), 1, - sym_variant_identifier, - STATE(3975), 1, + ACTIONS(225), 1, + anon_sym_COLON, + ACTIONS(4649), 1, + anon_sym_PIPE, + STATE(3319), 1, sym_decorator, - STATE(3392), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3995), 1, + sym_type_annotation, + ACTIONS(4819), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197916] = 8, + [165032] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1818), 1, - sym_variant_identifier, - STATE(3976), 1, + ACTIONS(225), 1, + anon_sym_COLON, + ACTIONS(4649), 1, + anon_sym_PIPE, + ACTIONS(4819), 1, + anon_sym_COMMA, + ACTIONS(4821), 1, + anon_sym_RPAREN, + STATE(3320), 1, sym_decorator, - STATE(1142), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(4040), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197944] = 8, + [165062] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, + ACTIONS(2151), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4823), 1, aux_sym_variant_identifier_token1, - STATE(1445), 1, + STATE(1413), 1, sym_variant_identifier, - STATE(3977), 1, + STATE(3321), 1, sym_decorator, - STATE(1665), 2, + STATE(1247), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [197972] = 8, + [165090] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, + ACTIONS(2163), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(4817), 1, aux_sym_variant_identifier_token1, - STATE(3349), 1, + STATE(1432), 1, sym_variant_identifier, - STATE(3978), 1, + STATE(3322), 1, sym_decorator, - STATE(3736), 2, + STATE(1026), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198000] = 8, + [165118] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1675), 1, - sym_variant_identifier, - STATE(3979), 1, + STATE(2961), 1, + aux_sym_polymorphic_type_repeat1, + STATE(3249), 1, + sym_type_identifier, + STATE(3323), 1, sym_decorator, - STATE(2056), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198028] = 9, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [165144] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, + ACTIONS(173), 1, anon_sym_DQUOTE, - ACTIONS(5413), 1, + ACTIONS(4825), 1, anon_sym_RBRACE, - STATE(3980), 1, + STATE(3324), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, + STATE(3971), 1, sym_object_field, - STATE(4937), 1, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198058] = 8, + [165174] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, + ACTIONS(2211), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4811), 1, aux_sym_variant_identifier_token1, - STATE(1818), 1, + STATE(718), 1, sym_variant_identifier, - STATE(3981), 1, + STATE(3325), 1, sym_decorator, - STATE(2400), 2, + STATE(778), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198086] = 8, + [165202] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(2326), 1, - sym_variant_identifier, - STATE(3982), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(4827), 1, + anon_sym_RBRACE, + STATE(3326), 1, sym_decorator, - STATE(2541), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3696), 1, + sym__object_field, + STATE(3971), 1, + sym_object_field, + STATE(4255), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198114] = 8, + [165232] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, + ACTIONS(2179), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4829), 1, aux_sym_variant_identifier_token1, - STATE(3029), 1, + STATE(2902), 1, sym_variant_identifier, - STATE(3983), 1, + STATE(3327), 1, sym_decorator, - STATE(1142), 2, + STATE(3139), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198142] = 8, + [165260] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, + ACTIONS(2211), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4811), 1, aux_sym_variant_identifier_token1, - STATE(3029), 1, + STATE(718), 1, sym_variant_identifier, - STATE(3984), 1, + STATE(3328), 1, sym_decorator, - STATE(3286), 2, + STATE(748), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198170] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(5415), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(3985), 1, - sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [198198] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(491), 1, - anon_sym_RPAREN, - ACTIONS(5417), 1, - anon_sym_COMMA, - STATE(3986), 1, - sym_decorator, - STATE(4001), 1, - aux_sym_call_arguments_repeat1, - STATE(4868), 1, - sym_partial_application_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [198228] = 8, + [165288] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, + ACTIONS(2151), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4823), 1, aux_sym_variant_identifier_token1, - STATE(3029), 1, + STATE(1413), 1, sym_variant_identifier, - STATE(3987), 1, + STATE(3329), 1, sym_decorator, - STATE(3308), 2, + STATE(1446), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198256] = 8, + [165316] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, + ACTIONS(2193), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4831), 1, aux_sym_variant_identifier_token1, - STATE(1445), 1, + STATE(1458), 1, sym_variant_identifier, - STATE(3988), 1, + STATE(3330), 1, sym_decorator, - STATE(1142), 2, + STATE(1482), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198284] = 8, + [165344] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1442), 1, - sym_variant_identifier, - STATE(3989), 1, + ACTIONS(4833), 1, + anon_sym_PIPE, + STATE(3331), 2, sym_decorator, - STATE(1668), 2, - sym_variant_declaration, - sym_variant_type_spread, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198312] = 8, + ACTIONS(1205), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_as, + [165368] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, + ACTIONS(2163), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(4817), 1, aux_sym_variant_identifier_token1, - STATE(1773), 1, + STATE(1118), 1, sym_variant_identifier, - STATE(3990), 1, + STATE(3332), 1, sym_decorator, - STATE(2060), 2, + STATE(1026), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198340] = 9, + [165396] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, + ACTIONS(173), 1, anon_sym_DQUOTE, - ACTIONS(5419), 1, + ACTIONS(4836), 1, anon_sym_RBRACE, - STATE(3991), 1, + STATE(3333), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, + STATE(3971), 1, sym_object_field, - STATE(4937), 1, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198370] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1445), 1, - sym_variant_identifier, - STATE(3992), 1, - sym_decorator, - STATE(1658), 2, - sym_variant_declaration, - sym_variant_type_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [198398] = 8, + [165426] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1773), 1, - sym_variant_identifier, - STATE(3993), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(4838), 1, + anon_sym_RBRACE, + STATE(3334), 1, sym_decorator, - STATE(2045), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3971), 1, + sym_object_field, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198426] = 8, + [165456] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, + ACTIONS(2000), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4823), 1, aux_sym_variant_identifier_token1, - STATE(3033), 1, + STATE(2552), 1, sym_variant_identifier, - STATE(3994), 1, + STATE(3335), 1, sym_decorator, - STATE(1142), 2, + STATE(2684), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198454] = 8, + [165484] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, + ACTIONS(2045), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4829), 1, aux_sym_variant_identifier_token1, - STATE(3033), 1, + STATE(2976), 1, sym_variant_identifier, - STATE(3995), 1, + STATE(3336), 1, sym_decorator, - STATE(3293), 2, + STATE(3343), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198482] = 8, + [165512] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, + ACTIONS(409), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(3007), 1, - sym_variant_identifier, - STATE(3996), 1, + ACTIONS(477), 1, + anon_sym_RPAREN, + ACTIONS(4840), 1, + anon_sym_COMMA, + STATE(3337), 1, sym_decorator, - STATE(3247), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3350), 1, + aux_sym_call_arguments_repeat1, + STATE(4215), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198510] = 8, + [165542] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1730), 1, - sym_variant_identifier, - STATE(3997), 1, + STATE(3338), 1, sym_decorator, - STATE(1142), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198538] = 8, + ACTIONS(1379), 5, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_as, + [165564] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1730), 1, - sym_variant_identifier, - STATE(3998), 1, + STATE(3339), 1, sym_decorator, - STATE(2281), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198566] = 8, + ACTIONS(1304), 5, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_as, + [165586] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, + ACTIONS(2235), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(4815), 1, aux_sym_variant_identifier_token1, - STATE(2171), 1, + STATE(1426), 1, sym_variant_identifier, - STATE(3999), 1, + STATE(3340), 1, sym_decorator, - STATE(2500), 2, + STATE(1508), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198594] = 8, + [165614] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1730), 1, - sym_variant_identifier, - STATE(4000), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(4842), 1, + anon_sym_RBRACE, + STATE(3341), 1, sym_decorator, - STATE(2259), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3971), 1, + sym_object_field, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198622] = 9, + [165644] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, + ACTIONS(409), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(495), 1, + ACTIONS(465), 1, anon_sym_RPAREN, - ACTIONS(5421), 1, + ACTIONS(4844), 1, anon_sym_COMMA, - STATE(4001), 1, + STATE(3342), 1, sym_decorator, - STATE(4208), 1, + STATE(3601), 1, aux_sym_call_arguments_repeat1, - STATE(4912), 1, + STATE(4220), 1, sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198652] = 9, + [165674] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(495), 1, - anon_sym_RPAREN, - ACTIONS(5421), 1, - anon_sym_COMMA, - STATE(4002), 1, + ACTIONS(4846), 1, + anon_sym_PIPE, + STATE(3343), 1, sym_decorator, - STATE(4016), 1, - aux_sym_call_arguments_repeat1, - STATE(4912), 1, - sym_partial_application_spread, + STATE(3481), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198682] = 8, + ACTIONS(1195), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_as, + [165700] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, + ACTIONS(2000), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(4823), 1, aux_sym_variant_identifier_token1, - STATE(1774), 1, + STATE(2636), 1, sym_variant_identifier, - STATE(4003), 1, + STATE(3344), 1, sym_decorator, - STATE(2052), 2, + STATE(1247), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198710] = 8, + [165728] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(3007), 1, - sym_variant_identifier, - STATE(4004), 1, + STATE(3345), 1, sym_decorator, - STATE(1142), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198738] = 8, + ACTIONS(4024), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_with, + [165750] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, + ACTIONS(2151), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4823), 1, aux_sym_variant_identifier_token1, - STATE(3007), 1, + STATE(1427), 1, sym_variant_identifier, - STATE(4005), 1, + STATE(3346), 1, sym_decorator, - STATE(3202), 2, + STATE(1548), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198766] = 8, + [165778] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2085), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(4848), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(3033), 1, - sym_variant_identifier, - STATE(4006), 1, + ACTIONS(4850), 1, + aux_sym_polyvar_identifier_token1, + ACTIONS(4852), 1, + anon_sym_BSLASH, + STATE(1070), 1, + sym_string, + STATE(3347), 1, sym_decorator, - STATE(3319), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198794] = 8, + [165808] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1378), 1, - sym_variant_identifier, - STATE(4007), 1, + ACTIONS(2491), 1, + anon_sym_as, + STATE(2784), 1, + sym_as_aliasing, + STATE(3348), 1, sym_decorator, - STATE(1142), 2, - sym_variant_declaration, - sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198822] = 9, + ACTIONS(4194), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + [165834] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, + ACTIONS(173), 1, anon_sym_DQUOTE, - ACTIONS(5423), 1, + ACTIONS(4854), 1, anon_sym_RBRACE, - STATE(4008), 1, + STATE(3349), 1, sym_decorator, - STATE(4619), 1, + STATE(3890), 1, sym__object_field, - STATE(4625), 1, + STATE(3971), 1, sym_object_field, - STATE(4937), 1, + STATE(4255), 1, sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198852] = 8, + [165864] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, + ACTIONS(409), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(1378), 1, - sym_variant_identifier, - STATE(4009), 1, + ACTIONS(479), 1, + anon_sym_RPAREN, + ACTIONS(4856), 1, + anon_sym_COMMA, + STATE(3350), 1, sym_decorator, - STATE(1567), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3601), 1, + aux_sym_call_arguments_repeat1, + STATE(4338), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198880] = 9, + [165894] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, + ACTIONS(409), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(519), 1, + ACTIONS(479), 1, anon_sym_RPAREN, - ACTIONS(5425), 1, + ACTIONS(4856), 1, anon_sym_COMMA, - STATE(4010), 1, + STATE(3351), 1, sym_decorator, - STATE(4208), 1, + STATE(3360), 1, aux_sym_call_arguments_repeat1, - STATE(4934), 1, + STATE(4338), 1, sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198910] = 8, + [165924] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(1604), 1, - sym_variant_identifier, - STATE(4011), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(4858), 1, + anon_sym_RBRACE, + STATE(3352), 1, sym_decorator, - STATE(1893), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3971), 1, + sym_object_field, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198938] = 8, + [165954] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, + ACTIONS(2163), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4817), 1, aux_sym_variant_identifier_token1, - STATE(1378), 1, + STATE(1165), 1, sym_variant_identifier, - STATE(4012), 1, + STATE(3353), 1, sym_decorator, - STATE(1554), 2, + STATE(1240), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198966] = 8, + [165982] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, + ACTIONS(4860), 1, + anon_sym_COLON, + STATE(2805), 1, + sym_type_annotation, + STATE(3354), 1, + sym_decorator, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + ACTIONS(3972), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + [166008] = 8, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(2151), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(4823), 1, aux_sym_variant_identifier_token1, - STATE(2393), 1, + STATE(1732), 1, sym_variant_identifier, - STATE(4013), 1, + STATE(3355), 1, sym_decorator, - STATE(2590), 2, + STATE(2111), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [198994] = 8, + [166036] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, + ACTIONS(2151), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(4823), 1, aux_sym_variant_identifier_token1, - STATE(1376), 1, + STATE(1732), 1, sym_variant_identifier, - STATE(4014), 1, + STATE(3356), 1, sym_decorator, - STATE(1503), 2, + STATE(2110), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199022] = 8, + [166064] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, + ACTIONS(2193), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(4831), 1, aux_sym_variant_identifier_token1, - STATE(1675), 1, + STATE(1999), 1, sym_variant_identifier, - STATE(4015), 1, + STATE(3357), 1, sym_decorator, - STATE(2064), 2, + STATE(1659), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199050] = 9, + [166092] = 9, + ACTIONS(7), 1, + sym__decorator, + ACTIONS(9), 1, + sym__decorator_inline, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(4862), 1, + anon_sym_RBRACE, + STATE(3358), 1, + sym_decorator, + STATE(3971), 1, + sym_object_field, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, + sym_string, + ACTIONS(5), 3, + sym__continuation, + sym_block_comment, + sym_line_comment, + [166122] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, + ACTIONS(409), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(497), 1, + ACTIONS(475), 1, anon_sym_RPAREN, - ACTIONS(5427), 1, + ACTIONS(4864), 1, anon_sym_COMMA, - STATE(4016), 1, + STATE(3359), 1, sym_decorator, - STATE(4208), 1, + STATE(3601), 1, aux_sym_call_arguments_repeat1, - STATE(4930), 1, + STATE(4096), 1, sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199080] = 8, + [166152] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, + ACTIONS(409), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, - aux_sym_variant_identifier_token1, - STATE(2171), 1, - sym_variant_identifier, - STATE(4017), 1, + ACTIONS(481), 1, + anon_sym_RPAREN, + ACTIONS(4866), 1, + anon_sym_COMMA, + STATE(3360), 1, sym_decorator, - STATE(2506), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3601), 1, + aux_sym_call_arguments_repeat1, + STATE(4090), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199108] = 8, + [166182] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, + ACTIONS(2045), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(4829), 1, aux_sym_variant_identifier_token1, - STATE(1604), 1, + STATE(2918), 1, sym_variant_identifier, - STATE(4018), 1, + STATE(3361), 1, sym_decorator, - STATE(1895), 2, + STATE(3221), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199136] = 9, + [166210] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5429), 1, - anon_sym_RBRACE, - STATE(4019), 1, + STATE(3362), 1, sym_decorator, - STATE(4342), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199166] = 8, + ACTIONS(4868), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PIPE, + [166232] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, + ACTIONS(1622), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(4817), 1, aux_sym_variant_identifier_token1, - STATE(3109), 1, + STATE(2613), 1, sym_variant_identifier, - STATE(4020), 1, + STATE(3363), 1, sym_decorator, - STATE(3205), 2, + STATE(1026), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199194] = 8, + [166260] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(801), 1, - sym_type_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(4021), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(4870), 1, + anon_sym_RBRACE, + STATE(3364), 1, sym_decorator, - ACTIONS(4192), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3971), 1, + sym_object_field, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199222] = 8, + [166290] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, + ACTIONS(2000), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, + ACTIONS(4823), 1, aux_sym_variant_identifier_token1, - STATE(2097), 1, + STATE(2712), 1, sym_variant_identifier, - STATE(4022), 1, + STATE(3365), 1, sym_decorator, - STATE(1142), 2, + STATE(1247), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199250] = 5, + [166318] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4023), 1, + STATE(3366), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5431), 5, + ACTIONS(4872), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_PIPE, - [199272] = 6, + [166340] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5433), 1, - anon_sym_PIPE, - STATE(4024), 1, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4831), 1, + aux_sym_variant_identifier_token1, + STATE(1502), 1, + sym_variant_identifier, + STATE(3367), 1, sym_decorator, + STATE(1632), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4807), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_as, - [199296] = 8, + [166368] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2316), 1, + ACTIONS(2045), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(4829), 1, aux_sym_variant_identifier_token1, - STATE(2482), 1, + STATE(2918), 1, sym_variant_identifier, - STATE(4025), 1, + STATE(3368), 1, sym_decorator, - STATE(1082), 2, + STATE(3229), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199324] = 8, + [166396] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5436), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(4026), 1, + ACTIONS(2235), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4815), 1, + aux_sym_variant_identifier_token1, + STATE(1417), 1, + sym_variant_identifier, + STATE(3369), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(1463), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199352] = 5, + [166424] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4027), 1, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4811), 1, + aux_sym_variant_identifier_token1, + STATE(720), 1, + sym_variant_identifier, + STATE(3370), 1, sym_decorator, + STATE(782), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4436), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_with, - [199374] = 8, + [166452] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5438), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(4028), 1, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4831), 1, + aux_sym_variant_identifier_token1, + STATE(1502), 1, + sym_variant_identifier, + STATE(3371), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(1659), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199402] = 6, + [166480] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5440), 1, - anon_sym_PIPE, - STATE(4029), 1, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4829), 1, + aux_sym_variant_identifier_token1, + STATE(2976), 1, + sym_variant_identifier, + STATE(3372), 1, sym_decorator, + STATE(3078), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4807), 4, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [199426] = 7, + [166508] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5445), 1, - anon_sym_EQ, - ACTIONS(5447), 1, - anon_sym_QMARK, - STATE(4030), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(5443), 3, + ACTIONS(4344), 1, + anon_sym_COLON, + ACTIONS(4874), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [199452] = 5, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(4031), 1, + ACTIONS(4877), 1, + anon_sym_with, + STATE(3373), 1, sym_decorator, + STATE(3829), 1, + sym__module_type_constraint_with, + STATE(4156), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1385), 5, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, - [199474] = 9, + [166538] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5449), 1, - anon_sym_RBRACE, - STATE(4032), 1, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4811), 1, + aux_sym_variant_identifier_token1, + STATE(720), 1, + sym_variant_identifier, + STATE(3374), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, + STATE(806), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199504] = 8, + [166566] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(1645), 1, - sym_type_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(4033), 1, + ACTIONS(4846), 1, + anon_sym_PIPE, + STATE(3331), 1, + aux_sym_variant_type_repeat1, + STATE(3375), 1, sym_decorator, - ACTIONS(4234), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199532] = 5, + ACTIONS(1195), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_as, + [166592] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4034), 1, + STATE(3376), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1364), 5, + ACTIONS(4427), 5, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_EQ_GT, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_as, - [199554] = 9, + anon_sym_with, + [166614] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(419), 1, + ACTIONS(409), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(505), 1, + ACTIONS(495), 1, anon_sym_RPAREN, - ACTIONS(5191), 1, + ACTIONS(4879), 1, anon_sym_COMMA, - STATE(3921), 1, - aux_sym_call_arguments_repeat1, - STATE(4035), 1, + STATE(3377), 1, sym_decorator, - STATE(4918), 1, + STATE(3395), 1, + aux_sym_call_arguments_repeat1, + STATE(4160), 1, sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199584] = 5, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(4036), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - ACTIONS(4841), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_COMMA, - anon_sym_with, - [199606] = 8, + [166644] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, + ACTIONS(2235), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(4815), 1, aux_sym_variant_identifier_token1, - STATE(3109), 1, + STATE(1426), 1, sym_variant_identifier, - STATE(4037), 1, + STATE(3378), 1, sym_decorator, - STATE(3188), 2, + STATE(1478), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199634] = 8, + [166672] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5451), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4288), 1, anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(4038), 1, - sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [199662] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5453), 1, - anon_sym_RBRACE, - STATE(4039), 1, + STATE(2874), 1, + sym_functor_arguments, + STATE(3379), 1, sym_decorator, - STATE(4322), 1, - sym_dict_entry, - STATE(4432), 1, - sym_dict_pattern_entry, - STATE(4851), 1, - sym_string, + ACTIONS(4881), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199692] = 8, + [166700] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2252), 1, + ACTIONS(2151), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5217), 1, + ACTIONS(4823), 1, aux_sym_variant_identifier_token1, - STATE(2183), 1, + STATE(1427), 1, sym_variant_identifier, - STATE(4040), 1, + STATE(3380), 1, sym_decorator, - STATE(2481), 2, + STATE(1551), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199720] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5455), 1, - anon_sym_RBRACE, - STATE(4041), 1, - sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, - sym_object_field, - STATE(4937), 1, - sym_string, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [199750] = 8, + [166728] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2005), 1, + ACTIONS(1622), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5215), 1, + ACTIONS(4817), 1, aux_sym_variant_identifier_token1, - STATE(3109), 1, + STATE(2513), 1, sym_variant_identifier, - STATE(4042), 1, + STATE(3381), 1, sym_decorator, - STATE(1082), 2, + STATE(2563), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199778] = 9, + [166756] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4670), 1, - anon_sym_COLON, - ACTIONS(5270), 1, - anon_sym_with, - ACTIONS(5343), 1, - anon_sym_RPAREN, - STATE(4043), 1, + STATE(3382), 1, sym_decorator, - STATE(4308), 1, - sym__module_type_constraint_with, - STATE(5073), 1, - sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199808] = 8, + ACTIONS(4477), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_with, + [166778] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2136), 1, + ACTIONS(2000), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5203), 1, + ACTIONS(4823), 1, aux_sym_variant_identifier_token1, - STATE(3346), 1, + STATE(2712), 1, sym_variant_identifier, - STATE(4044), 1, + STATE(3383), 1, sym_decorator, - STATE(3561), 2, + STATE(2863), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199836] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(5457), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(4045), 1, - sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [199864] = 8, + [166806] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5459), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(4046), 1, + STATE(3384), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199892] = 8, + ACTIONS(4883), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PIPE, + [166828] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2272), 1, + ACTIONS(2163), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5209), 1, + ACTIONS(4817), 1, aux_sym_variant_identifier_token1, - STATE(846), 1, + STATE(1165), 1, sym_variant_identifier, - STATE(4047), 1, + STATE(3385), 1, sym_decorator, - STATE(830), 2, + STATE(1289), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199920] = 8, + [166856] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2272), 1, + ACTIONS(2193), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5209), 1, + ACTIONS(4831), 1, aux_sym_variant_identifier_token1, - STATE(755), 1, + STATE(1502), 1, sym_variant_identifier, - STATE(4048), 1, + STATE(3386), 1, sym_decorator, - STATE(800), 2, + STATE(1674), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199948] = 8, + [166884] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2272), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5209), 1, - aux_sym_variant_identifier_token1, - STATE(755), 1, - sym_variant_identifier, - STATE(4049), 1, + ACTIONS(225), 1, + anon_sym_COLON, + ACTIONS(4649), 1, + anon_sym_PIPE, + STATE(3387), 1, sym_decorator, - STATE(830), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(4034), 1, + sym_type_annotation, + ACTIONS(4885), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [199976] = 8, + [166912] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2220), 1, + ACTIONS(409), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(2097), 1, - sym_variant_identifier, - STATE(4050), 1, + ACTIONS(467), 1, + anon_sym_RPAREN, + ACTIONS(4887), 1, + anon_sym_COMMA, + STATE(3388), 1, sym_decorator, - STATE(2463), 2, - sym_variant_declaration, - sym_variant_type_spread, + STATE(3439), 1, + aux_sym_call_arguments_repeat1, + STATE(4288), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200004] = 8, + [166942] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5461), 1, - anon_sym_DOT, - STATE(3509), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(4051), 1, + STATE(3389), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200032] = 9, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(419), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(507), 1, + ACTIONS(4889), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - ACTIONS(5463), 1, - anon_sym_COMMA, - STATE(3776), 1, - aux_sym_call_arguments_repeat1, - STATE(4052), 1, - sym_decorator, - STATE(4758), 1, - sym_partial_application_spread, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [200062] = 8, + anon_sym_PIPE, + [166964] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2298), 1, + ACTIONS(2235), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5205), 1, + ACTIONS(4815), 1, aux_sym_variant_identifier_token1, - STATE(1358), 1, + STATE(1417), 1, sym_variant_identifier, - STATE(4053), 1, + STATE(3390), 1, sym_decorator, - STATE(1582), 2, + STATE(1465), 2, sym_variant_declaration, sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200090] = 7, + [166992] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4054), 1, + ACTIONS(225), 1, + anon_sym_COLON, + ACTIONS(4649), 1, + anon_sym_PIPE, + STATE(3391), 1, sym_decorator, - STATE(4651), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - ACTIONS(5053), 2, - anon_sym_PLUS, - anon_sym_DASH, + STATE(4041), 1, + sym_type_annotation, + ACTIONS(4891), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200116] = 8, + [167020] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5465), 1, - anon_sym_RBRACE, - ACTIONS(5467), 1, - anon_sym_PIPE, - STATE(4055), 1, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + ACTIONS(4893), 1, + anon_sym_as, + STATE(3392), 1, sym_decorator, - STATE(4056), 1, - sym_switch_match, - STATE(4062), 1, - aux_sym_switch_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200143] = 6, + ACTIONS(1371), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [167046] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4056), 1, + ACTIONS(517), 1, + anon_sym_DQUOTE, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4850), 1, + aux_sym_polyvar_identifier_token1, + ACTIONS(4895), 1, + anon_sym_BSLASH, + STATE(1070), 1, + sym_string, + STATE(3393), 1, sym_decorator, - ACTIONS(5469), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5471), 2, - anon_sym_RBRACE, - anon_sym_PIPE, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200166] = 7, + [167076] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5473), 1, - anon_sym_RBRACE, - ACTIONS(5475), 1, - anon_sym_PIPE, - STATE(4056), 1, - sym_switch_match, - STATE(4057), 2, + ACTIONS(2491), 1, + anon_sym_as, + STATE(2834), 1, + sym_as_aliasing, + STATE(3394), 1, sym_decorator, - aux_sym_switch_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200191] = 7, + ACTIONS(4010), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + [167102] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5478), 1, - anon_sym_module, - ACTIONS(5480), 1, - anon_sym_type, - STATE(4058), 1, + ACTIONS(409), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(497), 1, + anon_sym_RPAREN, + ACTIONS(4897), 1, + anon_sym_COMMA, + STATE(3395), 1, sym_decorator, - STATE(3489), 2, - sym_constrain_module, - sym_constrain_type, + STATE(3601), 1, + aux_sym_call_arguments_repeat1, + STATE(4166), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200216] = 8, + [167132] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5482), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(4899), 1, anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4057), 1, - aux_sym_switch_expression_repeat1, - STATE(4059), 1, + STATE(3396), 1, sym_decorator, + STATE(3865), 1, + sym_dict_entry, + STATE(3869), 1, + sym_dict_pattern_entry, + STATE(4195), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200243] = 5, + [167162] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4060), 1, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4823), 1, + aux_sym_variant_identifier_token1, + STATE(2712), 1, + sym_variant_identifier, + STATE(3397), 1, sym_decorator, + STATE(2876), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5484), 4, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_when, - anon_sym_as, - [200264] = 8, + [167190] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5486), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4057), 1, - aux_sym_switch_expression_repeat1, - STATE(4061), 1, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4817), 1, + aux_sym_variant_identifier_token1, + STATE(1471), 1, + sym_variant_identifier, + STATE(3398), 1, sym_decorator, + STATE(1676), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200291] = 8, + [167218] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5488), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4057), 1, - aux_sym_switch_expression_repeat1, - STATE(4062), 1, + ACTIONS(2179), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4829), 1, + aux_sym_variant_identifier_token1, + STATE(2902), 1, + sym_variant_identifier, + STATE(3399), 1, sym_decorator, + STATE(3136), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200318] = 8, + [167246] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5490), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4063), 1, + ACTIONS(2179), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4829), 1, + aux_sym_variant_identifier_token1, + STATE(2902), 1, + sym_variant_identifier, + STATE(3400), 1, sym_decorator, - STATE(4100), 1, - aux_sym_switch_expression_repeat1, + STATE(3078), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200345] = 8, + [167274] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5492), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4061), 1, - aux_sym_switch_expression_repeat1, - STATE(4064), 1, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4811), 1, + aux_sym_variant_identifier_token1, + STATE(812), 1, + sym_variant_identifier, + STATE(3401), 1, sym_decorator, + STATE(991), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200372] = 7, + [167302] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - STATE(4065), 1, + STATE(3402), 1, sym_decorator, - STATE(4612), 1, - sym_type_annotation, - ACTIONS(5494), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(3409), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200397] = 8, + ACTIONS(1249), 4, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_as, + [167326] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5496), 1, - anon_sym_RBRACE, - STATE(4066), 1, + STATE(3403), 1, sym_decorator, - STATE(4586), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, + STATE(3410), 1, + aux_sym_variant_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200424] = 8, + ACTIONS(1195), 4, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_as, + [167350] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, + ACTIONS(173), 1, anon_sym_DQUOTE, - STATE(4067), 1, + ACTIONS(4901), 1, + anon_sym_RBRACE, + STATE(3404), 1, sym_decorator, - STATE(4619), 1, - sym__object_field, - STATE(4625), 1, + STATE(3971), 1, sym_object_field, - STATE(4937), 1, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200451] = 8, + [167380] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5498), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4059), 1, - aux_sym_switch_expression_repeat1, - STATE(4068), 1, + ACTIONS(1436), 1, + anon_sym_EQ_GT, + ACTIONS(4893), 1, + anon_sym_as, + STATE(3405), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200478] = 7, + ACTIONS(1371), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [167406] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5478), 1, - anon_sym_module, - ACTIONS(5500), 1, - anon_sym_type, - STATE(4069), 1, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4831), 1, + aux_sym_variant_identifier_token1, + STATE(1856), 1, + sym_variant_identifier, + STATE(3406), 1, sym_decorator, - STATE(3489), 2, - sym_constrain_module, - sym_constrain_type, + STATE(2119), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200503] = 8, + [167434] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(923), 1, - anon_sym_DQUOTE, - ACTIONS(5502), 1, - aux_sym_polyvar_identifier_token1, - ACTIONS(5504), 1, - anon_sym_BSLASH, - STATE(2050), 1, - sym_string, - STATE(4070), 1, + ACTIONS(225), 1, + anon_sym_COLON, + ACTIONS(4649), 1, + anon_sym_PIPE, + ACTIONS(4903), 1, + anon_sym_RPAREN, + ACTIONS(4906), 1, + anon_sym_COMMA, + STATE(3407), 1, sym_decorator, + STATE(4035), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200530] = 8, - ACTIONS(3), 1, - sym_line_comment, + [167464] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5506), 1, - anon_sym_DQUOTE, - STATE(4071), 1, + ACTIONS(225), 1, + anon_sym_COLON, + ACTIONS(4649), 1, + anon_sym_PIPE, + STATE(3408), 1, sym_decorator, - STATE(4082), 1, - aux_sym_string_repeat1, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - ACTIONS(5508), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [200557] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5510), 1, + STATE(4042), 1, + sym_type_annotation, + ACTIONS(4909), 2, anon_sym_RPAREN, - ACTIONS(5512), 1, anon_sym_COMMA, - STATE(4072), 1, - sym_decorator, - STATE(4412), 1, - aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200584] = 9, - ACTIONS(3), 1, - sym_line_comment, + [167492] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5516), 1, - anon_sym_SQUOTE, - ACTIONS(5518), 1, - aux_sym_character_token1, - STATE(4073), 1, + STATE(3331), 1, + aux_sym_variant_type_repeat1, + STATE(3409), 1, sym_decorator, - STATE(4084), 1, - aux_sym_character_repeat1, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [200613] = 8, + sym_line_comment, + ACTIONS(1195), 4, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_as, + [167516] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5520), 1, - anon_sym_RBRACE, - STATE(4074), 1, + STATE(3331), 1, + aux_sym_variant_type_repeat1, + STATE(3410), 1, sym_decorator, - STATE(4586), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200640] = 8, + ACTIONS(1201), 4, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_as, + [167540] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5522), 1, - anon_sym_RPAREN, - ACTIONS(5525), 1, - anon_sym_COMMA, - STATE(4075), 1, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4817), 1, + aux_sym_variant_identifier_token1, + STATE(1471), 1, + sym_variant_identifier, + STATE(3411), 1, sym_decorator, - STATE(4491), 1, - aux_sym_tuple_type_repeat1, + STATE(1615), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200667] = 8, + [167568] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5528), 1, - anon_sym_RBRACE, - ACTIONS(5530), 1, - anon_sym_COLON, - ACTIONS(5532), 1, - anon_sym_COMMA, - STATE(4076), 1, + ACTIONS(2235), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4815), 1, + aux_sym_variant_identifier_token1, + STATE(1426), 1, + sym_variant_identifier, + STATE(3412), 1, sym_decorator, - STATE(4489), 1, - aux_sym_record_pattern_repeat1, + STATE(1524), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200694] = 8, + [167596] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5534), 1, - anon_sym_RPAREN, - ACTIONS(5536), 1, - anon_sym_COMMA, - STATE(4077), 1, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4817), 1, + aux_sym_variant_identifier_token1, + STATE(1118), 1, + sym_variant_identifier, + STATE(3413), 1, sym_decorator, - STATE(4468), 1, - aux_sym_tuple_type_repeat1, + STATE(1207), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200721] = 8, + [167624] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5538), 1, - anon_sym_RBRACE, - STATE(4078), 1, + ACTIONS(4913), 1, + anon_sym_as, + STATE(3414), 1, sym_decorator, - STATE(4438), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, + STATE(3755), 1, + sym_as_aliasing, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200748] = 6, + ACTIONS(4911), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_when, + [167650] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4079), 1, + ACTIONS(4915), 1, + anon_sym_EQ_GT, + ACTIONS(4917), 1, + anon_sym_PIPE, + STATE(3415), 1, sym_decorator, - ACTIONS(5540), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5542), 2, - anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(4341), 1, + sym_guard, + ACTIONS(4919), 2, + anon_sym_if, + anon_sym_when, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200771] = 8, + [167678] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(541), 1, - anon_sym_DQUOTE, - ACTIONS(5284), 1, - aux_sym_polyvar_identifier_token1, - ACTIONS(5286), 1, - anon_sym_BSLASH, - STATE(1107), 1, - sym_string, - STATE(4080), 1, + ACTIONS(4344), 1, + anon_sym_COLON, + ACTIONS(4877), 1, + anon_sym_with, + ACTIONS(4921), 1, + anon_sym_RPAREN, + STATE(3382), 1, + sym__module_type_constraint_with, + STATE(3416), 1, sym_decorator, + STATE(4193), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200798] = 7, + [167708] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5544), 1, - anon_sym_module, - ACTIONS(5546), 1, - anon_sym_type, - STATE(4081), 1, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4823), 1, + aux_sym_variant_identifier_token1, + STATE(1664), 1, + sym_variant_identifier, + STATE(3417), 1, sym_decorator, - STATE(3657), 2, - sym_constrain_module, - sym_constrain_type, + STATE(2015), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200823] = 8, - ACTIONS(3), 1, - sym_line_comment, + [167736] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5548), 1, - anon_sym_DQUOTE, - STATE(4082), 1, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4829), 1, + aux_sym_variant_identifier_token1, + STATE(2976), 1, + sym_variant_identifier, + STATE(3418), 1, sym_decorator, - STATE(4144), 1, - aux_sym_string_repeat1, - ACTIONS(5), 2, + STATE(3403), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [200850] = 8, + sym_line_comment, + [167764] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, + ACTIONS(173), 1, anon_sym_DQUOTE, - ACTIONS(5550), 1, + ACTIONS(4923), 1, anon_sym_RBRACE, - STATE(4083), 1, + STATE(3419), 1, sym_decorator, - STATE(4659), 1, - sym_dict_pattern_entry, - STATE(4924), 1, + STATE(3866), 1, + sym__object_field, + STATE(3971), 1, + sym_object_field, + STATE(4255), 1, sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200877] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5518), 1, - aux_sym_character_token1, - ACTIONS(5552), 1, - anon_sym_SQUOTE, - STATE(4084), 1, - sym_decorator, - STATE(4165), 1, - aux_sym_character_repeat1, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - [200906] = 7, + [167794] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5544), 1, - anon_sym_module, - ACTIONS(5546), 1, - anon_sym_type, - STATE(4085), 1, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4817), 1, + aux_sym_variant_identifier_token1, + STATE(1432), 1, + sym_variant_identifier, + STATE(3420), 1, sym_decorator, - STATE(3640), 2, - sym_constrain_module, - sym_constrain_type, + STATE(1567), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200931] = 8, + [167822] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5554), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4086), 1, + STATE(3421), 1, sym_decorator, - STATE(4158), 1, - aux_sym_switch_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200958] = 7, + ACTIONS(4925), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PIPE, + [167844] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5270), 1, + ACTIONS(4344), 1, + anon_sym_COLON, + ACTIONS(4877), 1, anon_sym_with, - STATE(3911), 1, + ACTIONS(4927), 1, + anon_sym_RPAREN, + STATE(3382), 1, sym__module_type_constraint_with, - STATE(4087), 1, + STATE(3422), 1, sym_decorator, - ACTIONS(4887), 2, - anon_sym_RPAREN, - anon_sym_COLON, + STATE(4178), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [200983] = 8, + [167874] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5556), 1, - anon_sym_RBRACE, - STATE(4088), 1, + ACTIONS(4754), 1, + anon_sym_as, + STATE(3423), 1, sym_decorator, - STATE(4586), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, + STATE(3898), 1, + sym_as_aliasing, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201010] = 8, + ACTIONS(4750), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + [167900] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(75), 1, + ACTIONS(173), 1, anon_sym_DQUOTE, - ACTIONS(5558), 1, - aux_sym_polyvar_identifier_token1, - ACTIONS(5560), 1, - anon_sym_BSLASH, - STATE(1784), 1, - sym_string, - STATE(4089), 1, + ACTIONS(4929), 1, + anon_sym_RBRACE, + STATE(3424), 1, sym_decorator, + STATE(3879), 1, + sym__object_field, + STATE(3971), 1, + sym_object_field, + STATE(4255), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201037] = 8, - ACTIONS(3), 1, - sym_line_comment, + [167930] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5562), 1, - anon_sym_DQUOTE, - STATE(4090), 1, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4831), 1, + aux_sym_variant_identifier_token1, + STATE(1856), 1, + sym_variant_identifier, + STATE(3425), 1, sym_decorator, - STATE(4193), 1, - aux_sym_string_repeat1, - ACTIONS(5), 2, + STATE(2098), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [201064] = 9, - ACTIONS(3), 1, sym_line_comment, + [167958] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5518), 1, - aux_sym_character_token1, - ACTIONS(5564), 1, - anon_sym_SQUOTE, - STATE(4091), 1, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4811), 1, + aux_sym_variant_identifier_token1, + STATE(759), 1, + sym_variant_identifier, + STATE(3426), 1, sym_decorator, - STATE(4097), 1, - aux_sym_character_repeat1, - ACTIONS(5), 2, + STATE(826), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [201093] = 8, + sym_line_comment, + [167986] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5566), 1, - anon_sym_RPAREN, - ACTIONS(5568), 1, - anon_sym_COMMA, - STATE(4092), 1, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4831), 1, + aux_sym_variant_identifier_token1, + STATE(1856), 1, + sym_variant_identifier, + STATE(3427), 1, sym_decorator, - STATE(4288), 1, - aux_sym_tuple_type_repeat1, + STATE(1659), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201120] = 8, + [168014] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5570), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4093), 1, + ACTIONS(4344), 1, + anon_sym_COLON, + ACTIONS(4877), 1, + anon_sym_with, + ACTIONS(4931), 1, + anon_sym_RPAREN, + STATE(3382), 1, + sym__module_type_constraint_with, + STATE(3428), 1, sym_decorator, - STATE(4111), 1, - aux_sym_switch_expression_repeat1, + STATE(4110), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201147] = 8, + [168044] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4823), 1, aux_sym_variant_identifier_token1, - ACTIONS(5572), 1, - anon_sym_RPAREN, - STATE(4094), 1, + STATE(1427), 1, + sym_variant_identifier, + STATE(3429), 1, sym_decorator, - STATE(4167), 1, - sym_module_identifier, - STATE(4578), 1, - sym_functor_parameter, + STATE(1247), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201174] = 8, + [168072] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5574), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(4933), 1, anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4057), 1, - aux_sym_switch_expression_repeat1, - STATE(4095), 1, + STATE(3430), 1, sym_decorator, + STATE(3971), 1, + sym_object_field, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201201] = 7, + [168102] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5270), 1, + ACTIONS(4344), 1, + anon_sym_COLON, + ACTIONS(4877), 1, anon_sym_with, - STATE(3911), 1, - sym__module_type_constraint_with, - STATE(4096), 1, - sym_decorator, - ACTIONS(4891), 2, + ACTIONS(4921), 1, anon_sym_RPAREN, - anon_sym_COLON, + STATE(3431), 1, + sym_decorator, + STATE(3829), 1, + sym__module_type_constraint_with, + STATE(4193), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201226] = 9, - ACTIONS(3), 1, - sym_line_comment, + [168132] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5518), 1, - aux_sym_character_token1, - ACTIONS(5576), 1, - anon_sym_SQUOTE, - STATE(4097), 1, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4823), 1, + aux_sym_variant_identifier_token1, + STATE(1732), 1, + sym_variant_identifier, + STATE(3432), 1, sym_decorator, - STATE(4165), 1, - aux_sym_character_repeat1, - ACTIONS(5), 2, + STATE(1247), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [201255] = 8, + sym_line_comment, + [168160] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5578), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4098), 1, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4817), 1, + aux_sym_variant_identifier_token1, + STATE(1471), 1, + sym_variant_identifier, + STATE(3433), 1, sym_decorator, - STATE(4198), 1, - aux_sym_switch_expression_repeat1, + STATE(1026), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201282] = 8, + [168188] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5047), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, - anon_sym_COLON, - ACTIONS(5582), 1, - anon_sym_EQ, - STATE(3709), 1, - sym_type_annotation, - STATE(4099), 1, + STATE(3434), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201309] = 8, + ACTIONS(4935), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PIPE, + [168210] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5584), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(4937), 1, anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4057), 1, - aux_sym_switch_expression_repeat1, - STATE(4100), 1, + STATE(3435), 1, sym_decorator, + STATE(3971), 1, + sym_object_field, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201336] = 8, + [168240] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1153), 1, - anon_sym_DQUOTE, - ACTIONS(5586), 1, - aux_sym_polyvar_identifier_token1, - ACTIONS(5588), 1, - anon_sym_BSLASH, - STATE(3105), 1, - sym_string, - STATE(4101), 1, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4823), 1, + aux_sym_variant_identifier_token1, + STATE(1413), 1, + sym_variant_identifier, + STATE(3436), 1, sym_decorator, + STATE(1473), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201363] = 8, + [168268] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5590), 1, - anon_sym_RBRACE, - STATE(4102), 1, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4823), 1, + aux_sym_variant_identifier_token1, + STATE(2636), 1, + sym_variant_identifier, + STATE(3437), 1, sym_decorator, - STATE(4341), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, + STATE(2899), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201390] = 8, - ACTIONS(3), 1, - sym_line_comment, + [168296] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5592), 1, - anon_sym_DQUOTE, - STATE(4103), 1, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4817), 1, + aux_sym_variant_identifier_token1, + STATE(1118), 1, + sym_variant_identifier, + STATE(3438), 1, sym_decorator, - STATE(4115), 1, - aux_sym_string_repeat1, - ACTIONS(5), 2, + STATE(1216), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [201417] = 8, + sym_line_comment, + [168324] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5594), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4104), 1, + ACTIONS(409), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(469), 1, + anon_sym_RPAREN, + ACTIONS(4939), 1, + anon_sym_COMMA, + STATE(3439), 1, sym_decorator, - STATE(4140), 1, - aux_sym_switch_expression_repeat1, + STATE(3601), 1, + aux_sym_call_arguments_repeat1, + STATE(4245), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201444] = 8, + [168354] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5596), 1, - anon_sym_RBRACE, - STATE(4105), 1, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4831), 1, + aux_sym_variant_identifier_token1, + STATE(1458), 1, + sym_variant_identifier, + STATE(3440), 1, sym_decorator, - STATE(4586), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, + STATE(1574), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201471] = 9, - ACTIONS(3), 1, - sym_line_comment, + [168382] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5518), 1, - aux_sym_character_token1, - ACTIONS(5598), 1, - anon_sym_SQUOTE, - STATE(4106), 1, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4811), 1, + aux_sym_variant_identifier_token1, + STATE(718), 1, + sym_variant_identifier, + STATE(3441), 1, sym_decorator, - STATE(4116), 1, - aux_sym_character_repeat1, - ACTIONS(5), 2, + STATE(746), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [201500] = 8, + sym_line_comment, + [168410] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5600), 1, - anon_sym_RBRACE, - STATE(4107), 1, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4831), 1, + aux_sym_variant_identifier_token1, + STATE(1458), 1, + sym_variant_identifier, + STATE(3442), 1, sym_decorator, - STATE(4351), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, + STATE(1659), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201527] = 8, + [168438] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5602), 1, + ACTIONS(409), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(461), 1, anon_sym_RPAREN, - ACTIONS(5604), 1, + ACTIONS(4941), 1, anon_sym_COMMA, - STATE(4108), 1, + STATE(3443), 1, sym_decorator, - STATE(4478), 1, - aux_sym_tuple_type_repeat1, + STATE(3461), 1, + aux_sym_call_arguments_repeat1, + STATE(4311), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201554] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5518), 1, - aux_sym_character_token1, - ACTIONS(5606), 1, - anon_sym_SQUOTE, - STATE(4109), 1, - sym_decorator, - STATE(4194), 1, - aux_sym_character_repeat1, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - [201583] = 8, + [168468] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5608), 1, - anon_sym_RPAREN, - ACTIONS(5611), 1, - anon_sym_COMMA, - STATE(4110), 1, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4823), 1, + aux_sym_variant_identifier_token1, + STATE(2552), 1, + sym_variant_identifier, + STATE(3444), 1, sym_decorator, - STATE(4294), 1, - aux_sym_tuple_type_repeat1, + STATE(1247), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201610] = 8, + [168496] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4057), 1, - aux_sym_switch_expression_repeat1, - STATE(4111), 1, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4823), 1, + aux_sym_variant_identifier_token1, + STATE(1664), 1, + sym_variant_identifier, + STATE(3445), 1, sym_decorator, + STATE(1247), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201637] = 8, + [168524] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4112), 1, + ACTIONS(409), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(469), 1, + anon_sym_RPAREN, + ACTIONS(4939), 1, + anon_sym_COMMA, + STATE(3315), 1, + aux_sym_call_arguments_repeat1, + STATE(3446), 1, sym_decorator, - STATE(4137), 1, - aux_sym_switch_expression_repeat1, + STATE(4245), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201664] = 6, + [168554] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4113), 1, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4823), 1, + aux_sym_variant_identifier_token1, + STATE(2636), 1, + sym_variant_identifier, + STATE(3447), 1, sym_decorator, - ACTIONS(5618), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5621), 2, - anon_sym_RBRACE, - anon_sym_PIPE, + STATE(2861), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201687] = 8, + [168582] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, + ACTIONS(173), 1, anon_sym_DQUOTE, - ACTIONS(5623), 1, + ACTIONS(4943), 1, anon_sym_RBRACE, - STATE(4114), 1, + STATE(3448), 1, sym_decorator, - STATE(4436), 1, - sym_dict_entry, - STATE(4816), 1, + STATE(3971), 1, + sym_object_field, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201714] = 8, - ACTIONS(3), 1, - sym_line_comment, + [168612] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5625), 1, - anon_sym_DQUOTE, - STATE(4115), 1, + STATE(3449), 1, sym_decorator, - STATE(4144), 1, - aux_sym_string_repeat1, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [201741] = 9, - ACTIONS(3), 1, sym_line_comment, + ACTIONS(4801), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PIPE, + [168634] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5518), 1, - aux_sym_character_token1, - ACTIONS(5627), 1, - anon_sym_SQUOTE, - STATE(4116), 1, + STATE(3450), 1, sym_decorator, - STATE(4165), 1, - aux_sym_character_repeat1, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [201770] = 8, + sym_line_comment, + ACTIONS(4292), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_with, + [168656] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5629), 1, + ACTIONS(409), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(487), 1, anon_sym_RPAREN, - ACTIONS(5632), 1, + ACTIONS(4945), 1, anon_sym_COMMA, - STATE(4117), 1, + STATE(3451), 1, sym_decorator, - STATE(4485), 1, - aux_sym_tuple_type_repeat1, + STATE(3475), 1, + aux_sym_call_arguments_repeat1, + STATE(4375), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201797] = 7, + [168686] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5478), 1, - anon_sym_module, - ACTIONS(5635), 1, - anon_sym_type, - STATE(4118), 1, + ACTIONS(4947), 1, + anon_sym_PIPE, + STATE(3452), 1, sym_decorator, - STATE(3489), 2, - sym_constrain_module, - sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201822] = 8, + ACTIONS(4381), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_as, + [168710] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(837), 1, + ACTIONS(173), 1, anon_sym_DQUOTE, - ACTIONS(5637), 1, - aux_sym_polyvar_identifier_token1, - ACTIONS(5639), 1, - anon_sym_BSLASH, - STATE(957), 1, - sym_string, - STATE(4119), 1, + ACTIONS(4950), 1, + anon_sym_RBRACE, + STATE(3453), 1, sym_decorator, + STATE(3971), 1, + sym_object_field, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201849] = 5, + [168740] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4120), 1, + ACTIONS(4846), 1, + anon_sym_PIPE, + STATE(3375), 1, + aux_sym_variant_type_repeat1, + STATE(3454), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5641), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [201870] = 6, + ACTIONS(1249), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_as, + [168766] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4121), 1, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4817), 1, + aux_sym_variant_identifier_token1, + STATE(2513), 1, + sym_variant_identifier, + STATE(3455), 1, sym_decorator, - ACTIONS(5643), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5646), 2, - anon_sym_RBRACE, - anon_sym_PIPE, + STATE(2561), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201893] = 7, + [168794] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5544), 1, - anon_sym_module, - ACTIONS(5648), 1, - anon_sym_type, - STATE(4122), 1, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4817), 1, + aux_sym_variant_identifier_token1, + STATE(2513), 1, + sym_variant_identifier, + STATE(3456), 1, sym_decorator, - STATE(4162), 2, - sym_constrain_module, - sym_constrain_type, + STATE(1026), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201918] = 8, + [168822] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, + ACTIONS(173), 1, anon_sym_DQUOTE, - ACTIONS(5650), 1, + ACTIONS(4952), 1, anon_sym_RBRACE, - STATE(4123), 1, + STATE(3457), 1, sym_decorator, - STATE(4586), 1, - sym_dict_entry, - STATE(4816), 1, + STATE(3908), 1, + sym__object_field, + STATE(3971), 1, + sym_object_field, + STATE(4255), 1, sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201945] = 8, + [168852] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5652), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4124), 1, + ACTIONS(2045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4829), 1, + aux_sym_variant_identifier_token1, + STATE(2918), 1, + sym_variant_identifier, + STATE(3458), 1, sym_decorator, - STATE(4141), 1, - aux_sym_switch_expression_repeat1, + STATE(3078), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201972] = 8, + [168880] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5654), 1, - anon_sym_COMMA, - ACTIONS(5656), 1, - anon_sym_GT, - ACTIONS(5658), 1, - anon_sym_as, - STATE(4125), 1, + ACTIONS(1622), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4817), 1, + aux_sym_variant_identifier_token1, + STATE(2613), 1, + sym_variant_identifier, + STATE(3459), 1, sym_decorator, - STATE(4503), 1, - aux_sym_tuple_type_repeat1, + STATE(2635), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [201999] = 8, - ACTIONS(3), 1, - sym_line_comment, + [168908] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5660), 1, - anon_sym_DQUOTE, - STATE(4126), 1, + ACTIONS(2000), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4823), 1, + aux_sym_variant_identifier_token1, + STATE(2552), 1, + sym_variant_identifier, + STATE(3460), 1, sym_decorator, - STATE(4185), 1, - aux_sym_string_repeat1, - ACTIONS(5), 2, + STATE(2679), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [202026] = 9, - ACTIONS(3), 1, sym_line_comment, + [168936] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5518), 1, - aux_sym_character_token1, - ACTIONS(5662), 1, - anon_sym_SQUOTE, - STATE(4127), 1, + ACTIONS(409), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(463), 1, + anon_sym_RPAREN, + ACTIONS(4954), 1, + anon_sym_COMMA, + STATE(3461), 1, sym_decorator, - STATE(4186), 1, - aux_sym_character_repeat1, - ACTIONS(5), 2, + STATE(3601), 1, + aux_sym_call_arguments_repeat1, + STATE(4303), 1, + sym_partial_application_spread, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [202055] = 8, + sym_line_comment, + [168966] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4104), 1, - anon_sym_RBRACE, - ACTIONS(5059), 1, - anon_sym_PIPE, - ACTIONS(5664), 1, + ACTIONS(409), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(463), 1, + anon_sym_RPAREN, + ACTIONS(4954), 1, anon_sym_COMMA, - STATE(4128), 1, + STATE(3342), 1, + aux_sym_call_arguments_repeat1, + STATE(3462), 1, sym_decorator, - STATE(4316), 1, - aux_sym_record_pattern_repeat1, + STATE(4303), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202082] = 8, + [168996] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5666), 1, - anon_sym_RBRACE, - STATE(4129), 1, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4831), 1, + aux_sym_variant_identifier_token1, + STATE(1999), 1, + sym_variant_identifier, + STATE(3463), 1, sym_decorator, - STATE(4586), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, + STATE(2151), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202109] = 7, + [169024] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5544), 1, - anon_sym_module, - ACTIONS(5648), 1, - anon_sym_type, - STATE(4130), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(4956), 1, + anon_sym_RBRACE, + STATE(3464), 1, sym_decorator, - STATE(3657), 2, - sym_constrain_module, - sym_constrain_type, + STATE(3971), 1, + sym_object_field, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202134] = 5, + [169054] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4131), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4288), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3465), 1, sym_decorator, + ACTIONS(4958), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5668), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [202155] = 8, + [169082] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5670), 1, - anon_sym_RBRACE, - ACTIONS(5673), 1, - anon_sym_COLON, - ACTIONS(5675), 1, - anon_sym_COMMA, - STATE(4132), 1, + ACTIONS(4960), 1, + anon_sym_PIPE, + STATE(3466), 1, sym_decorator, - STATE(4260), 1, - aux_sym_record_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202182] = 8, + ACTIONS(4381), 4, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_when, + anon_sym_as, + [169106] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5678), 1, - anon_sym_RBRACE, - STATE(4133), 1, + ACTIONS(409), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(491), 1, + anon_sym_RPAREN, + ACTIONS(4963), 1, + anon_sym_COMMA, + STATE(3467), 1, sym_decorator, - STATE(4586), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, + STATE(3601), 1, + aux_sym_call_arguments_repeat1, + STATE(4226), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202209] = 8, + [169136] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5680), 1, - anon_sym_RBRACE, - STATE(4134), 1, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4817), 1, + aux_sym_variant_identifier_token1, + STATE(1165), 1, + sym_variant_identifier, + STATE(3468), 1, sym_decorator, - STATE(4586), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, + STATE(1026), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202236] = 8, + [169164] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, + ACTIONS(173), 1, anon_sym_DQUOTE, - ACTIONS(5682), 1, + ACTIONS(4965), 1, anon_sym_RBRACE, - STATE(4135), 1, + STATE(3469), 1, sym_decorator, - STATE(4250), 1, - sym_dict_entry, - STATE(4816), 1, + STATE(3971), 1, + sym_object_field, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202263] = 8, + [169194] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5684), 1, - anon_sym_RPAREN, - ACTIONS(5686), 1, - anon_sym_COMMA, - STATE(4136), 1, + ACTIONS(2179), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4829), 1, + aux_sym_variant_identifier_token1, + STATE(2911), 1, + sym_variant_identifier, + STATE(3470), 1, sym_decorator, - STATE(4388), 1, - aux_sym_tuple_type_repeat1, + STATE(3260), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202290] = 8, + [169222] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5688), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4057), 1, - aux_sym_switch_expression_repeat1, - STATE(4137), 1, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4811), 1, + aux_sym_variant_identifier_token1, + STATE(759), 1, + sym_variant_identifier, + STATE(3471), 1, sym_decorator, + STATE(778), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202317] = 8, - ACTIONS(3), 1, - sym_line_comment, + [169250] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5690), 1, - anon_sym_DQUOTE, - STATE(4138), 1, + ACTIONS(409), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(497), 1, + anon_sym_RPAREN, + ACTIONS(4897), 1, + anon_sym_COMMA, + STATE(3359), 1, + aux_sym_call_arguments_repeat1, + STATE(3472), 1, sym_decorator, - STATE(4209), 1, - aux_sym_string_repeat1, - ACTIONS(5), 2, + STATE(4166), 1, + sym_partial_application_spread, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [202344] = 8, + sym_line_comment, + [169280] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5692), 1, - anon_sym_RBRACE, - STATE(4139), 1, + ACTIONS(2179), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4829), 1, + aux_sym_variant_identifier_token1, + STATE(2911), 1, + sym_variant_identifier, + STATE(3473), 1, sym_decorator, - STATE(4586), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, + STATE(3078), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202371] = 8, + [169308] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5694), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4057), 1, - aux_sym_switch_expression_repeat1, - STATE(4140), 1, + ACTIONS(2193), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4831), 1, + aux_sym_variant_identifier_token1, + STATE(1999), 1, + sym_variant_identifier, + STATE(3474), 1, sym_decorator, + STATE(2159), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202398] = 8, + [169336] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5696), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4057), 1, - aux_sym_switch_expression_repeat1, - STATE(4141), 1, + ACTIONS(409), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(489), 1, + anon_sym_RPAREN, + ACTIONS(4967), 1, + anon_sym_COMMA, + STATE(3475), 1, sym_decorator, + STATE(3601), 1, + aux_sym_call_arguments_repeat1, + STATE(4310), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202425] = 8, + [169366] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5698), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4142), 1, + ACTIONS(409), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(489), 1, + anon_sym_RPAREN, + ACTIONS(4967), 1, + anon_sym_COMMA, + STATE(3467), 1, + aux_sym_call_arguments_repeat1, + STATE(3476), 1, sym_decorator, - STATE(4175), 1, - aux_sym_switch_expression_repeat1, + STATE(4310), 1, + sym_partial_application_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202452] = 5, + [169396] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4143), 1, + ACTIONS(4344), 1, + anon_sym_COLON, + ACTIONS(4877), 1, + anon_sym_with, + ACTIONS(4927), 1, + anon_sym_RPAREN, + STATE(3477), 1, sym_decorator, + STATE(3829), 1, + sym__module_type_constraint_with, + STATE(4178), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2741), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_as, - [202473] = 7, - ACTIONS(3), 1, - sym_line_comment, + [169426] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5700), 1, - anon_sym_DQUOTE, - ACTIONS(5), 2, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4811), 1, + aux_sym_variant_identifier_token1, + STATE(812), 1, + sym_variant_identifier, + STATE(3478), 1, + sym_decorator, + STATE(889), 2, + sym_variant_declaration, + sym_variant_type_spread, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5702), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - STATE(4144), 2, - sym_decorator, - aux_sym_string_repeat1, - [202498] = 8, + sym_line_comment, + [169454] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5705), 1, - anon_sym_RPAREN, - ACTIONS(5708), 1, - anon_sym_COMMA, - STATE(4145), 1, + ACTIONS(2179), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4829), 1, + aux_sym_variant_identifier_token1, + STATE(2911), 1, + sym_variant_identifier, + STATE(3479), 1, sym_decorator, - STATE(4300), 1, - aux_sym_tuple_type_repeat1, + STATE(3263), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202525] = 8, + [169482] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5711), 1, - anon_sym_RPAREN, - ACTIONS(5714), 1, - anon_sym_COMMA, - STATE(4146), 1, + ACTIONS(2211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4811), 1, + aux_sym_variant_identifier_token1, + STATE(759), 1, + sym_variant_identifier, + STATE(3480), 1, sym_decorator, - STATE(4394), 1, - aux_sym_tuple_type_repeat1, + STATE(828), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202552] = 8, + [169510] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5717), 1, - anon_sym_RBRACE, - STATE(4147), 1, + ACTIONS(4846), 1, + anon_sym_PIPE, + STATE(3331), 1, + aux_sym_variant_type_repeat1, + STATE(3481), 1, sym_decorator, - STATE(4322), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202579] = 8, + ACTIONS(1201), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_as, + [169536] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, - anon_sym_RBRACE, - STATE(4148), 1, + ACTIONS(2151), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4823), 1, + aux_sym_variant_identifier_token1, + STATE(1664), 1, + sym_variant_identifier, + STATE(3482), 1, sym_decorator, - STATE(4586), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, + STATE(2032), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202606] = 7, + [169564] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5721), 1, - anon_sym_LPAREN, - STATE(4149), 1, + ACTIONS(2163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4817), 1, + aux_sym_variant_identifier_token1, + STATE(1432), 1, + sym_variant_identifier, + STATE(3483), 1, sym_decorator, - STATE(4643), 1, - sym_polyvar_parameters, - ACTIONS(5723), 2, - anon_sym_PIPE, - anon_sym_RBRACK, + STATE(1561), 2, + sym_variant_declaration, + sym_variant_type_spread, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202631] = 8, - ACTIONS(3), 1, - sym_line_comment, + [169592] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5725), 1, - anon_sym_DQUOTE, - STATE(4150), 1, + ACTIONS(4971), 1, + anon_sym_EQ, + ACTIONS(4973), 1, + anon_sym_QMARK, + STATE(3484), 1, sym_decorator, - STATE(4160), 1, - aux_sym_string_repeat1, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [202658] = 8, + sym_line_comment, + ACTIONS(4969), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + [169618] = 9, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5047), 1, - anon_sym_PIPE, - ACTIONS(5727), 1, - anon_sym_COLON, - ACTIONS(5729), 1, - anon_sym_EQ, - STATE(3739), 1, - sym_type_annotation, - STATE(4151), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(4975), 1, + anon_sym_RBRACE, + STATE(3485), 1, sym_decorator, + STATE(3971), 1, + sym_object_field, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202685] = 9, - ACTIONS(3), 1, - sym_line_comment, + [169648] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5518), 1, - aux_sym_character_token1, - ACTIONS(5731), 1, - anon_sym_SQUOTE, - STATE(4152), 1, + STATE(3075), 1, + sym_type_identifier, + STATE(3486), 1, sym_decorator, - STATE(4161), 1, - aux_sym_character_repeat1, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [202714] = 7, + sym_line_comment, + ACTIONS(2183), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [169671] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5733), 1, - anon_sym_EQ, - STATE(4153), 1, + STATE(3487), 1, sym_decorator, - STATE(4544), 1, - sym__labeled_parameter_default_value, - ACTIONS(5118), 2, + ACTIONS(4977), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4979), 2, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202739] = 7, + [169694] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5478), 1, - anon_sym_module, - ACTIONS(5480), 1, - anon_sym_type, - STATE(4154), 1, + STATE(3488), 1, sym_decorator, - STATE(3473), 2, - sym_constrain_module, - sym_constrain_type, + ACTIONS(4981), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4983), 2, + anon_sym_RBRACE, + anon_sym_PIPE, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202764] = 6, + [169717] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5737), 1, - anon_sym_COMMA, - ACTIONS(5735), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - STATE(4155), 2, + ACTIONS(4344), 1, + anon_sym_COLON, + STATE(3489), 1, sym_decorator, - aux_sym_array_pattern_repeat1, + STATE(4015), 1, + sym_module_type_annotation, + ACTIONS(4588), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202787] = 8, + [169742] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5658), 1, - anon_sym_as, - ACTIONS(5740), 1, - anon_sym_COMMA, - ACTIONS(5742), 1, - anon_sym_GT, - STATE(4156), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(4985), 1, + anon_sym_RPAREN, + STATE(3489), 1, + sym_module_identifier, + STATE(3490), 1, sym_decorator, - STATE(4306), 1, - aux_sym_tuple_type_repeat1, + STATE(4052), 1, + sym_functor_parameter, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202814] = 8, - ACTIONS(3), 1, - sym_line_comment, + [169769] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5744), 1, - anon_sym_DQUOTE, - STATE(4144), 1, - aux_sym_string_repeat1, - STATE(4157), 1, + ACTIONS(4987), 1, + anon_sym_COMMA, + ACTIONS(4989), 1, + anon_sym_GT, + ACTIONS(4991), 1, + anon_sym_as, + STATE(3491), 1, sym_decorator, - ACTIONS(5), 2, + STATE(3773), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [202841] = 8, + sym_line_comment, + [169796] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5746), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4057), 1, - aux_sym_switch_expression_repeat1, - STATE(4158), 1, + ACTIONS(4991), 1, + anon_sym_as, + ACTIONS(4993), 1, + anon_sym_COMMA, + ACTIONS(4995), 1, + anon_sym_GT, + STATE(3492), 1, sym_decorator, + STATE(3741), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202868] = 7, + [169823] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5270), 1, - anon_sym_with, - STATE(3911), 1, - sym__module_type_constraint_with, - STATE(4159), 1, + ACTIONS(4915), 1, + anon_sym_EQ_GT, + STATE(3493), 1, sym_decorator, - ACTIONS(5748), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(4341), 1, + sym_guard, + ACTIONS(4919), 2, + anon_sym_if, + anon_sym_when, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202893] = 8, - ACTIONS(3), 1, - sym_line_comment, + [169848] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5750), 1, + ACTIONS(517), 1, anon_sym_DQUOTE, - STATE(4144), 1, - aux_sym_string_repeat1, - STATE(4160), 1, + ACTIONS(4850), 1, + aux_sym_polyvar_identifier_token1, + ACTIONS(4895), 1, + anon_sym_BSLASH, + STATE(1070), 1, + sym_string, + STATE(3494), 1, sym_decorator, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [202920] = 9, - ACTIONS(3), 1, sym_line_comment, + [169875] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5518), 1, - aux_sym_character_token1, - ACTIONS(5752), 1, - anon_sym_SQUOTE, - STATE(4161), 1, + STATE(3495), 1, sym_decorator, - STATE(4165), 1, - aux_sym_character_repeat1, - ACTIONS(5), 2, + STATE(3766), 1, + sym_type_identifier, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [202949] = 7, + sym_line_comment, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [169898] = 8, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4885), 1, - anon_sym_EQ_GT, - STATE(4162), 1, + ACTIONS(4997), 1, + anon_sym_DQUOTE, + STATE(3496), 1, sym_decorator, - STATE(4163), 1, - aux_sym__module_type_constraint_with_repeat1, - ACTIONS(5754), 2, - anon_sym_and, - anon_sym_with, - ACTIONS(5), 3, + STATE(3526), 1, + aux_sym_string_repeat1, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [202974] = 7, + ACTIONS(4999), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [169925] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4826), 1, - anon_sym_EQ_GT, - STATE(4163), 1, + ACTIONS(4991), 1, + anon_sym_as, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5003), 1, + anon_sym_GT, + STATE(3497), 1, sym_decorator, - STATE(4164), 1, - aux_sym__module_type_constraint_with_repeat1, - ACTIONS(5754), 2, - anon_sym_and, - anon_sym_with, + STATE(3848), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [202999] = 6, + [169952] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4834), 1, - anon_sym_EQ_GT, - ACTIONS(5756), 2, - anon_sym_and, - anon_sym_with, - STATE(4164), 2, + ACTIONS(5005), 1, + anon_sym_RBRACE, + ACTIONS(5007), 1, + anon_sym_PIPE, + STATE(3488), 1, + sym_switch_match, + STATE(3498), 2, sym_decorator, - aux_sym__module_type_constraint_with_repeat1, + aux_sym_switch_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203022] = 8, + [169977] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5759), 1, + ACTIONS(5010), 1, sym_escape_sequence, - ACTIONS(5762), 1, + ACTIONS(5012), 1, anon_sym_SQUOTE, - ACTIONS(5764), 1, + ACTIONS(5014), 1, aux_sym_character_token1, + STATE(3499), 1, + sym_decorator, + STATE(3529), 1, + aux_sym_character_repeat1, ACTIONS(5), 2, sym__continuation, sym_block_comment, - STATE(4165), 2, - sym_decorator, - aux_sym_character_repeat1, - [203049] = 7, + [170006] = 8, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3591), 1, - aux_sym_polymorphic_type_repeat1, - STATE(3802), 1, - sym_type_identifier, - STATE(4166), 1, + ACTIONS(5016), 1, + anon_sym_DQUOTE, + STATE(3500), 1, sym_decorator, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - ACTIONS(5), 3, + STATE(3534), 1, + aux_sym_string_repeat1, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [203074] = 7, + ACTIONS(4999), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [170033] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4670), 1, - anon_sym_COLON, - STATE(4167), 1, + ACTIONS(5018), 1, + anon_sym_RBRACE, + ACTIONS(5020), 1, + anon_sym_PIPE, + STATE(3488), 1, + sym_switch_match, + STATE(3498), 1, + aux_sym_switch_expression_repeat1, + STATE(3501), 1, sym_decorator, - STATE(4559), 1, - sym_module_type_annotation, - ACTIONS(4973), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203099] = 8, + [170060] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5767), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5022), 1, anon_sym_RBRACE, - STATE(4168), 1, + STATE(3488), 1, + sym_switch_match, + STATE(3498), 1, + aux_sym_switch_expression_repeat1, + STATE(3502), 1, sym_decorator, - STATE(4586), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203126] = 7, + [170087] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5478), 1, - anon_sym_module, - ACTIONS(5769), 1, - anon_sym_type, - STATE(4169), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5024), 1, + anon_sym_RBRACE, + STATE(3488), 1, + sym_switch_match, + STATE(3498), 1, + aux_sym_switch_expression_repeat1, + STATE(3503), 1, sym_decorator, - STATE(3571), 2, - sym_constrain_module, - sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203151] = 8, + [170114] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5771), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5026), 1, anon_sym_RBRACE, - STATE(4170), 1, + STATE(3488), 1, + sym_switch_match, + STATE(3504), 1, sym_decorator, - STATE(4586), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, + STATE(3591), 1, + aux_sym_switch_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203178] = 7, + [170141] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - STATE(4171), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5028), 1, + anon_sym_RBRACE, + STATE(3505), 1, sym_decorator, - STATE(4547), 1, - sym_type_annotation, - ACTIONS(5773), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(3865), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203203] = 8, + [170168] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5775), 1, - anon_sym_RPAREN, - ACTIONS(5777), 1, - anon_sym_COMMA, - STATE(4172), 1, + ACTIONS(5030), 1, + anon_sym_module, + ACTIONS(5032), 1, + anon_sym_type, + STATE(3506), 1, sym_decorator, - STATE(4460), 1, - aux_sym_tuple_type_repeat1, + STATE(2977), 2, + sym_constrain_module, + sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203230] = 8, + [170193] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(5779), 1, - aux_sym_polyvar_identifier_token1, - ACTIONS(5781), 1, - anon_sym_BSLASH, - STATE(2246), 1, - sym_string, - STATE(4173), 1, + STATE(3507), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203257] = 9, + ACTIONS(5034), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [170214] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5514), 1, + ACTIONS(5010), 1, sym_escape_sequence, - ACTIONS(5518), 1, + ACTIONS(5014), 1, aux_sym_character_token1, - ACTIONS(5783), 1, + ACTIONS(5036), 1, anon_sym_SQUOTE, - STATE(4165), 1, - aux_sym_character_repeat1, - STATE(4174), 1, + STATE(3508), 1, sym_decorator, + STATE(3651), 1, + aux_sym_character_repeat1, ACTIONS(5), 2, sym__continuation, sym_block_comment, - [203286] = 8, + [170243] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, + ACTIONS(4649), 1, anon_sym_PIPE, - ACTIONS(5785), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4057), 1, - aux_sym_switch_expression_repeat1, - STATE(4175), 1, + ACTIONS(5038), 1, + anon_sym_COLON, + ACTIONS(5040), 1, + anon_sym_EQ, + STATE(3206), 1, + sym_type_annotation, + STATE(3509), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203313] = 7, + [170270] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5270), 1, - anon_sym_with, - STATE(3911), 1, - sym__module_type_constraint_with, - STATE(4176), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5042), 1, + anon_sym_RBRACE, + STATE(3510), 1, sym_decorator, - ACTIONS(5787), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(4058), 1, + sym_dict_pattern_entry, + STATE(4165), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203338] = 8, + [170297] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5789), 1, - anon_sym_RPAREN, - ACTIONS(5791), 1, - anon_sym_COMMA, - STATE(4177), 1, + ACTIONS(5044), 1, + anon_sym_LPAREN, + STATE(3511), 1, sym_decorator, - STATE(4442), 1, - aux_sym_tuple_type_repeat1, + STATE(3979), 1, + sym_polyvar_parameters, + ACTIONS(5046), 2, + anon_sym_PIPE, + anon_sym_RBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203365] = 7, + [170322] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5478), 1, - anon_sym_module, - ACTIONS(5500), 1, - anon_sym_type, - STATE(4178), 1, + STATE(1245), 1, + sym_type_identifier, + STATE(3512), 1, sym_decorator, - STATE(3479), 2, - sym_constrain_module, - sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203390] = 7, + ACTIONS(2153), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [170345] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5478), 1, - anon_sym_module, - ACTIONS(5769), 1, - anon_sym_type, - STATE(4179), 1, + ACTIONS(1069), 1, + anon_sym_DQUOTE, + ACTIONS(5048), 1, + aux_sym_polyvar_identifier_token1, + ACTIONS(5050), 1, + anon_sym_BSLASH, + STATE(2738), 1, + sym_string, + STATE(3513), 1, sym_decorator, - STATE(3489), 2, - sym_constrain_module, - sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203415] = 8, - ACTIONS(3), 1, - sym_line_comment, + [170372] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5793), 1, - anon_sym_DQUOTE, - STATE(4180), 1, + STATE(3514), 1, sym_decorator, - STATE(4182), 1, - aux_sym_string_repeat1, - ACTIONS(5), 2, + ACTIONS(5052), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5055), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [203442] = 9, - ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5518), 1, - aux_sym_character_token1, - ACTIONS(5795), 1, - anon_sym_SQUOTE, - STATE(4181), 1, - sym_decorator, - STATE(4183), 1, - aux_sym_character_repeat1, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - [203471] = 8, + [170395] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5797), 1, + ACTIONS(5057), 1, anon_sym_DQUOTE, - STATE(4144), 1, - aux_sym_string_repeat1, - STATE(4182), 1, + STATE(3515), 1, sym_decorator, + STATE(3541), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, + ACTIONS(4999), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [203498] = 9, - ACTIONS(3), 1, - sym_line_comment, + [170422] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5518), 1, - aux_sym_character_token1, - ACTIONS(5799), 1, - anon_sym_SQUOTE, - STATE(4165), 1, - aux_sym_character_repeat1, - STATE(4183), 1, + STATE(3516), 1, sym_decorator, - ACTIONS(5), 2, + ACTIONS(2353), 2, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(5059), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [203527] = 8, + sym_line_comment, + [170445] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5801), 1, - anon_sym_RPAREN, - ACTIONS(5803), 1, - anon_sym_COMMA, - STATE(4184), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5061), 1, + anon_sym_RBRACE, + STATE(3517), 1, sym_decorator, - STATE(4462), 1, - aux_sym_tuple_type_repeat1, + STATE(4003), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203554] = 8, - ACTIONS(3), 1, - sym_line_comment, + [170472] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5805), 1, - anon_sym_DQUOTE, - STATE(4144), 1, - aux_sym_string_repeat1, - STATE(4185), 1, + STATE(1246), 1, + sym_type_identifier, + STATE(3518), 1, sym_decorator, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [203581] = 9, + sym_line_comment, + ACTIONS(2153), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [170495] = 9, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5514), 1, + ACTIONS(5010), 1, sym_escape_sequence, - ACTIONS(5518), 1, + ACTIONS(5014), 1, aux_sym_character_token1, - ACTIONS(5807), 1, + ACTIONS(5063), 1, anon_sym_SQUOTE, - STATE(4165), 1, - aux_sym_character_repeat1, - STATE(4186), 1, + STATE(3519), 1, sym_decorator, + STATE(3543), 1, + aux_sym_character_repeat1, ACTIONS(5), 2, sym__continuation, sym_block_comment, - [203610] = 6, + [170524] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4187), 1, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(5065), 1, + aux_sym_polyvar_identifier_token1, + ACTIONS(5067), 1, + anon_sym_BSLASH, + STATE(857), 1, + sym_string, + STATE(3520), 1, sym_decorator, - ACTIONS(2533), 2, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(5809), 2, - sym__automatic_semicolon, - anon_sym_SEMI, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203633] = 8, + [170551] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - ACTIONS(5811), 1, - anon_sym_RPAREN, - STATE(4167), 1, - sym_module_identifier, - STATE(4188), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5069), 1, + anon_sym_RBRACE, + STATE(3521), 1, sym_decorator, - STATE(4578), 1, - sym_functor_parameter, + STATE(3878), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203660] = 6, + [170578] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5658), 1, - anon_sym_as, - STATE(4189), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5071), 1, + anon_sym_RBRACE, + STATE(3488), 1, + sym_switch_match, + STATE(3498), 1, + aux_sym_switch_expression_repeat1, + STATE(3522), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(1377), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [203683] = 8, - ACTIONS(3), 1, - sym_line_comment, + [170605] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5813), 1, - anon_sym_DQUOTE, - STATE(4157), 1, - aux_sym_string_repeat1, - STATE(4190), 1, + STATE(784), 1, + sym_type_identifier, + STATE(3523), 1, sym_decorator, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [203710] = 8, + sym_line_comment, + ACTIONS(3811), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [170628] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5815), 1, - anon_sym_RBRACE, - STATE(4191), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5073), 1, + anon_sym_RPAREN, + ACTIONS(5076), 1, + anon_sym_COMMA, + STATE(3524), 1, sym_decorator, - STATE(4659), 1, - sym_dict_pattern_entry, - STATE(4924), 1, - sym_string, + STATE(3800), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203737] = 8, + [170655] = 8, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5658), 1, - anon_sym_as, - ACTIONS(5817), 1, - anon_sym_COMMA, - ACTIONS(5819), 1, - anon_sym_GT, - STATE(4192), 1, + ACTIONS(5079), 1, + anon_sym_DQUOTE, + STATE(3525), 1, sym_decorator, - STATE(4262), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 3, + STATE(3593), 1, + aux_sym_string_repeat1, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [203764] = 8, + ACTIONS(4999), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [170682] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5821), 1, + ACTIONS(5081), 1, anon_sym_DQUOTE, - STATE(4144), 1, - aux_sym_string_repeat1, - STATE(4193), 1, + STATE(3526), 1, sym_decorator, + STATE(3527), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, + ACTIONS(4999), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [203791] = 9, + [170709] = 7, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5518), 1, - aux_sym_character_token1, - ACTIONS(5823), 1, - anon_sym_SQUOTE, - STATE(4165), 1, - aux_sym_character_repeat1, - STATE(4194), 1, - sym_decorator, + ACTIONS(5083), 1, + anon_sym_DQUOTE, ACTIONS(5), 2, sym__continuation, sym_block_comment, - [203820] = 8, + ACTIONS(5085), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + STATE(3527), 2, + sym_decorator, + aux_sym_string_repeat1, + [170734] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5658), 1, - anon_sym_as, - ACTIONS(5825), 1, + ACTIONS(3747), 1, + anon_sym_RBRACE, + ACTIONS(4752), 1, + anon_sym_PIPE, + ACTIONS(5088), 1, anon_sym_COMMA, - ACTIONS(5827), 1, - anon_sym_GT, - STATE(4195), 1, + STATE(3528), 1, sym_decorator, - STATE(4404), 1, - aux_sym_tuple_type_repeat1, + STATE(3922), 1, + aux_sym_record_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203847] = 8, + [170761] = 9, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - ACTIONS(5829), 1, - anon_sym_RBRACE, - STATE(4196), 1, + ACTIONS(5010), 1, + sym_escape_sequence, + ACTIONS(5014), 1, + aux_sym_character_token1, + ACTIONS(5090), 1, + anon_sym_SQUOTE, + STATE(3529), 1, sym_decorator, - STATE(4432), 1, - sym_dict_pattern_entry, - STATE(4924), 1, - sym_string, - ACTIONS(5), 3, + STATE(3555), 1, + aux_sym_character_repeat1, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [203874] = 7, + [170790] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5733), 1, - anon_sym_EQ, - STATE(4197), 1, + ACTIONS(4877), 1, + anon_sym_with, + STATE(3382), 1, + sym__module_type_constraint_with, + STATE(3530), 1, sym_decorator, - STATE(4588), 1, - sym__labeled_parameter_default_value, - ACTIONS(5831), 2, + ACTIONS(4464), 2, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_COLON, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203899] = 8, + [170815] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, + ACTIONS(5020), 1, anon_sym_PIPE, - ACTIONS(5833), 1, + ACTIONS(5092), 1, anon_sym_RBRACE, - STATE(4056), 1, + STATE(3488), 1, sym_switch_match, - STATE(4057), 1, + STATE(3501), 1, aux_sym_switch_expression_repeat1, - STATE(4198), 1, + STATE(3531), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203926] = 8, + [170842] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5467), 1, - anon_sym_PIPE, - ACTIONS(5835), 1, - anon_sym_RBRACE, - STATE(4056), 1, - sym_switch_match, - STATE(4095), 1, - aux_sym_switch_expression_repeat1, - STATE(4199), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + ACTIONS(5094), 1, + anon_sym_RPAREN, + STATE(3489), 1, + sym_module_identifier, + STATE(3532), 1, sym_decorator, + STATE(4052), 1, + sym_functor_parameter, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203953] = 8, + [170869] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4100), 1, + ACTIONS(3757), 1, anon_sym_RBRACE, - ACTIONS(5059), 1, - anon_sym_PIPE, - ACTIONS(5837), 1, + ACTIONS(5096), 1, + anon_sym_COLON, + ACTIONS(5098), 1, anon_sym_COMMA, - STATE(4200), 1, + STATE(3533), 1, sym_decorator, - STATE(4535), 1, + STATE(3658), 1, aux_sym_record_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [203980] = 9, + [170896] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5514), 1, - sym_escape_sequence, - ACTIONS(5518), 1, - aux_sym_character_token1, - ACTIONS(5839), 1, - anon_sym_SQUOTE, - STATE(4174), 1, - aux_sym_character_repeat1, - STATE(4201), 1, + ACTIONS(5100), 1, + anon_sym_DQUOTE, + STATE(3527), 1, + aux_sym_string_repeat1, + STATE(3534), 1, sym_decorator, ACTIONS(5), 2, sym__continuation, sym_block_comment, - [204009] = 7, + ACTIONS(4999), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [170923] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5478), 1, - anon_sym_module, - ACTIONS(5635), 1, - anon_sym_type, - STATE(4202), 1, + STATE(1020), 1, + sym_type_identifier, + STATE(3535), 1, sym_decorator, - STATE(3551), 2, - sym_constrain_module, - sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204034] = 7, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [170946] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5353), 1, - anon_sym_EQ_GT, - STATE(4203), 1, + STATE(1025), 1, + sym_type_identifier, + STATE(3536), 1, sym_decorator, - STATE(4789), 1, - sym_guard, - ACTIONS(5357), 2, - anon_sym_if, - anon_sym_when, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204059] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(4094), 1, - anon_sym_RBRACE, - ACTIONS(5673), 1, - anon_sym_COLON, - ACTIONS(5841), 1, - anon_sym_COMMA, - STATE(4204), 1, - sym_decorator, - STATE(4260), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, + ACTIONS(2165), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [170969] = 9, + ACTIONS(3), 1, sym_line_comment, - [204086] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(5843), 1, - anon_sym_RPAREN, - ACTIONS(5846), 1, - anon_sym_COMMA, - STATE(4205), 1, + ACTIONS(5010), 1, + sym_escape_sequence, + ACTIONS(5014), 1, + aux_sym_character_token1, + ACTIONS(5102), 1, + anon_sym_SQUOTE, + STATE(3537), 1, sym_decorator, - STATE(4462), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 3, + STATE(3589), 1, + aux_sym_character_repeat1, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [204113] = 8, + [170998] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, + ACTIONS(173), 1, anon_sym_DQUOTE, - ACTIONS(5284), 1, - aux_sym_polyvar_identifier_token1, - ACTIONS(5302), 1, - anon_sym_BSLASH, - STATE(1107), 1, - sym_string, - STATE(4206), 1, + ACTIONS(5104), 1, + anon_sym_RBRACE, + STATE(3538), 1, sym_decorator, + STATE(3823), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204140] = 8, + [171025] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5658), 1, - anon_sym_as, - ACTIONS(5849), 1, - anon_sym_COMMA, - ACTIONS(5851), 1, - anon_sym_GT, - STATE(4207), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + STATE(3539), 1, sym_decorator, - STATE(4519), 1, - aux_sym_tuple_type_repeat1, + STATE(3971), 1, + sym_object_field, + STATE(3986), 1, + sym__object_field, + STATE(4255), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204167] = 6, + [171052] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5855), 1, - anon_sym_COMMA, - ACTIONS(5853), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - STATE(4208), 2, + ACTIONS(5106), 1, + anon_sym_module, + ACTIONS(5108), 1, + anon_sym_type, + STATE(3540), 1, sym_decorator, - aux_sym_call_arguments_repeat1, + STATE(3258), 2, + sym_constrain_module, + sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204190] = 8, + [171077] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5858), 1, + ACTIONS(5110), 1, anon_sym_DQUOTE, - STATE(4144), 1, + STATE(3527), 1, aux_sym_string_repeat1, - STATE(4209), 1, + STATE(3541), 1, sym_decorator, ACTIONS(5), 2, sym__continuation, sym_block_comment, - ACTIONS(5508), 2, + ACTIONS(4999), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [204217] = 8, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(5658), 1, - anon_sym_as, - ACTIONS(5860), 1, - anon_sym_COMMA, - ACTIONS(5862), 1, - anon_sym_GT, - STATE(4210), 1, - sym_decorator, - STATE(4500), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, + [171104] = 8, + ACTIONS(3), 1, sym_line_comment, - [204244] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(5866), 1, - anon_sym_RBRACK, - STATE(4211), 1, + ACTIONS(5112), 1, + anon_sym_DQUOTE, + STATE(3542), 1, sym_decorator, - STATE(4304), 1, - aux_sym_polyvar_type_repeat1, - ACTIONS(5), 3, + STATE(3559), 1, + aux_sym_string_repeat1, + ACTIONS(5), 2, sym__continuation, sym_block_comment, + ACTIONS(4999), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [171131] = 9, + ACTIONS(3), 1, sym_line_comment, - [204268] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - STATE(4212), 1, + ACTIONS(5010), 1, + sym_escape_sequence, + ACTIONS(5014), 1, + aux_sym_character_token1, + ACTIONS(5114), 1, + anon_sym_SQUOTE, + STATE(3543), 1, sym_decorator, - ACTIONS(5868), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(5), 3, + STATE(3555), 1, + aux_sym_character_repeat1, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [204290] = 7, + [171160] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(5870), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4213), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5116), 1, + anon_sym_RBRACE, + STATE(3544), 1, sym_decorator, + STATE(4003), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204314] = 6, + [171187] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5872), 1, - anon_sym_RPAREN, - ACTIONS(5874), 1, - anon_sym_COMMA, - STATE(4214), 2, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5118), 1, + anon_sym_RBRACE, + STATE(3488), 1, + sym_switch_match, + STATE(3545), 1, sym_decorator, - aux_sym__variant_pattern_parameters_repeat1, + STATE(3578), 1, + aux_sym_switch_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204336] = 6, + [171214] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5877), 1, - anon_sym_RPAREN, - ACTIONS(5879), 1, + ACTIONS(5096), 1, + anon_sym_COLON, + ACTIONS(5120), 1, + anon_sym_RBRACE, + ACTIONS(5123), 1, anon_sym_COMMA, - STATE(4215), 2, + STATE(3546), 1, sym_decorator, - aux_sym_formal_parameters_repeat1, + STATE(3658), 1, + aux_sym_record_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204358] = 7, + [171241] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5882), 1, - anon_sym_RPAREN, - ACTIONS(5884), 1, - anon_sym_COMMA, - STATE(4216), 1, + STATE(1245), 1, + sym_type_identifier, + STATE(3547), 1, sym_decorator, - STATE(4376), 1, - aux_sym__variant_pattern_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204382] = 7, + ACTIONS(2008), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [171264] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5120), 1, - anon_sym_GT, - ACTIONS(5886), 1, - anon_sym_COMMA, - STATE(4217), 1, + STATE(1246), 1, + sym_type_identifier, + STATE(3548), 1, sym_decorator, - STATE(4219), 1, - aux_sym_type_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204406] = 6, + ACTIONS(2008), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [171287] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4218), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(4850), 1, + aux_sym_polyvar_identifier_token1, + ACTIONS(4852), 1, + anon_sym_BSLASH, + STATE(1070), 1, + sym_string, + STATE(3549), 1, sym_decorator, - STATE(4549), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204428] = 6, + [171314] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5888), 1, - anon_sym_COMMA, - ACTIONS(5891), 1, - anon_sym_GT, - STATE(4219), 2, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5126), 1, + anon_sym_RBRACE, + STATE(3550), 1, sym_decorator, - aux_sym_type_parameters_repeat1, + STATE(4003), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204450] = 6, + [171341] = 9, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - STATE(4220), 1, + ACTIONS(5010), 1, + sym_escape_sequence, + ACTIONS(5014), 1, + aux_sym_character_token1, + ACTIONS(5128), 1, + anon_sym_SQUOTE, + STATE(3551), 1, sym_decorator, - ACTIONS(5893), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 3, + STATE(3614), 1, + aux_sym_character_repeat1, + ACTIONS(5), 2, sym__continuation, sym_block_comment, + [171370] = 9, + ACTIONS(3), 1, sym_line_comment, - [204472] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5893), 1, - anon_sym_RPAREN, - ACTIONS(5895), 1, - anon_sym_COMMA, - STATE(4221), 2, + ACTIONS(5010), 1, + sym_escape_sequence, + ACTIONS(5014), 1, + aux_sym_character_token1, + ACTIONS(5130), 1, + anon_sym_SQUOTE, + STATE(3552), 1, sym_decorator, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 3, + STATE(3597), 1, + aux_sym_character_repeat1, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [204494] = 7, + [171399] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(4222), 1, + ACTIONS(3753), 1, + anon_sym_RBRACE, + ACTIONS(4752), 1, + anon_sym_PIPE, + ACTIONS(5132), 1, + anon_sym_COMMA, + STATE(3553), 1, sym_decorator, - STATE(4525), 1, - aux_sym_member_expression_repeat1, - STATE(5035), 1, - sym_module_identifier, + STATE(3940), 1, + aux_sym_record_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204518] = 7, + [171426] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5898), 1, - anon_sym_LBRACE, - ACTIONS(5900), 1, - anon_sym_if, - STATE(3062), 1, - sym_block, - STATE(4223), 1, + ACTIONS(5030), 1, + anon_sym_module, + ACTIONS(5134), 1, + anon_sym_type, + STATE(3554), 1, sym_decorator, + STATE(2977), 2, + sym_constrain_module, + sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204542] = 7, + [171451] = 8, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5902), 1, + ACTIONS(5136), 1, sym_escape_sequence, - STATE(4224), 1, - sym_decorator, + ACTIONS(5139), 1, + anon_sym_SQUOTE, + ACTIONS(5141), 1, + aux_sym_character_token1, ACTIONS(5), 2, sym__continuation, sym_block_comment, - ACTIONS(5904), 2, - anon_sym_SQUOTE, - aux_sym_character_token1, - [204566] = 5, + STATE(3555), 2, + sym_decorator, + aux_sym_character_repeat1, + [171478] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4225), 1, + STATE(3556), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5906), 3, + ACTIONS(5144), 4, anon_sym_EQ_GT, anon_sym_if, anon_sym_when, - [204586] = 7, + anon_sym_as, + [171499] = 8, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5004), 1, - anon_sym_RBRACE, - ACTIONS(5908), 1, - anon_sym_COMMA, - STATE(4226), 1, + ACTIONS(5146), 1, + anon_sym_DQUOTE, + STATE(3527), 1, + aux_sym_string_repeat1, + STATE(3557), 1, sym_decorator, - STATE(4233), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [204610] = 7, + ACTIONS(4999), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [171526] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(5910), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4227), 1, + ACTIONS(5106), 1, + anon_sym_module, + ACTIONS(5148), 1, + anon_sym_type, + STATE(3558), 1, sym_decorator, + STATE(3594), 2, + sym_constrain_module, + sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204634] = 7, + [171551] = 8, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1295), 1, - anon_sym_RBRACE, - ACTIONS(5912), 1, - anon_sym_COMMA, - STATE(4155), 1, - aux_sym_array_pattern_repeat1, - STATE(4228), 1, + ACTIONS(5150), 1, + anon_sym_DQUOTE, + STATE(3527), 1, + aux_sym_string_repeat1, + STATE(3559), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [204658] = 6, + ACTIONS(4999), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [171578] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5914), 1, - anon_sym_RBRACE, - ACTIONS(5916), 1, - anon_sym_COMMA, - STATE(4229), 2, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(5152), 1, + aux_sym_polyvar_identifier_token1, + ACTIONS(5154), 1, + anon_sym_BSLASH, + STATE(1911), 1, + sym_string, + STATE(3560), 1, sym_decorator, - aux_sym_record_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204680] = 7, + [171605] = 8, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(715), 1, - anon_sym_RPAREN, - ACTIONS(5919), 1, - anon_sym_COMMA, - STATE(4230), 1, + ACTIONS(5156), 1, + anon_sym_DQUOTE, + STATE(3561), 1, sym_decorator, - STATE(4400), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 3, + STATE(3624), 1, + aux_sym_string_repeat1, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [204704] = 6, + ACTIONS(4999), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [171632] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1133), 1, - sym_type_identifier, - STATE(4231), 1, + ACTIONS(4649), 1, + anon_sym_PIPE, + ACTIONS(5158), 1, + anon_sym_COLON, + ACTIONS(5160), 1, + anon_sym_EQ, + STATE(3241), 1, + sym_type_annotation, + STATE(3562), 1, sym_decorator, - ACTIONS(4133), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204726] = 7, + [171659] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(4232), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5162), 1, + anon_sym_RBRACE, + STATE(3488), 1, + sym_switch_match, + STATE(3563), 1, sym_decorator, - STATE(4525), 1, - aux_sym_member_expression_repeat1, - STATE(4873), 1, - sym_module_identifier, + STATE(3629), 1, + aux_sym_switch_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204750] = 6, + [171686] = 8, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5921), 1, - anon_sym_RBRACE, - ACTIONS(5923), 1, - anon_sym_COMMA, - STATE(4233), 2, + ACTIONS(5164), 1, + anon_sym_DQUOTE, + STATE(3527), 1, + aux_sym_string_repeat1, + STATE(3564), 1, sym_decorator, - aux_sym_object_type_repeat1, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [204772] = 6, + ACTIONS(4999), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [171713] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1136), 1, - sym_type_identifier, - STATE(4234), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5166), 1, + anon_sym_RPAREN, + ACTIONS(5168), 1, + anon_sym_COMMA, + STATE(3565), 1, sym_decorator, - ACTIONS(4133), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3752), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204794] = 6, + [171740] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - STATE(4235), 1, - sym_decorator, - ACTIONS(5926), 2, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5170), 1, anon_sym_RBRACE, - anon_sym_COMMA, + STATE(3488), 1, + sym_switch_match, + STATE(3498), 1, + aux_sym_switch_expression_repeat1, + STATE(3566), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204816] = 7, + [171767] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(5928), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4236), 1, + STATE(3567), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204840] = 7, + ACTIONS(2555), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_as, + [171788] = 8, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(5930), 1, - sym_extension_identifier, - STATE(4237), 1, + ACTIONS(5172), 1, + anon_sym_DQUOTE, + STATE(3557), 1, + aux_sym_string_repeat1, + STATE(3568), 1, sym_decorator, - STATE(4345), 1, - aux_sym_extension_expression_repeat1, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [204864] = 7, + ACTIONS(4999), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [171815] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(553), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5174), 1, anon_sym_RBRACE, - ACTIONS(5932), 1, - anon_sym_COMMA, - STATE(4238), 1, + STATE(3569), 1, sym_decorator, - STATE(4333), 1, - aux_sym_list_repeat1, + STATE(4003), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204888] = 7, + [171842] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5306), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5176), 1, anon_sym_RBRACE, - ACTIONS(5934), 1, - anon_sym_COMMA, - STATE(4239), 1, + STATE(3488), 1, + sym_switch_match, + STATE(3570), 1, sym_decorator, - STATE(4252), 1, - aux_sym_object_repeat1, + STATE(3643), 1, + aux_sym_switch_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204912] = 7, + [171869] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1217), 1, - anon_sym_RPAREN, - ACTIONS(5936), 1, - anon_sym_COMMA, - STATE(4215), 1, - aux_sym_formal_parameters_repeat1, - STATE(4240), 1, + ACTIONS(5106), 1, + anon_sym_module, + ACTIONS(5148), 1, + anon_sym_type, + STATE(3571), 1, sym_decorator, + STATE(3243), 2, + sym_constrain_module, + sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204936] = 7, + [171894] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(4241), 1, + ACTIONS(5030), 1, + anon_sym_module, + ACTIONS(5178), 1, + anon_sym_type, + STATE(3572), 1, sym_decorator, - STATE(4525), 1, - aux_sym_member_expression_repeat1, - STATE(4998), 1, - sym_module_identifier, + STATE(3129), 2, + sym_constrain_module, + sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204960] = 7, + [171919] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(5938), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4242), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5180), 1, + anon_sym_RPAREN, + ACTIONS(5182), 1, + anon_sym_COMMA, + STATE(3573), 1, sym_decorator, + STATE(3927), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [204984] = 7, + [171946] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5815), 1, + ACTIONS(5184), 1, anon_sym_RBRACE, - ACTIONS(5940), 1, + ACTIONS(5186), 1, + anon_sym_COLON, + ACTIONS(5188), 1, anon_sym_COMMA, - STATE(4243), 1, + STATE(3574), 1, sym_decorator, - STATE(4530), 1, - aux_sym_dict_pattern_repeat1, + STATE(3876), 1, + aux_sym_record_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205008] = 7, + [171973] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3705), 1, - anon_sym_COMMA, - ACTIONS(3707), 1, - anon_sym_RBRACK, - STATE(4244), 1, + ACTIONS(5030), 1, + anon_sym_module, + ACTIONS(5178), 1, + anon_sym_type, + STATE(3575), 1, sym_decorator, - STATE(4255), 1, - aux_sym_array_repeat1, + STATE(2977), 2, + sym_constrain_module, + sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205032] = 7, + [171998] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5767), 1, - anon_sym_RBRACE, - ACTIONS(5942), 1, - anon_sym_COMMA, - STATE(4245), 1, + STATE(1477), 1, + sym_type_identifier, + STATE(3576), 1, sym_decorator, - STATE(4420), 1, - aux_sym_dict_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205056] = 6, + ACTIONS(2241), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [172021] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - STATE(4246), 1, - sym_decorator, - ACTIONS(5944), 2, - anon_sym_RPAREN, + ACTIONS(5192), 1, anon_sym_COMMA, + ACTIONS(5190), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + STATE(3577), 2, + sym_decorator, + aux_sym_array_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205078] = 6, + [172044] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4247), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5195), 1, + anon_sym_RBRACE, + STATE(3488), 1, + sym_switch_match, + STATE(3498), 1, + aux_sym_switch_expression_repeat1, + STATE(3578), 1, sym_decorator, - STATE(4405), 1, - sym_type_identifier, - ACTIONS(4127), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205100] = 6, + [172071] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5946), 1, - anon_sym_RPAREN, - ACTIONS(5948), 1, - anon_sym_COMMA, - STATE(4248), 2, + STATE(1487), 1, + sym_type_identifier, + STATE(3579), 1, sym_decorator, - aux_sym__function_type_parameter_list_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205122] = 7, + ACTIONS(2241), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [172094] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5951), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5197), 1, anon_sym_RBRACE, - ACTIONS(5953), 1, - anon_sym_COMMA, - STATE(4249), 1, + STATE(3488), 1, + sym_switch_match, + STATE(3580), 1, sym_decorator, - STATE(4264), 1, - aux_sym_list_repeat1, + STATE(3623), 1, + aux_sym_switch_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205146] = 7, + [172121] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5955), 1, - anon_sym_RBRACE, - ACTIONS(5957), 1, - anon_sym_COMMA, - STATE(4250), 1, + ACTIONS(5030), 1, + anon_sym_module, + ACTIONS(5199), 1, + anon_sym_type, + STATE(3581), 1, sym_decorator, - STATE(4265), 1, - aux_sym_dict_repeat1, + STATE(2995), 2, + sym_constrain_module, + sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205170] = 7, + [172146] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5316), 1, - anon_sym_RBRACE, - ACTIONS(5959), 1, + ACTIONS(4991), 1, + anon_sym_as, + ACTIONS(5201), 1, anon_sym_COMMA, - STATE(4251), 1, + ACTIONS(5203), 1, + anon_sym_GT, + STATE(3582), 1, sym_decorator, - STATE(4267), 1, - aux_sym_object_repeat1, + STATE(3736), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205194] = 7, + [172173] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5316), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5205), 1, anon_sym_RBRACE, - ACTIONS(5959), 1, - anon_sym_COMMA, - STATE(4252), 1, + STATE(3583), 1, sym_decorator, - STATE(4296), 1, - aux_sym_object_repeat1, + STATE(4003), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205218] = 6, + [172200] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - STATE(4253), 1, + ACTIONS(4877), 1, + anon_sym_with, + STATE(3382), 1, + sym__module_type_constraint_with, + STATE(3584), 1, sym_decorator, - ACTIONS(5961), 2, + ACTIONS(5207), 2, anon_sym_RPAREN, anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205240] = 7, + [172225] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5963), 1, + ACTIONS(4991), 1, + anon_sym_as, + ACTIONS(5209), 1, anon_sym_COMMA, - ACTIONS(5965), 1, + ACTIONS(5211), 1, anon_sym_GT, - STATE(4254), 1, + STATE(3585), 1, sym_decorator, - STATE(4423), 1, - aux_sym_type_parameters_repeat1, + STATE(3832), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205264] = 7, + [172252] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(625), 1, - anon_sym_RBRACK, - ACTIONS(5967), 1, - anon_sym_COMMA, - STATE(4255), 1, + ACTIONS(4877), 1, + anon_sym_with, + STATE(3382), 1, + sym__module_type_constraint_with, + STATE(3586), 1, sym_decorator, - STATE(4358), 1, - aux_sym_array_repeat1, + ACTIONS(5213), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205288] = 7, + [172277] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(5969), 1, - anon_sym_RBRACK, - STATE(4256), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5215), 1, + anon_sym_RPAREN, + ACTIONS(5218), 1, + anon_sym_COMMA, + STATE(3587), 1, sym_decorator, - STATE(4258), 1, - aux_sym_polyvar_type_repeat1, + STATE(3760), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205312] = 7, + [172304] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(4257), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5221), 1, + anon_sym_RBRACE, + STATE(3588), 1, sym_decorator, - STATE(4525), 1, - aux_sym_member_expression_repeat1, - STATE(4739), 1, - sym_module_identifier, + STATE(3905), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205336] = 6, + [172331] = 9, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5971), 1, - anon_sym_PIPE, - ACTIONS(5974), 1, - anon_sym_RBRACK, - STATE(4258), 2, + ACTIONS(5010), 1, + sym_escape_sequence, + ACTIONS(5014), 1, + aux_sym_character_token1, + ACTIONS(5223), 1, + anon_sym_SQUOTE, + STATE(3555), 1, + aux_sym_character_repeat1, + STATE(3589), 1, sym_decorator, - aux_sym_polyvar_type_repeat1, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [205358] = 7, + [172360] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5976), 1, - anon_sym_RPAREN, - ACTIONS(5978), 1, - anon_sym_COMMA, - STATE(4259), 1, + STATE(3075), 1, + sym_type_identifier, + STATE(3590), 1, sym_decorator, - STATE(4336), 1, - aux_sym_functor_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205382] = 7, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [172383] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4100), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5225), 1, anon_sym_RBRACE, - ACTIONS(5837), 1, - anon_sym_COMMA, - STATE(4260), 1, + STATE(3488), 1, + sym_switch_match, + STATE(3498), 1, + aux_sym_switch_expression_repeat1, + STATE(3591), 1, sym_decorator, - STATE(4266), 1, - aux_sym_record_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205406] = 7, + [172410] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4008), 1, - anon_sym_RBRACE, - ACTIONS(5980), 1, - anon_sym_COMMA, - STATE(4261), 1, + STATE(3077), 1, + sym_type_identifier, + STATE(3592), 1, sym_decorator, - STATE(4515), 1, - aux_sym_record_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205430] = 7, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [172433] = 8, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2132), 1, - anon_sym_GT, - ACTIONS(5982), 1, - anon_sym_COMMA, - STATE(4262), 1, + ACTIONS(5227), 1, + anon_sym_DQUOTE, + STATE(3527), 1, + aux_sym_string_repeat1, + STATE(3593), 1, sym_decorator, - STATE(4290), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [205454] = 6, + ACTIONS(4999), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [172460] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5986), 1, - anon_sym_COLON, - STATE(4263), 1, + ACTIONS(4435), 1, + anon_sym_EQ_GT, + STATE(3594), 1, sym_decorator, - ACTIONS(5984), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + STATE(3595), 1, + aux_sym__module_type_constraint_with_repeat1, + ACTIONS(5229), 2, + anon_sym_and, + anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205476] = 7, + [172485] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(559), 1, - anon_sym_RBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - STATE(4264), 1, + ACTIONS(4411), 1, + anon_sym_EQ_GT, + STATE(3595), 1, sym_decorator, - STATE(4333), 1, - aux_sym_list_repeat1, + STATE(3596), 1, + aux_sym__module_type_constraint_with_repeat1, + ACTIONS(5229), 2, + anon_sym_and, + anon_sym_with, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205500] = 7, + [172510] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5556), 1, - anon_sym_RBRACE, - ACTIONS(5990), 1, - anon_sym_COMMA, - STATE(4265), 1, + ACTIONS(4398), 1, + anon_sym_EQ_GT, + ACTIONS(5231), 2, + anon_sym_and, + anon_sym_with, + STATE(3596), 2, sym_decorator, - STATE(4420), 1, - aux_sym_dict_repeat1, + aux_sym__module_type_constraint_with_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205524] = 6, + [172533] = 9, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5984), 1, - anon_sym_RBRACE, - ACTIONS(5992), 1, - anon_sym_COMMA, - STATE(4266), 2, + ACTIONS(5010), 1, + sym_escape_sequence, + ACTIONS(5014), 1, + aux_sym_character_token1, + ACTIONS(5234), 1, + anon_sym_SQUOTE, + STATE(3555), 1, + aux_sym_character_repeat1, + STATE(3597), 1, sym_decorator, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [205546] = 7, + [172562] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5331), 1, - anon_sym_RBRACE, - ACTIONS(5995), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5236), 1, + anon_sym_RPAREN, + ACTIONS(5239), 1, anon_sym_COMMA, - STATE(4267), 1, + STATE(3598), 1, sym_decorator, - STATE(4296), 1, - aux_sym_object_repeat1, + STATE(3947), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205570] = 7, + [172589] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5997), 1, - anon_sym_RBRACE, - ACTIONS(5999), 1, - anon_sym_COMMA, - STATE(4268), 1, + STATE(1020), 1, + sym_type_identifier, + STATE(3599), 1, sym_decorator, - STATE(4284), 1, - aux_sym_record_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205594] = 7, + ACTIONS(2165), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [172612] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5361), 1, - anon_sym_RBRACE, - ACTIONS(6001), 1, - anon_sym_COMMA, - STATE(4269), 1, + STATE(1025), 1, + sym_type_identifier, + STATE(3600), 1, sym_decorator, - STATE(4296), 1, - aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205618] = 7, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [172635] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5031), 1, - anon_sym_RBRACE, - ACTIONS(6003), 1, + ACTIONS(5244), 1, anon_sym_COMMA, - STATE(4226), 1, - aux_sym_object_type_repeat1, - STATE(4270), 1, + ACTIONS(5242), 2, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + STATE(3601), 2, sym_decorator, + aux_sym_call_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205642] = 7, + [172658] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6005), 1, - anon_sym_RBRACE, - ACTIONS(6007), 1, - anon_sym_COMMA, - STATE(4271), 1, + ACTIONS(4877), 1, + anon_sym_with, + STATE(3382), 1, + sym__module_type_constraint_with, + STATE(3602), 1, sym_decorator, - STATE(4292), 1, - aux_sym_record_type_repeat1, + ACTIONS(4441), 2, + anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205666] = 7, + [172683] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5041), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_COMMA, - STATE(4272), 1, + ACTIONS(75), 1, + anon_sym_DQUOTE, + ACTIONS(5247), 1, + aux_sym_polyvar_identifier_token1, + ACTIONS(5249), 1, + anon_sym_BSLASH, + STATE(1711), 1, + sym_string, + STATE(3603), 1, sym_decorator, - STATE(4293), 1, - aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205690] = 7, + [172710] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6011), 1, - anon_sym_RBRACK, - STATE(4273), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5251), 1, + anon_sym_RPAREN, + ACTIONS(5253), 1, + anon_sym_COMMA, + STATE(3604), 1, sym_decorator, - STATE(4295), 1, - aux_sym_polyvar_type_repeat1, + STATE(3690), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205714] = 6, + [172737] = 9, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1702), 1, - sym_type_identifier, - STATE(4274), 1, + ACTIONS(5010), 1, + sym_escape_sequence, + ACTIONS(5014), 1, + aux_sym_character_token1, + ACTIONS(5255), 1, + anon_sym_SQUOTE, + STATE(3605), 1, sym_decorator, - ACTIONS(4204), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, - ACTIONS(5), 3, + STATE(3626), 1, + aux_sym_character_repeat1, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [205736] = 6, + [172766] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1707), 1, - sym_type_identifier, - STATE(4275), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5257), 1, + anon_sym_RBRACE, + STATE(3606), 1, sym_decorator, - ACTIONS(4204), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(4003), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205758] = 6, + [172793] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1258), 1, - anon_sym_LT, - STATE(4276), 1, - sym_decorator, - ACTIONS(6013), 2, - anon_sym_RBRACE, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5259), 1, + anon_sym_RPAREN, + ACTIONS(5262), 1, anon_sym_COMMA, + STATE(3607), 1, + sym_decorator, + STATE(3904), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205780] = 7, + [172820] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - ACTIONS(6015), 1, - anon_sym_QMARK, - STATE(4277), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5265), 1, + anon_sym_RBRACE, + STATE(3608), 1, sym_decorator, - STATE(4617), 1, - sym_type_annotation, + STATE(4003), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205804] = 6, + [172847] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - STATE(4278), 1, + ACTIONS(5030), 1, + anon_sym_module, + ACTIONS(5199), 1, + anon_sym_type, + STATE(3609), 1, sym_decorator, - ACTIONS(6017), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, + STATE(2977), 2, + sym_constrain_module, + sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205826] = 7, + [172872] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6019), 1, - anon_sym_RBRACE, - ACTIONS(6021), 1, - anon_sym_COMMA, - STATE(4261), 1, - aux_sym_record_repeat1, - STATE(4279), 1, + ACTIONS(5106), 1, + anon_sym_module, + ACTIONS(5108), 1, + anon_sym_type, + STATE(3610), 1, sym_decorator, + STATE(3243), 2, + sym_constrain_module, + sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205850] = 7, + [172897] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(663), 1, - anon_sym_RPAREN, - ACTIONS(6023), 1, - anon_sym_COMMA, - STATE(4280), 1, + ACTIONS(5030), 1, + anon_sym_module, + ACTIONS(5032), 1, + anon_sym_type, + STATE(3611), 1, sym_decorator, - STATE(4298), 1, - aux_sym_variant_arguments_repeat1, + STATE(3150), 2, + sym_constrain_module, + sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205874] = 7, + [172922] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(663), 1, - anon_sym_RPAREN, - ACTIONS(6023), 1, - anon_sym_COMMA, - STATE(4281), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5267), 1, + anon_sym_RBRACE, + STATE(3612), 1, sym_decorator, - STATE(4422), 1, - aux_sym_variant_arguments_repeat1, + STATE(4003), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205898] = 7, + [172949] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4386), 1, - anon_sym_RBRACE, - ACTIONS(6025), 1, - anon_sym_COMMA, - STATE(4229), 1, - aux_sym_record_type_repeat1, - STATE(4282), 1, + ACTIONS(5271), 1, + anon_sym_EQ, + STATE(3613), 1, sym_decorator, + STATE(4022), 1, + sym__labeled_parameter_default_value, + ACTIONS(5269), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205922] = 7, + [172974] = 9, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(5086), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4283), 1, + ACTIONS(5010), 1, + sym_escape_sequence, + ACTIONS(5014), 1, + aux_sym_character_token1, + ACTIONS(5273), 1, + anon_sym_SQUOTE, + STATE(3555), 1, + aux_sym_character_repeat1, + STATE(3614), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [205946] = 7, + [173003] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4002), 1, - anon_sym_RBRACE, - ACTIONS(6027), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5275), 1, + anon_sym_RPAREN, + ACTIONS(5277), 1, anon_sym_COMMA, - STATE(4284), 1, + STATE(3615), 1, sym_decorator, - STATE(4515), 1, - aux_sym_record_repeat1, + STATE(3947), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205970] = 7, + [173030] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5031), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5279), 1, anon_sym_RBRACE, - ACTIONS(6003), 1, - anon_sym_COMMA, - STATE(4233), 1, - aux_sym_object_type_repeat1, - STATE(4285), 1, + STATE(3616), 1, sym_decorator, + STATE(4003), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [205994] = 7, + [173057] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(673), 1, + ACTIONS(5271), 1, + anon_sym_EQ, + STATE(3617), 1, + sym_decorator, + STATE(4065), 1, + sym__labeled_parameter_default_value, + ACTIONS(4796), 2, anon_sym_RPAREN, - ACTIONS(6029), 1, anon_sym_COMMA, - STATE(4286), 1, - sym_decorator, - STATE(4400), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206018] = 7, + [173082] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(6031), 1, - sym_extension_identifier, - STATE(4287), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5281), 1, + anon_sym_RBRACE, + STATE(3618), 1, sym_decorator, - STATE(4345), 1, - aux_sym_extension_expression_repeat1, + STATE(4058), 1, + sym_dict_pattern_entry, + STATE(4165), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206042] = 7, + [173109] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2146), 1, - anon_sym_RPAREN, - ACTIONS(6033), 1, - anon_sym_COMMA, - STATE(4221), 1, - aux_sym_tuple_type_repeat1, - STATE(4288), 1, + ACTIONS(5030), 1, + anon_sym_module, + ACTIONS(5134), 1, + anon_sym_type, + STATE(3619), 1, sym_decorator, + STATE(3006), 2, + sym_constrain_module, + sym_constrain_type, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206066] = 6, + [173134] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5658), 1, + ACTIONS(5283), 1, anon_sym_as, - STATE(4289), 1, + STATE(3620), 1, sym_decorator, - ACTIONS(5893), 2, - anon_sym_COMMA, - anon_sym_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206088] = 6, + ACTIONS(1426), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + [173157] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5893), 1, - anon_sym_GT, - ACTIONS(6035), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5285), 1, + anon_sym_RPAREN, + ACTIONS(5287), 1, anon_sym_COMMA, - STATE(4290), 2, + STATE(3621), 1, sym_decorator, + STATE(3662), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206110] = 7, + [173184] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4988), 1, - anon_sym_RBRACE, - ACTIONS(6038), 1, - anon_sym_COMMA, - STATE(4291), 1, + ACTIONS(225), 1, + anon_sym_COLON, + STATE(3622), 1, sym_decorator, - STATE(4301), 1, - aux_sym_object_type_repeat1, + STATE(3970), 1, + sym_type_annotation, + ACTIONS(5289), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206134] = 7, + [173209] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4296), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5291), 1, anon_sym_RBRACE, - ACTIONS(6040), 1, - anon_sym_COMMA, - STATE(4229), 1, - aux_sym_record_type_repeat1, - STATE(4292), 1, + STATE(3488), 1, + sym_switch_match, + STATE(3498), 1, + aux_sym_switch_expression_repeat1, + STATE(3623), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206158] = 7, + [173236] = 8, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4988), 1, - anon_sym_RBRACE, - ACTIONS(6038), 1, - anon_sym_COMMA, - STATE(4233), 1, - aux_sym_object_type_repeat1, - STATE(4293), 1, + ACTIONS(5293), 1, + anon_sym_DQUOTE, + STATE(3527), 1, + aux_sym_string_repeat1, + STATE(3624), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [206182] = 7, + ACTIONS(4999), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [173263] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2148), 1, - anon_sym_RPAREN, - ACTIONS(6042), 1, - anon_sym_COMMA, - STATE(4221), 1, - aux_sym_tuple_type_repeat1, - STATE(4294), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5295), 1, + anon_sym_RBRACE, + STATE(3625), 1, sym_decorator, + STATE(4003), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206206] = 7, + [173290] = 9, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(5866), 1, - anon_sym_RBRACK, - STATE(4258), 1, - aux_sym_polyvar_type_repeat1, - STATE(4295), 1, + ACTIONS(5010), 1, + sym_escape_sequence, + ACTIONS(5014), 1, + aux_sym_character_token1, + ACTIONS(5297), 1, + anon_sym_SQUOTE, + STATE(3555), 1, + aux_sym_character_repeat1, + STATE(3626), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [206230] = 6, + [173319] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6044), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5299), 1, anon_sym_RBRACE, - ACTIONS(6046), 1, - anon_sym_COMMA, - STATE(4296), 2, + STATE(3627), 1, sym_decorator, - aux_sym_object_repeat1, + STATE(3869), 1, + sym_dict_pattern_entry, + STATE(4165), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206252] = 7, + [173346] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5337), 1, - anon_sym_RBRACE, - ACTIONS(6049), 1, + ACTIONS(4991), 1, + anon_sym_as, + ACTIONS(5301), 1, anon_sym_COMMA, - STATE(4297), 1, + ACTIONS(5303), 1, + anon_sym_GT, + STATE(3628), 1, sym_decorator, - STATE(4324), 1, - aux_sym_object_repeat1, + STATE(3845), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206276] = 7, + [173373] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(695), 1, - anon_sym_RPAREN, - ACTIONS(6051), 1, - anon_sym_COMMA, - STATE(4298), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5305), 1, + anon_sym_RBRACE, + STATE(3488), 1, + sym_switch_match, + STATE(3498), 1, + aux_sym_switch_expression_repeat1, + STATE(3629), 1, sym_decorator, - STATE(4422), 1, - aux_sym_variant_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206300] = 7, + [173400] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6053), 1, - anon_sym_COLON, - ACTIONS(6055), 1, - anon_sym_EQ_GT, - STATE(4299), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5307), 1, + anon_sym_RBRACE, + STATE(3488), 1, + sym_switch_match, + STATE(3522), 1, + aux_sym_switch_expression_repeat1, + STATE(3630), 1, sym_decorator, - STATE(5045), 1, - sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206324] = 7, + [173427] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2198), 1, + ACTIONS(225), 1, + anon_sym_COLON, + STATE(3631), 1, + sym_decorator, + STATE(4026), 1, + sym_type_annotation, + ACTIONS(5309), 2, anon_sym_RPAREN, - ACTIONS(6057), 1, anon_sym_COMMA, - STATE(4221), 1, - aux_sym_tuple_type_repeat1, - STATE(4300), 1, - sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206348] = 7, + [173452] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4952), 1, - anon_sym_RBRACE, - ACTIONS(6059), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5311), 1, + anon_sym_RPAREN, + ACTIONS(5314), 1, anon_sym_COMMA, - STATE(4233), 1, - aux_sym_object_type_repeat1, - STATE(4301), 1, + STATE(3632), 1, sym_decorator, + STATE(3870), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206372] = 7, + [173479] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2067), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5317), 1, anon_sym_RPAREN, - ACTIONS(6061), 1, + ACTIONS(5319), 1, anon_sym_COMMA, - STATE(4248), 1, - aux_sym__function_type_parameter_list_repeat1, - STATE(4302), 1, + STATE(3633), 1, sym_decorator, + STATE(3685), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206396] = 6, + [173506] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - STATE(4303), 1, + STATE(1656), 1, + sym_type_identifier, + STATE(3634), 1, sym_decorator, - ACTIONS(6063), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206418] = 7, + ACTIONS(2199), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [173529] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6065), 1, - anon_sym_RBRACK, - STATE(4258), 1, - aux_sym_polyvar_type_repeat1, - STATE(4304), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + ACTIONS(5321), 1, + anon_sym_RBRACE, + STATE(3635), 1, sym_decorator, + STATE(3695), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206442] = 7, + [173556] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(6067), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4305), 1, + STATE(3077), 1, + sym_type_identifier, + STATE(3636), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206466] = 7, + ACTIONS(2183), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [173579] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2154), 1, - anon_sym_GT, - ACTIONS(6069), 1, - anon_sym_COMMA, - STATE(4290), 1, - aux_sym_tuple_type_repeat1, - STATE(4306), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5323), 1, + anon_sym_RBRACE, + STATE(3488), 1, + sym_switch_match, + STATE(3502), 1, + aux_sym_switch_expression_repeat1, + STATE(3637), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206490] = 7, + [173606] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3701), 1, - anon_sym_COMMA, - ACTIONS(3703), 1, - anon_sym_RBRACK, - STATE(4307), 1, + STATE(3638), 1, sym_decorator, - STATE(4332), 1, - aux_sym_array_repeat1, + STATE(4009), 1, + sym_type_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206514] = 5, + ACTIONS(1628), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [173629] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4308), 1, + STATE(1658), 1, + sym_type_identifier, + STATE(3639), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(4824), 3, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_with, - [206534] = 7, + ACTIONS(2199), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [173652] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, + ACTIONS(5020), 1, anon_sym_PIPE, - ACTIONS(6071), 1, - anon_sym_RBRACK, - STATE(4256), 1, - aux_sym_polyvar_type_repeat1, - STATE(4309), 1, + ACTIONS(5325), 1, + anon_sym_RBRACE, + STATE(3488), 1, + sym_switch_match, + STATE(3503), 1, + aux_sym_switch_expression_repeat1, + STATE(3640), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206558] = 7, + [173679] = 8, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6073), 1, - anon_sym_RPAREN, - ACTIONS(6075), 1, - anon_sym_COMMA, - STATE(4310), 1, + ACTIONS(5327), 1, + anon_sym_DQUOTE, + STATE(3564), 1, + aux_sym_string_repeat1, + STATE(3641), 1, sym_decorator, - STATE(4395), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [206582] = 5, + ACTIONS(4999), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [173706] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4311), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5329), 1, + anon_sym_RPAREN, + ACTIONS(5332), 1, + anon_sym_COMMA, + STATE(3642), 1, sym_decorator, + STATE(3710), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5735), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - [206602] = 7, + [173733] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3787), 1, - anon_sym_LBRACE, - ACTIONS(6077), 1, - anon_sym_if, - STATE(2174), 1, - sym_block, - STATE(4312), 1, + ACTIONS(5020), 1, + anon_sym_PIPE, + ACTIONS(5335), 1, + anon_sym_RBRACE, + STATE(3488), 1, + sym_switch_match, + STATE(3498), 1, + aux_sym_switch_expression_repeat1, + STATE(3643), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206626] = 7, + [173760] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, + ACTIONS(5020), 1, anon_sym_PIPE, - ACTIONS(6071), 1, - anon_sym_RBRACK, - STATE(4258), 1, - aux_sym_polyvar_type_repeat1, - STATE(4313), 1, + ACTIONS(5337), 1, + anon_sym_RBRACE, + STATE(3488), 1, + sym_switch_match, + STATE(3566), 1, + aux_sym_switch_expression_repeat1, + STATE(3644), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206650] = 7, + [173787] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - STATE(4314), 1, + STATE(3645), 1, sym_decorator, - STATE(4659), 1, - sym_dict_pattern_entry, - STATE(4924), 1, - sym_string, + ACTIONS(5339), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5342), 2, + anon_sym_RBRACE, + anon_sym_PIPE, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206674] = 7, + [173810] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(6079), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4315), 1, + STATE(3646), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206698] = 7, + ACTIONS(5344), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [173831] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4090), 1, - anon_sym_RBRACE, - ACTIONS(6081), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5346), 1, + anon_sym_RPAREN, + ACTIONS(5348), 1, anon_sym_COMMA, - STATE(4266), 1, - aux_sym_record_pattern_repeat1, - STATE(4316), 1, + STATE(3647), 1, sym_decorator, + STATE(3794), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206722] = 7, + [173858] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(6083), 1, - sym_extension_identifier, - STATE(4317), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5350), 1, + anon_sym_RPAREN, + ACTIONS(5352), 1, + anon_sym_COMMA, + STATE(3648), 1, sym_decorator, - STATE(4345), 1, - aux_sym_extension_expression_repeat1, + STATE(3785), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206746] = 6, + [173885] = 8, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5059), 1, - anon_sym_PIPE, - STATE(4318), 1, + ACTIONS(787), 1, + anon_sym_DQUOTE, + ACTIONS(5354), 1, + aux_sym_polyvar_identifier_token1, + ACTIONS(5356), 1, + anon_sym_BSLASH, + STATE(1835), 1, + sym_string, + STATE(3649), 1, sym_decorator, - ACTIONS(6085), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206768] = 7, + [173912] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1207), 1, - aux_sym_variant_identifier_token1, - STATE(1101), 1, - sym_variant_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(4319), 1, + STATE(777), 1, + sym_type_identifier, + STATE(3650), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206792] = 5, + ACTIONS(3811), 3, + aux_sym_type_identifier_token1, + sym__identifier, + sym__escape_identifier, + [173935] = 9, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4320), 1, + ACTIONS(5010), 1, + sym_escape_sequence, + ACTIONS(5014), 1, + aux_sym_character_token1, + ACTIONS(5358), 1, + anon_sym_SQUOTE, + STATE(3555), 1, + aux_sym_character_repeat1, + STATE(3651), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - ACTIONS(3693), 3, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - [206812] = 7, + [173964] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6087), 1, + ACTIONS(4558), 1, anon_sym_RBRACE, - ACTIONS(6089), 1, + ACTIONS(5360), 1, anon_sym_COMMA, - STATE(4321), 1, + STATE(3652), 1, sym_decorator, - STATE(4367), 1, - aux_sym_list_repeat1, + STATE(3759), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206836] = 7, + [173988] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6091), 1, - anon_sym_RBRACE, - ACTIONS(6093), 1, - anon_sym_COMMA, - STATE(4322), 1, + ACTIONS(3470), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + anon_sym_if, + STATE(2661), 1, + sym_block, + STATE(3653), 1, sym_decorator, - STATE(4375), 1, - aux_sym_dict_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206860] = 7, + [174012] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5363), 1, + ACTIONS(5281), 1, anon_sym_RBRACE, - ACTIONS(6095), 1, + ACTIONS(5364), 1, anon_sym_COMMA, - STATE(4323), 1, + STATE(3654), 1, sym_decorator, - STATE(4378), 1, - aux_sym_object_repeat1, + STATE(3929), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206884] = 7, + [174036] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5363), 1, - anon_sym_RBRACE, - ACTIONS(6095), 1, - anon_sym_COMMA, - STATE(4296), 1, - aux_sym_object_repeat1, - STATE(4324), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5366), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3655), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206908] = 7, + [174060] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5429), 1, - anon_sym_RBRACE, - ACTIONS(6097), 1, - anon_sym_COMMA, - STATE(4325), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5370), 1, + anon_sym_RBRACK, + STATE(3656), 1, sym_decorator, - STATE(4347), 1, - aux_sym_object_repeat1, + STATE(3784), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206932] = 7, + [174084] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(6099), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4326), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5370), 1, + anon_sym_RBRACK, + STATE(3657), 1, sym_decorator, + STATE(3825), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206956] = 7, + [174108] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3725), 1, + ACTIONS(3753), 1, + anon_sym_RBRACE, + ACTIONS(5132), 1, anon_sym_COMMA, - ACTIONS(3727), 1, - anon_sym_RBRACK, - STATE(4327), 1, + STATE(3658), 1, sym_decorator, - STATE(4356), 1, - aux_sym_array_repeat1, + STATE(3665), 1, + aux_sym_record_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [206980] = 7, + [174132] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(6101), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4328), 1, + ACTIONS(4014), 1, + aux_sym_variant_identifier_token1, + STATE(1691), 1, + sym_variant_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(3659), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207004] = 7, + [174156] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3785), 1, - anon_sym_LBRACE, - ACTIONS(6103), 1, - anon_sym_if, - STATE(2093), 1, - sym_block, - STATE(4329), 1, + ACTIONS(5372), 1, + anon_sym_COMMA, + ACTIONS(5374), 1, + anon_sym_GT, + STATE(3660), 1, sym_decorator, + STATE(3774), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207028] = 6, + [174180] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6105), 1, - anon_sym_RPAREN, - ACTIONS(6107), 1, + ACTIONS(3426), 1, + anon_sym_RBRACK, + ACTIONS(5376), 1, anon_sym_COMMA, - STATE(4330), 2, + STATE(3661), 2, sym_decorator, - aux_sym_tuple_pattern_repeat1, + aux_sym_array_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207050] = 7, + [174202] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1248), 1, - aux_sym_variant_identifier_token1, - STATE(1101), 1, - sym_variant_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(4331), 1, + ACTIONS(2069), 1, + anon_sym_RPAREN, + ACTIONS(5379), 1, + anon_sym_COMMA, + STATE(3662), 1, sym_decorator, + STATE(3738), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207074] = 7, + [174226] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(605), 1, - anon_sym_RBRACK, - ACTIONS(6110), 1, - anon_sym_COMMA, - STATE(4332), 1, + sym__decorator_inline, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(3663), 1, sym_decorator, - STATE(4358), 1, - aux_sym_array_repeat1, + STATE(3887), 1, + aux_sym_member_expression_repeat1, + STATE(4228), 1, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207098] = 6, + [174250] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6112), 1, + ACTIONS(5383), 1, + anon_sym_COLON, + STATE(3664), 1, + sym_decorator, + ACTIONS(5381), 2, anon_sym_RBRACE, - ACTIONS(6114), 1, anon_sym_COMMA, - STATE(4333), 2, - sym_decorator, - aux_sym_list_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207120] = 7, + [174272] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6053), 1, - anon_sym_COLON, - ACTIONS(6117), 1, - anon_sym_EQ_GT, - STATE(4334), 1, + ACTIONS(5381), 1, + anon_sym_RBRACE, + ACTIONS(5385), 1, + anon_sym_COMMA, + STATE(3665), 2, sym_decorator, - STATE(4833), 1, - sym_module_type_annotation, + aux_sym_record_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207144] = 5, + [174294] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4335), 1, + ACTIONS(645), 1, + anon_sym_RPAREN, + ACTIONS(5388), 1, + anon_sym_COMMA, + STATE(3666), 1, sym_decorator, + STATE(3819), 1, + aux_sym_variant_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(3515), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [207164] = 7, + [174318] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5811), 1, - anon_sym_RPAREN, - ACTIONS(6119), 1, + ACTIONS(585), 1, + anon_sym_RBRACK, + ACTIONS(5390), 1, anon_sym_COMMA, - STATE(4336), 1, + STATE(3661), 1, + aux_sym_array_repeat1, + STATE(3667), 1, sym_decorator, - STATE(4450), 1, - aux_sym_functor_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207188] = 7, + [174342] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6121), 1, - anon_sym_RBRACE, - ACTIONS(6123), 1, + ACTIONS(5392), 1, + anon_sym_RPAREN, + ACTIONS(5394), 1, anon_sym_COMMA, - STATE(4337), 1, + STATE(3668), 1, sym_decorator, - STATE(4381), 1, - aux_sym_list_repeat1, + STATE(3674), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207212] = 7, + [174366] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(6125), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4338), 1, + ACTIONS(5396), 1, + anon_sym_RPAREN, + ACTIONS(5398), 1, + anon_sym_COMMA, + STATE(3669), 1, sym_decorator, + STATE(3747), 1, + aux_sym__variant_pattern_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207236] = 7, + [174390] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(6127), 1, - sym_extension_identifier, - STATE(4339), 1, + ACTIONS(3948), 1, + anon_sym_as, + STATE(3670), 1, sym_decorator, - STATE(4345), 1, - aux_sym_extension_expression_repeat1, + ACTIONS(5400), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207260] = 7, + [174412] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, + ACTIONS(4286), 1, anon_sym_LPAREN, - ACTIONS(6129), 1, + ACTIONS(5402), 1, anon_sym_DOT, - STATE(3312), 1, + STATE(2874), 1, sym_functor_arguments, - STATE(4340), 1, + STATE(3671), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207284] = 7, + [174436] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6131), 1, - anon_sym_RBRACE, - ACTIONS(6133), 1, - anon_sym_COMMA, - STATE(4341), 1, + ACTIONS(3474), 1, + anon_sym_LBRACE, + ACTIONS(5404), 1, + anon_sym_if, + STATE(1760), 1, + sym_block, + STATE(3672), 1, sym_decorator, - STATE(4383), 1, - aux_sym_dict_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207308] = 7, + [174460] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5455), 1, + ACTIONS(5406), 1, anon_sym_RBRACE, - ACTIONS(6135), 1, + ACTIONS(5408), 1, anon_sym_COMMA, - STATE(4342), 1, + STATE(3673), 1, sym_decorator, - STATE(4387), 1, - aux_sym_object_repeat1, + STATE(3697), 1, + aux_sym_record_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207332] = 7, + [174484] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5375), 1, - anon_sym_RBRACE, - ACTIONS(6137), 1, + ACTIONS(1461), 1, + anon_sym_RPAREN, + ACTIONS(5410), 1, anon_sym_COMMA, - STATE(4343), 1, + STATE(3674), 1, sym_decorator, - STATE(4353), 1, - aux_sym_object_repeat1, + STATE(3944), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207356] = 7, + [174508] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, + ACTIONS(4286), 1, anon_sym_LPAREN, - ACTIONS(6139), 1, + ACTIONS(5412), 1, anon_sym_DOT, - STATE(3312), 1, + STATE(2874), 1, sym_functor_arguments, - STATE(4344), 1, + STATE(3675), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207380] = 6, + [174532] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6141), 1, + ACTIONS(67), 1, anon_sym_PERCENT, - ACTIONS(6144), 1, + ACTIONS(5414), 1, sym_extension_identifier, - STATE(4345), 2, + STATE(3676), 1, sym_decorator, + STATE(3704), 1, aux_sym_extension_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207402] = 7, + [174556] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(713), 1, - anon_sym_RPAREN, - ACTIONS(6146), 1, - anon_sym_COMMA, - STATE(4346), 1, + STATE(3677), 1, sym_decorator, - STATE(4400), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207426] = 7, + ACTIONS(5190), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + [174576] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5455), 1, + ACTIONS(4498), 1, anon_sym_RBRACE, - ACTIONS(6135), 1, + ACTIONS(5416), 1, anon_sym_COMMA, - STATE(4296), 1, - aux_sym_object_repeat1, - STATE(4347), 1, + STATE(3678), 1, sym_decorator, + STATE(3705), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207450] = 7, + [174600] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3721), 1, - anon_sym_COMMA, - ACTIONS(3723), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5418), 1, anon_sym_RBRACK, - STATE(4348), 1, + STATE(3679), 1, sym_decorator, - STATE(4354), 1, - aux_sym_array_repeat1, + STATE(3714), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207474] = 6, + [174624] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - STATE(4349), 1, + ACTIONS(4827), 1, + anon_sym_RBRACE, + ACTIONS(5420), 1, + anon_sym_COMMA, + STATE(3680), 1, sym_decorator, - ACTIONS(6148), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, + STATE(3699), 1, + aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207496] = 7, + [174648] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6150), 1, - anon_sym_RBRACE, - ACTIONS(6152), 1, + ACTIONS(5422), 1, + anon_sym_RPAREN, + ACTIONS(5424), 1, anon_sym_COMMA, - STATE(4350), 1, + STATE(3681), 2, sym_decorator, - STATE(4360), 1, - aux_sym_list_repeat1, + aux_sym__variant_pattern_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207520] = 7, + [174670] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6154), 1, - anon_sym_RBRACE, - ACTIONS(6156), 1, - anon_sym_COMMA, - STATE(4351), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3682), 1, sym_decorator, - STATE(4362), 1, - aux_sym_dict_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207544] = 7, + [174694] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5379), 1, - anon_sym_RBRACE, - ACTIONS(6158), 1, + ACTIONS(3410), 1, anon_sym_COMMA, - STATE(4352), 1, + ACTIONS(3412), 1, + anon_sym_RBRACK, + STATE(3683), 1, sym_decorator, - STATE(4364), 1, - aux_sym_object_repeat1, + STATE(3702), 1, + aux_sym_array_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207568] = 7, + [174718] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5379), 1, - anon_sym_RBRACE, - ACTIONS(6158), 1, - anon_sym_COMMA, - STATE(4296), 1, - aux_sym_object_repeat1, - STATE(4353), 1, + STATE(3684), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207592] = 7, + ACTIONS(5429), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + [174738] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(611), 1, - anon_sym_RBRACK, - ACTIONS(6160), 1, + ACTIONS(2097), 1, + anon_sym_RPAREN, + ACTIONS(5431), 1, anon_sym_COMMA, - STATE(4354), 1, + STATE(3685), 1, sym_decorator, - STATE(4358), 1, - aux_sym_array_repeat1, + STATE(3738), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207616] = 7, + [174762] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4464), 1, - aux_sym_variant_identifier_token1, - STATE(1780), 1, - sym_variant_identifier, - STATE(3269), 1, - sym_module_identifier, - STATE(4355), 1, + ACTIONS(4500), 1, + anon_sym_RBRACE, + ACTIONS(5433), 1, + anon_sym_COMMA, + STATE(3686), 1, sym_decorator, + STATE(3726), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207640] = 7, + [174786] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(629), 1, - anon_sym_RBRACK, - ACTIONS(6162), 1, - anon_sym_COMMA, - STATE(4356), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(3687), 1, sym_decorator, - STATE(4358), 1, - aux_sym_array_repeat1, + STATE(3887), 1, + aux_sym_member_expression_repeat1, + STATE(4384), 1, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207664] = 5, + [174810] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4357), 1, + STATE(3688), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(6164), 3, + ACTIONS(3382), 3, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [207684] = 6, + [174830] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3813), 1, + ACTIONS(593), 1, anon_sym_RBRACK, - ACTIONS(6166), 1, + ACTIONS(5435), 1, anon_sym_COMMA, - STATE(4358), 2, - sym_decorator, + STATE(3661), 1, aux_sym_array_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [207706] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3797), 1, - anon_sym_LBRACE, - ACTIONS(6169), 1, - anon_sym_if, - STATE(1839), 1, - sym_block, - STATE(4359), 1, + STATE(3689), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207730] = 7, + [174854] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(571), 1, - anon_sym_RBRACE, - ACTIONS(6171), 1, + ACTIONS(2059), 1, + anon_sym_RPAREN, + ACTIONS(5437), 1, anon_sym_COMMA, - STATE(4333), 1, - aux_sym_list_repeat1, - STATE(4360), 1, + STATE(3690), 1, sym_decorator, + STATE(3738), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207754] = 5, + [174878] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4361), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(5439), 1, + sym_extension_identifier, + STATE(3691), 1, sym_decorator, + STATE(3704), 1, + aux_sym_extension_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5748), 3, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_COMMA, - [207774] = 7, + [174902] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5680), 1, + ACTIONS(5441), 1, anon_sym_RBRACE, - ACTIONS(6173), 1, + ACTIONS(5443), 1, anon_sym_COMMA, - STATE(4362), 1, + STATE(3692), 1, sym_decorator, - STATE(4420), 1, - aux_sym_dict_repeat1, + STATE(3719), 1, + aux_sym_list_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207798] = 5, + [174926] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4363), 1, + STATE(3693), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(5853), 3, + ACTIONS(5445), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - [207818] = 7, + [174946] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5389), 1, - anon_sym_RBRACE, - ACTIONS(6175), 1, - anon_sym_COMMA, - STATE(4296), 1, - aux_sym_object_repeat1, - STATE(4364), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(3694), 1, sym_decorator, + STATE(3887), 1, + aux_sym_member_expression_repeat1, + STATE(4280), 1, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207842] = 7, + [174970] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6177), 1, + ACTIONS(5447), 1, anon_sym_RBRACE, - ACTIONS(6179), 1, + ACTIONS(5449), 1, anon_sym_COMMA, - STATE(4365), 1, + STATE(3695), 1, sym_decorator, - STATE(4385), 1, - aux_sym_record_repeat1, + STATE(3721), 1, + aux_sym_dict_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207866] = 7, + [174994] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6181), 1, - anon_sym_RPAREN, - ACTIONS(6183), 1, + ACTIONS(4838), 1, + anon_sym_RBRACE, + ACTIONS(5451), 1, anon_sym_COMMA, - STATE(4366), 1, + STATE(3696), 1, sym_decorator, - STATE(4418), 1, - aux_sym_functor_arguments_repeat1, + STATE(3722), 1, + aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207890] = 7, + [175018] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(569), 1, + ACTIONS(4004), 1, anon_sym_RBRACE, - ACTIONS(6185), 1, + ACTIONS(5453), 1, anon_sym_COMMA, - STATE(4333), 1, - aux_sym_list_repeat1, - STATE(4367), 1, + STATE(3697), 1, sym_decorator, + STATE(3796), 1, + aux_sym_record_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207914] = 7, + [175042] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6187), 1, - anon_sym_RBRACE, - ACTIONS(6189), 1, - anon_sym_COMMA, - STATE(4368), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(3698), 1, sym_decorator, - STATE(4392), 1, - aux_sym_record_type_repeat1, + STATE(3887), 1, + aux_sym_member_expression_repeat1, + STATE(4299), 1, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207938] = 7, + [175066] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5037), 1, + ACTIONS(4838), 1, anon_sym_RBRACE, - ACTIONS(6191), 1, + ACTIONS(5451), 1, anon_sym_COMMA, - STATE(4369), 1, + STATE(3699), 1, sym_decorator, - STATE(4393), 1, - aux_sym_object_type_repeat1, + STATE(3824), 1, + aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207962] = 7, + [175090] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(4370), 1, + ACTIONS(4752), 1, + anon_sym_PIPE, + STATE(3700), 1, sym_decorator, - STATE(4525), 1, - aux_sym_member_expression_repeat1, - STATE(5009), 1, - sym_module_identifier, + ACTIONS(5455), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [207986] = 7, + [175112] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6193), 1, - anon_sym_RBRACK, - STATE(4371), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5457), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3701), 1, sym_decorator, - STATE(4396), 1, - aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208010] = 6, + [175136] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(829), 1, - sym_type_identifier, - STATE(4372), 1, + ACTIONS(561), 1, + anon_sym_RBRACK, + ACTIONS(5459), 1, + anon_sym_COMMA, + STATE(3661), 1, + aux_sym_array_repeat1, + STATE(3702), 1, sym_decorator, - ACTIONS(4192), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208032] = 6, + [175160] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(825), 1, - sym_type_identifier, - STATE(4373), 1, + ACTIONS(545), 1, + anon_sym_RBRACE, + ACTIONS(5461), 1, + anon_sym_COMMA, + STATE(3703), 1, sym_decorator, - ACTIONS(4192), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3834), 1, + aux_sym_list_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208054] = 7, + [175184] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5748), 1, - anon_sym_EQ_GT, - ACTIONS(6195), 1, - anon_sym_with, - STATE(3911), 1, - sym__module_type_constraint_with, - STATE(4374), 1, + ACTIONS(5463), 1, + anon_sym_PERCENT, + ACTIONS(5466), 1, + sym_extension_identifier, + STATE(3704), 2, sym_decorator, + aux_sym_extension_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208078] = 7, + [175206] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5719), 1, + ACTIONS(4500), 1, anon_sym_RBRACE, - ACTIONS(6197), 1, + ACTIONS(5433), 1, anon_sym_COMMA, - STATE(4375), 1, + STATE(3705), 1, sym_decorator, - STATE(4420), 1, - aux_sym_dict_repeat1, + STATE(3802), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208102] = 7, + [175230] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1555), 1, - anon_sym_RPAREN, - ACTIONS(6199), 1, - anon_sym_COMMA, - STATE(4214), 1, - aux_sym__variant_pattern_parameters_repeat1, - STATE(4376), 1, + STATE(3706), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208126] = 6, + ACTIONS(5468), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + [175250] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6203), 1, - anon_sym_COLON, - STATE(4377), 1, - sym_decorator, - ACTIONS(6201), 2, + ACTIONS(4952), 1, anon_sym_RBRACE, + ACTIONS(5470), 1, anon_sym_COMMA, + STATE(3707), 1, + sym_decorator, + STATE(3912), 1, + aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208148] = 7, + [175274] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5391), 1, + ACTIONS(5295), 1, anon_sym_RBRACE, - ACTIONS(6205), 1, + ACTIONS(5472), 1, anon_sym_COMMA, - STATE(4296), 1, - aux_sym_object_repeat1, - STATE(4378), 1, + STATE(3708), 1, sym_decorator, + STATE(3852), 1, + aux_sym_dict_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208172] = 7, + [175298] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(703), 1, - anon_sym_RPAREN, - ACTIONS(6207), 1, + ACTIONS(4521), 1, + anon_sym_GT, + ACTIONS(5474), 1, anon_sym_COMMA, - STATE(4379), 1, + STATE(3709), 1, sym_decorator, - STATE(4397), 1, - aux_sym_variant_arguments_repeat1, + STATE(3716), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208196] = 7, + [175322] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(703), 1, + ACTIONS(2099), 1, anon_sym_RPAREN, - ACTIONS(6207), 1, + ACTIONS(5476), 1, anon_sym_COMMA, - STATE(4380), 1, + STATE(3710), 1, sym_decorator, - STATE(4422), 1, - aux_sym_variant_arguments_repeat1, + STATE(3738), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208220] = 7, + [175346] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(583), 1, - anon_sym_RBRACE, - ACTIONS(6209), 1, - anon_sym_COMMA, - STATE(4333), 1, - aux_sym_list_repeat1, - STATE(4381), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5478), 1, + anon_sym_RBRACK, + STATE(3711), 1, sym_decorator, + STATE(3732), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208244] = 7, + [175370] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6211), 1, - anon_sym_RBRACE, - ACTIONS(6213), 1, + ACTIONS(633), 1, + anon_sym_RPAREN, + ACTIONS(5480), 1, anon_sym_COMMA, - STATE(4382), 1, + STATE(3712), 1, sym_decorator, - STATE(4424), 1, - aux_sym_record_repeat1, + STATE(3798), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208268] = 7, + [175394] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5650), 1, + ACTIONS(4975), 1, anon_sym_RBRACE, - ACTIONS(6215), 1, + ACTIONS(5482), 1, anon_sym_COMMA, - STATE(4383), 1, + STATE(3713), 1, sym_decorator, - STATE(4420), 1, - aux_sym_dict_repeat1, + STATE(3824), 1, + aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208292] = 7, + [175418] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(633), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5478), 1, anon_sym_RBRACK, - ACTIONS(6217), 1, - anon_sym_COMMA, - STATE(4358), 1, - aux_sym_array_repeat1, - STATE(4384), 1, + STATE(3714), 1, sym_decorator, + STATE(3825), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208316] = 7, + [175442] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4014), 1, + ACTIONS(5484), 1, anon_sym_RBRACE, - ACTIONS(6219), 1, + ACTIONS(5486), 1, anon_sym_COMMA, - STATE(4385), 1, + STATE(3715), 1, sym_decorator, - STATE(4515), 1, + STATE(3777), 1, aux_sym_record_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208340] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(645), 1, - anon_sym_RPAREN, - ACTIONS(6221), 1, - anon_sym_COMMA, - STATE(4386), 1, - sym_decorator, - STATE(4400), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [208364] = 7, + [175466] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5193), 1, - anon_sym_RBRACE, - ACTIONS(6223), 1, + ACTIONS(5488), 1, anon_sym_COMMA, - STATE(4296), 1, - aux_sym_object_repeat1, - STATE(4387), 1, + ACTIONS(5491), 1, + anon_sym_GT, + STATE(3716), 2, sym_decorator, + aux_sym_type_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208388] = 7, + [175488] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2158), 1, + ACTIONS(657), 1, anon_sym_RPAREN, - ACTIONS(6225), 1, + ACTIONS(5493), 1, anon_sym_COMMA, - STATE(4221), 1, - aux_sym_tuple_type_repeat1, - STATE(4388), 1, + STATE(3717), 1, sym_decorator, + STATE(3817), 1, + aux_sym_variant_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208412] = 7, + [175512] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6227), 1, + ACTIONS(4494), 1, anon_sym_RBRACE, - ACTIONS(6229), 1, + ACTIONS(5495), 1, anon_sym_COMMA, - STATE(4389), 1, + STATE(3718), 1, sym_decorator, - STATE(4455), 1, - aux_sym_record_repeat1, + STATE(3802), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208436] = 7, + [175536] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4959), 1, + ACTIONS(547), 1, anon_sym_RBRACE, - ACTIONS(6231), 1, + ACTIONS(5497), 1, anon_sym_COMMA, - STATE(4390), 1, + STATE(3719), 1, sym_decorator, - STATE(4401), 1, - aux_sym_object_type_repeat1, + STATE(3834), 1, + aux_sym_list_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208460] = 7, - ACTIONS(3), 1, - sym_line_comment, + [175560] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6233), 1, - anon_sym_DQUOTE, - STATE(4391), 1, + STATE(3720), 1, sym_decorator, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - ACTIONS(6235), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [208484] = 7, + sym_line_comment, + ACTIONS(5242), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + [175580] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4337), 1, + ACTIONS(5116), 1, anon_sym_RBRACE, - ACTIONS(6237), 1, + ACTIONS(5499), 1, anon_sym_COMMA, - STATE(4229), 1, - aux_sym_record_type_repeat1, - STATE(4392), 1, + STATE(3721), 1, sym_decorator, + STATE(3852), 1, + aux_sym_dict_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208508] = 7, + [175604] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4959), 1, + ACTIONS(4842), 1, anon_sym_RBRACE, - ACTIONS(6231), 1, + ACTIONS(5501), 1, anon_sym_COMMA, - STATE(4233), 1, - aux_sym_object_type_repeat1, - STATE(4393), 1, + STATE(3722), 1, sym_decorator, + STATE(3824), 1, + aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208532] = 7, + [175628] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2160), 1, - anon_sym_RPAREN, - ACTIONS(6239), 1, - anon_sym_COMMA, - STATE(4221), 1, - aux_sym_tuple_type_repeat1, - STATE(4394), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(3723), 1, sym_decorator, + STATE(3887), 1, + aux_sym_member_expression_repeat1, + STATE(4314), 1, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208556] = 7, + [175652] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1543), 1, + ACTIONS(657), 1, anon_sym_RPAREN, - ACTIONS(6241), 1, + ACTIONS(5493), 1, anon_sym_COMMA, - STATE(4330), 1, - aux_sym_tuple_pattern_repeat1, - STATE(4395), 1, + STATE(3724), 1, sym_decorator, + STATE(3819), 1, + aux_sym_variant_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208580] = 7, + [175676] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6243), 1, - anon_sym_RBRACK, - STATE(4258), 1, - aux_sym_polyvar_type_repeat1, - STATE(4396), 1, + ACTIONS(5503), 1, + anon_sym_RBRACE, + ACTIONS(5505), 1, + anon_sym_COMMA, + STATE(3725), 1, sym_decorator, + STATE(3746), 1, + aux_sym_record_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208604] = 7, + [175700] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(649), 1, - anon_sym_RPAREN, - ACTIONS(6245), 1, + ACTIONS(4502), 1, + anon_sym_RBRACE, + ACTIONS(5507), 1, anon_sym_COMMA, - STATE(4397), 1, + STATE(3726), 1, sym_decorator, - STATE(4422), 1, - aux_sym_variant_arguments_repeat1, + STATE(3802), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208628] = 7, + [175724] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6247), 1, - anon_sym_RBRACE, - ACTIONS(6249), 1, + ACTIONS(1967), 1, + anon_sym_RPAREN, + ACTIONS(5509), 1, anon_sym_COMMA, - STATE(4238), 1, - aux_sym_list_repeat1, - STATE(4398), 1, + STATE(3727), 1, sym_decorator, + STATE(3815), 1, + aux_sym__function_type_parameter_list_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208652] = 7, + [175748] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6251), 1, - anon_sym_RBRACE, - ACTIONS(6253), 1, - anon_sym_COMMA, - STATE(4399), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5511), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3728), 1, sym_decorator, - STATE(4448), 1, - aux_sym_record_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208676] = 6, + [175772] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3789), 1, + ACTIONS(3948), 1, + anon_sym_as, + STATE(3729), 1, + sym_decorator, + ACTIONS(5513), 2, anon_sym_RPAREN, - ACTIONS(6255), 1, anon_sym_COMMA, - STATE(4400), 2, - sym_decorator, - aux_sym_tuple_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208698] = 7, + [175794] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5013), 1, + ACTIONS(5515), 1, anon_sym_RBRACE, - ACTIONS(6258), 1, + ACTIONS(5517), 1, anon_sym_COMMA, - STATE(4233), 1, - aux_sym_object_type_repeat1, - STATE(4401), 1, + STATE(3730), 1, sym_decorator, + STATE(3789), 1, + aux_sym_record_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208722] = 7, + [175818] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5029), 1, + ACTIONS(4523), 1, anon_sym_RBRACE, - ACTIONS(6260), 1, + ACTIONS(5519), 1, anon_sym_COMMA, - STATE(4402), 1, + STATE(3731), 1, sym_decorator, - STATE(4454), 1, + STATE(3795), 1, aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208746] = 7, + [175842] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, + ACTIONS(5368), 1, anon_sym_PIPE, - ACTIONS(6262), 1, + ACTIONS(5521), 1, anon_sym_RBRACK, - STATE(4258), 1, - aux_sym_polyvar_type_repeat1, - STATE(4403), 1, + STATE(3732), 1, sym_decorator, + STATE(3825), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208770] = 7, + [175866] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2166), 1, - anon_sym_GT, - ACTIONS(6264), 1, + ACTIONS(5523), 1, + anon_sym_RBRACE, + ACTIONS(5525), 1, anon_sym_COMMA, - STATE(4290), 1, - aux_sym_tuple_type_repeat1, - STATE(4404), 1, + STATE(3733), 1, sym_decorator, + STATE(3756), 1, + aux_sym_record_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208794] = 7, + [175890] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5055), 1, - anon_sym_GT, - ACTIONS(6266), 1, + ACTIONS(4506), 1, + anon_sym_RBRACE, + ACTIONS(5527), 1, anon_sym_COMMA, - STATE(4217), 1, - aux_sym_type_parameters_repeat1, - STATE(4405), 1, + STATE(3734), 1, sym_decorator, + STATE(3753), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208818] = 7, + [175914] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6268), 1, - anon_sym_RBRACE, - ACTIONS(6270), 1, - anon_sym_COMMA, - STATE(4228), 1, - aux_sym_array_pattern_repeat1, - STATE(4406), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5529), 1, + anon_sym_RBRACK, + STATE(3735), 1, sym_decorator, + STATE(3762), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208842] = 7, + [175938] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6272), 1, - anon_sym_RBRACE, - ACTIONS(6274), 1, + ACTIONS(2105), 1, + anon_sym_GT, + ACTIONS(5531), 1, anon_sym_COMMA, - STATE(4407), 1, + STATE(3736), 1, sym_decorator, - STATE(4475), 1, - aux_sym_record_type_repeat1, + STATE(3758), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208866] = 7, + [175962] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, + ACTIONS(5368), 1, anon_sym_PIPE, - ACTIONS(6276), 1, + ACTIONS(5533), 1, anon_sym_RBRACK, - STATE(4408), 1, + STATE(3737), 1, sym_decorator, - STATE(4464), 1, + STATE(3825), 1, aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208890] = 6, + [175986] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1079), 1, - sym_type_identifier, - STATE(4409), 1, + ACTIONS(5513), 1, + anon_sym_RPAREN, + ACTIONS(5535), 1, + anon_sym_COMMA, + STATE(3738), 2, sym_decorator, - ACTIONS(4208), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208912] = 6, + [176008] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1080), 1, - sym_type_identifier, - STATE(4410), 1, + ACTIONS(3948), 1, + anon_sym_as, + STATE(3739), 1, sym_decorator, - ACTIONS(4208), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + ACTIONS(5538), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208934] = 7, + [176030] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4908), 1, - anon_sym_RBRACE, - ACTIONS(6278), 1, - anon_sym_COMMA, - STATE(4411), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5540), 1, + anon_sym_RBRACK, + STATE(3740), 1, sym_decorator, - STATE(4480), 1, - aux_sym_object_type_repeat1, + STATE(3803), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208958] = 7, + [176054] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2188), 1, - anon_sym_RPAREN, - ACTIONS(6280), 1, + ACTIONS(2081), 1, + anon_sym_GT, + ACTIONS(5542), 1, anon_sym_COMMA, - STATE(4221), 1, - aux_sym_tuple_type_repeat1, - STATE(4412), 1, + STATE(3741), 1, sym_decorator, + STATE(3758), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [208982] = 7, + [176078] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6282), 1, - anon_sym_RBRACK, - STATE(4413), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4782), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3742), 1, sym_decorator, - STATE(4498), 1, - aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209006] = 6, + [176102] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3527), 1, - sym_type_identifier, - STATE(4414), 1, + ACTIONS(4344), 1, + anon_sym_COLON, + ACTIONS(4931), 1, + anon_sym_RPAREN, + STATE(3743), 1, sym_decorator, - ACTIONS(4212), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(4110), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209028] = 6, + [176126] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(3587), 1, - sym_type_identifier, - STATE(4415), 1, + ACTIONS(639), 1, + anon_sym_RPAREN, + ACTIONS(5544), 1, + anon_sym_COMMA, + STATE(3744), 1, sym_decorator, - ACTIONS(4212), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3764), 1, + aux_sym_variant_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209050] = 7, + [176150] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(647), 1, + ACTIONS(639), 1, anon_sym_RPAREN, - ACTIONS(6284), 1, + ACTIONS(5544), 1, anon_sym_COMMA, - STATE(4416), 1, + STATE(3745), 1, sym_decorator, - STATE(4479), 1, + STATE(3819), 1, aux_sym_variant_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209074] = 7, + [176174] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(647), 1, - anon_sym_RPAREN, - ACTIONS(6284), 1, + ACTIONS(3657), 1, + anon_sym_RBRACE, + ACTIONS(5546), 1, anon_sym_COMMA, - STATE(4417), 1, + STATE(3746), 1, sym_decorator, - STATE(4422), 1, - aux_sym_variant_arguments_repeat1, + STATE(3884), 1, + aux_sym_record_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209098] = 7, + [176198] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4082), 1, + ACTIONS(1439), 1, anon_sym_RPAREN, - ACTIONS(6286), 1, + ACTIONS(5548), 1, anon_sym_COMMA, - STATE(4418), 1, + STATE(3681), 1, + aux_sym__variant_pattern_parameters_repeat1, + STATE(3747), 1, sym_decorator, - STATE(4466), 1, - aux_sym_functor_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209122] = 5, + [176222] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4419), 1, + ACTIONS(659), 1, + anon_sym_RPAREN, + ACTIONS(5550), 1, + anon_sym_COMMA, + STATE(3748), 1, sym_decorator, + STATE(3798), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(6288), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [209142] = 6, + [176246] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6290), 1, - anon_sym_RBRACE, - ACTIONS(6292), 1, + ACTIONS(3398), 1, anon_sym_COMMA, - STATE(4420), 2, + ACTIONS(3400), 1, + anon_sym_RBRACK, + STATE(3689), 1, + aux_sym_array_repeat1, + STATE(3749), 1, sym_decorator, - aux_sym_dict_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209164] = 7, + [176270] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(669), 1, + ACTIONS(3735), 1, anon_sym_RPAREN, - ACTIONS(6295), 1, + ACTIONS(5552), 1, anon_sym_COMMA, - STATE(4421), 1, + STATE(3750), 1, sym_decorator, - STATE(4422), 1, - aux_sym_variant_arguments_repeat1, + STATE(3838), 1, + aux_sym_functor_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209188] = 6, + [176294] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3653), 1, - anon_sym_RPAREN, - ACTIONS(6297), 1, - anon_sym_COMMA, - STATE(4422), 2, + ACTIONS(3948), 1, + anon_sym_as, + STATE(3751), 1, sym_decorator, - aux_sym_variant_arguments_repeat1, + ACTIONS(5554), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209210] = 7, + [176316] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5055), 1, - anon_sym_GT, - ACTIONS(6266), 1, + ACTIONS(2057), 1, + anon_sym_RPAREN, + ACTIONS(5556), 1, anon_sym_COMMA, - STATE(4219), 1, - aux_sym_type_parameters_repeat1, - STATE(4423), 1, + STATE(3738), 1, + aux_sym_tuple_type_repeat1, + STATE(3752), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209234] = 7, + [176340] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4024), 1, + ACTIONS(4560), 1, anon_sym_RBRACE, - ACTIONS(6300), 1, + ACTIONS(5558), 1, anon_sym_COMMA, - STATE(4424), 1, + STATE(3753), 1, sym_decorator, - STATE(4515), 1, - aux_sym_record_repeat1, + STATE(3802), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209258] = 7, + [176364] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6302), 1, + ACTIONS(4566), 1, + anon_sym_RBRACE, + ACTIONS(5560), 1, anon_sym_COMMA, - ACTIONS(6304), 1, - anon_sym_RBRACK, - STATE(4425), 1, + STATE(3754), 1, sym_decorator, - STATE(4528), 1, - aux_sym_array_pattern_repeat1, + STATE(3768), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209282] = 7, + [176388] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(6306), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4426), 1, + STATE(3755), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209306] = 7, + ACTIONS(5562), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_when, + [176408] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(6308), 1, - sym_extension_identifier, - STATE(4345), 1, - aux_sym_extension_expression_repeat1, - STATE(4427), 1, + ACTIONS(4008), 1, + anon_sym_RBRACE, + ACTIONS(5564), 1, + anon_sym_COMMA, + STATE(3756), 1, sym_decorator, + STATE(3796), 1, + aux_sym_record_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209330] = 6, + [176432] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, + ACTIONS(4991), 1, anon_sym_as, - STATE(4428), 1, + STATE(3757), 1, sym_decorator, - ACTIONS(6310), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, + ACTIONS(5513), 2, + anon_sym_COMMA, + anon_sym_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209352] = 7, + [176454] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5411), 1, - anon_sym_RBRACE, - ACTIONS(6312), 1, + ACTIONS(5513), 1, + anon_sym_GT, + ACTIONS(5566), 1, anon_sym_COMMA, - STATE(4429), 1, + STATE(3758), 2, sym_decorator, - STATE(4440), 1, - aux_sym_object_repeat1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209376] = 7, + [176476] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(6314), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4430), 1, + ACTIONS(4566), 1, + anon_sym_RBRACE, + ACTIONS(5560), 1, + anon_sym_COMMA, + STATE(3759), 1, sym_decorator, + STATE(3802), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209400] = 7, + [176500] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3733), 1, + ACTIONS(2061), 1, + anon_sym_RPAREN, + ACTIONS(5569), 1, anon_sym_COMMA, - ACTIONS(3735), 1, - anon_sym_RBRACK, - STATE(4431), 1, + STATE(3738), 1, + aux_sym_tuple_type_repeat1, + STATE(3760), 1, sym_decorator, - STATE(4443), 1, - aux_sym_array_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209424] = 7, + [176524] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6316), 1, - anon_sym_RBRACE, - ACTIONS(6318), 1, - anon_sym_COMMA, - STATE(4243), 1, - aux_sym_dict_pattern_repeat1, - STATE(4432), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5571), 1, + anon_sym_RBRACK, + STATE(3761), 1, sym_decorator, + STATE(3772), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209448] = 7, + [176548] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(717), 1, - anon_sym_RPAREN, - ACTIONS(6320), 1, - anon_sym_COMMA, - STATE(4433), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5571), 1, + anon_sym_RBRACK, + STATE(3762), 1, sym_decorator, - STATE(4511), 1, - aux_sym_variant_arguments_repeat1, + STATE(3825), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209472] = 7, + [176572] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(657), 1, - anon_sym_RPAREN, - ACTIONS(6322), 1, + ACTIONS(4492), 1, + anon_sym_RBRACE, + ACTIONS(5573), 1, anon_sym_COMMA, - STATE(4400), 1, - aux_sym_tuple_repeat1, - STATE(4434), 1, + STATE(3718), 1, + aux_sym_object_type_repeat1, + STATE(3763), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209496] = 7, + [176596] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(717), 1, + ACTIONS(605), 1, anon_sym_RPAREN, - ACTIONS(6320), 1, + ACTIONS(5575), 1, anon_sym_COMMA, - STATE(4422), 1, - aux_sym_variant_arguments_repeat1, - STATE(4435), 1, + STATE(3764), 1, sym_decorator, + STATE(3819), 1, + aux_sym_variant_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209520] = 7, + [176620] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6324), 1, - anon_sym_RBRACE, - ACTIONS(6326), 1, - anon_sym_COMMA, - STATE(4245), 1, - aux_sym_dict_repeat1, - STATE(4436), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5577), 1, + anon_sym_RBRACK, + STATE(3765), 1, sym_decorator, + STATE(3820), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209544] = 7, + [176644] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6328), 1, - anon_sym_RBRACE, - ACTIONS(6330), 1, + ACTIONS(4574), 1, + anon_sym_GT, + ACTIONS(5579), 1, anon_sym_COMMA, - STATE(4437), 1, + STATE(3709), 1, + aux_sym_type_parameters_repeat1, + STATE(3766), 1, sym_decorator, - STATE(4449), 1, - aux_sym_list_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209568] = 7, + [176668] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6332), 1, - anon_sym_RBRACE, - ACTIONS(6334), 1, - anon_sym_COMMA, - STATE(4438), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5581), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3767), 1, sym_decorator, - STATE(4451), 1, - aux_sym_dict_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209592] = 7, + [176692] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5413), 1, + ACTIONS(4572), 1, anon_sym_RBRACE, - ACTIONS(6336), 1, + ACTIONS(5583), 1, anon_sym_COMMA, - STATE(4439), 1, + STATE(3768), 1, sym_decorator, - STATE(4452), 1, - aux_sym_object_repeat1, + STATE(3802), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209616] = 7, + [176716] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5413), 1, - anon_sym_RBRACE, - ACTIONS(6336), 1, + ACTIONS(649), 1, + anon_sym_RPAREN, + ACTIONS(5585), 1, anon_sym_COMMA, - STATE(4296), 1, - aux_sym_object_repeat1, - STATE(4440), 1, + STATE(3769), 1, sym_decorator, + STATE(3828), 1, + aux_sym_variant_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209640] = 6, + [176740] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5059), 1, - anon_sym_PIPE, - STATE(4441), 1, - sym_decorator, - ACTIONS(6338), 2, + ACTIONS(4525), 1, anon_sym_RBRACE, + ACTIONS(5587), 1, anon_sym_COMMA, + STATE(3770), 1, + sym_decorator, + STATE(3802), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209662] = 7, + [176764] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2202), 1, + ACTIONS(649), 1, anon_sym_RPAREN, - ACTIONS(6340), 1, + ACTIONS(5585), 1, anon_sym_COMMA, - STATE(4221), 1, - aux_sym_tuple_type_repeat1, - STATE(4442), 1, + STATE(3771), 1, sym_decorator, + STATE(3819), 1, + aux_sym_variant_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209686] = 7, + [176788] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(621), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5589), 1, anon_sym_RBRACK, - ACTIONS(6342), 1, - anon_sym_COMMA, - STATE(4358), 1, - aux_sym_array_repeat1, - STATE(4443), 1, - sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [209710] = 7, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(3791), 1, - anon_sym_LBRACE, - ACTIONS(6344), 1, - anon_sym_if, - STATE(998), 1, - sym_block, - STATE(4444), 1, + STATE(3772), 1, sym_decorator, + STATE(3825), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209734] = 7, + [176812] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4670), 1, - anon_sym_COLON, - ACTIONS(5403), 1, - anon_sym_RPAREN, - STATE(4445), 1, + ACTIONS(2091), 1, + anon_sym_GT, + ACTIONS(5591), 1, + anon_sym_COMMA, + STATE(3758), 1, + aux_sym_tuple_type_repeat1, + STATE(3773), 1, sym_decorator, - STATE(5018), 1, - sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209758] = 7, + [176836] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6346), 1, - anon_sym_RPAREN, - ACTIONS(6348), 1, + ACTIONS(4574), 1, + anon_sym_GT, + ACTIONS(5579), 1, anon_sym_COMMA, - STATE(4240), 1, - aux_sym_formal_parameters_repeat1, - STATE(4446), 1, + STATE(3716), 1, + aux_sym_type_parameters_repeat1, + STATE(3774), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209782] = 7, + [176860] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4933), 1, - anon_sym_RBRACE, - ACTIONS(6350), 1, - anon_sym_COMMA, - STATE(4447), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5593), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3775), 1, sym_decorator, - STATE(4497), 1, - aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209806] = 7, + [176884] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4345), 1, - anon_sym_RBRACE, - ACTIONS(6352), 1, + ACTIONS(5595), 1, + anon_sym_RPAREN, + ACTIONS(5597), 1, anon_sym_COMMA, - STATE(4229), 1, - aux_sym_record_type_repeat1, - STATE(4448), 1, + STATE(3776), 1, sym_decorator, + STATE(3859), 1, + aux_sym_functor_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209830] = 7, + [176908] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(523), 1, + ACTIONS(3667), 1, anon_sym_RBRACE, - ACTIONS(6354), 1, + ACTIONS(5599), 1, anon_sym_COMMA, - STATE(4333), 1, - aux_sym_list_repeat1, - STATE(4449), 1, + STATE(3777), 1, sym_decorator, + STATE(3884), 1, + aux_sym_record_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209854] = 6, + [176932] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6356), 1, - anon_sym_RPAREN, - ACTIONS(6358), 1, - anon_sym_COMMA, - STATE(4450), 2, + ACTIONS(3948), 1, + anon_sym_as, + STATE(3778), 1, sym_decorator, - aux_sym_functor_parameters_repeat1, + ACTIONS(5601), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209876] = 7, + [176954] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5596), 1, - anon_sym_RBRACE, - ACTIONS(6361), 1, - anon_sym_COMMA, - STATE(4420), 1, - aux_sym_dict_repeat1, - STATE(4451), 1, + STATE(3779), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209900] = 7, + ACTIONS(3222), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + [176974] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5419), 1, - anon_sym_RBRACE, - ACTIONS(6363), 1, + ACTIONS(663), 1, + anon_sym_RPAREN, + ACTIONS(5603), 1, anon_sym_COMMA, - STATE(4296), 1, - aux_sym_object_repeat1, - STATE(4452), 1, + STATE(3780), 1, sym_decorator, + STATE(3798), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209924] = 7, + [176998] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6365), 1, + ACTIONS(5605), 1, anon_sym_RBRACE, - ACTIONS(6367), 1, + ACTIONS(5607), 1, anon_sym_COMMA, - STATE(4453), 1, + STATE(3781), 1, sym_decorator, - STATE(4474), 1, - aux_sym_record_repeat1, + STATE(3882), 1, + aux_sym_record_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209948] = 7, + [177022] = 7, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4933), 1, - anon_sym_RBRACE, - ACTIONS(6350), 1, - anon_sym_COMMA, - STATE(4233), 1, - aux_sym_object_type_repeat1, - STATE(4454), 1, + ACTIONS(5609), 1, + anon_sym_DQUOTE, + STATE(3782), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [209972] = 7, + ACTIONS(5611), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [177046] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4022), 1, - anon_sym_RBRACE, - ACTIONS(6369), 1, - anon_sym_COMMA, - STATE(4455), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(3783), 1, sym_decorator, - STATE(4515), 1, - aux_sym_record_repeat1, + STATE(3887), 1, + aux_sym_member_expression_repeat1, + STATE(4232), 1, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [209996] = 7, + [177070] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6371), 1, - anon_sym_RBRACE, - ACTIONS(6373), 1, - anon_sym_COMMA, - STATE(4456), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5613), 1, + anon_sym_RBRACK, + STATE(3784), 1, sym_decorator, - STATE(4482), 1, - aux_sym_record_type_repeat1, + STATE(3825), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210020] = 7, + [177094] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4950), 1, - anon_sym_RBRACE, - ACTIONS(6375), 1, + ACTIONS(2109), 1, + anon_sym_RPAREN, + ACTIONS(5615), 1, anon_sym_COMMA, - STATE(4457), 1, + STATE(3738), 1, + aux_sym_tuple_type_repeat1, + STATE(3785), 1, sym_decorator, - STATE(4484), 1, - aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210044] = 7, + [177118] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6377), 1, - anon_sym_RBRACK, - STATE(4458), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5617), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3786), 1, sym_decorator, - STATE(4487), 1, - aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210068] = 6, + [177142] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1577), 1, - sym_type_identifier, - STATE(4459), 1, + ACTIONS(4527), 1, + anon_sym_RBRACE, + ACTIONS(5619), 1, + anon_sym_COMMA, + STATE(3787), 1, sym_decorator, - ACTIONS(4234), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3839), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210090] = 7, + [177166] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2122), 1, - anon_sym_RPAREN, - ACTIONS(6379), 1, + ACTIONS(4570), 1, + anon_sym_RBRACE, + ACTIONS(5621), 1, anon_sym_COMMA, - STATE(4221), 1, - aux_sym_tuple_type_repeat1, - STATE(4460), 1, + STATE(3788), 1, sym_decorator, + STATE(3903), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210114] = 6, + [177190] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1623), 1, - sym_type_identifier, - STATE(4461), 1, + ACTIONS(3968), 1, + anon_sym_RBRACE, + ACTIONS(5623), 1, + anon_sym_COMMA, + STATE(3789), 1, sym_decorator, - ACTIONS(4234), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3796), 1, + aux_sym_record_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210136] = 7, + [177214] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2204), 1, - anon_sym_RPAREN, - ACTIONS(6381), 1, - anon_sym_COMMA, - STATE(4221), 1, - aux_sym_tuple_type_repeat1, - STATE(4462), 1, + ACTIONS(225), 1, + anon_sym_COLON, + ACTIONS(5625), 1, + anon_sym_QMARK, + STATE(3790), 1, sym_decorator, + STATE(4060), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210160] = 7, + [177238] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, + ACTIONS(5368), 1, anon_sym_PIPE, - ACTIONS(6383), 1, + ACTIONS(5577), 1, anon_sym_RBRACK, - STATE(4463), 1, + STATE(3791), 1, sym_decorator, - STATE(4501), 1, + STATE(3825), 1, aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210184] = 7, + [177262] = 7, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6383), 1, - anon_sym_RBRACK, - STATE(4258), 1, - aux_sym_polyvar_type_repeat1, - STATE(4464), 1, + ACTIONS(5627), 1, + sym_escape_sequence, + STATE(3792), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [210208] = 6, + ACTIONS(5629), 2, + anon_sym_SQUOTE, + aux_sym_character_token1, + [177286] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - STATE(4465), 1, + ACTIONS(5633), 1, + anon_sym_COLON, + STATE(3793), 1, sym_decorator, - ACTIONS(6385), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, + ACTIONS(5631), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210230] = 6, + [177308] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6387), 1, + ACTIONS(2113), 1, anon_sym_RPAREN, - ACTIONS(6389), 1, + ACTIONS(5635), 1, anon_sym_COMMA, - STATE(4466), 2, + STATE(3738), 1, + aux_sym_tuple_type_repeat1, + STATE(3794), 1, sym_decorator, - aux_sym_functor_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210252] = 7, + [177332] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(659), 1, - anon_sym_RPAREN, - ACTIONS(6392), 1, + ACTIONS(4527), 1, + anon_sym_RBRACE, + ACTIONS(5619), 1, anon_sym_COMMA, - STATE(4400), 1, - aux_sym_tuple_repeat1, - STATE(4467), 1, + STATE(3795), 1, sym_decorator, + STATE(3802), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210276] = 7, + [177356] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2116), 1, - anon_sym_RPAREN, - ACTIONS(6394), 1, + ACTIONS(5637), 1, + anon_sym_RBRACE, + ACTIONS(5639), 1, anon_sym_COMMA, - STATE(4221), 1, - aux_sym_tuple_type_repeat1, - STATE(4468), 1, + STATE(3796), 2, sym_decorator, + aux_sym_record_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210300] = 7, + [177378] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(683), 1, + ACTIONS(5642), 1, anon_sym_RPAREN, - ACTIONS(6396), 1, + ACTIONS(5644), 1, anon_sym_COMMA, - STATE(4469), 1, + STATE(3750), 1, + aux_sym_functor_arguments_repeat1, + STATE(3797), 1, sym_decorator, - STATE(4493), 1, - aux_sym_variant_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210324] = 7, + [177402] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(683), 1, + ACTIONS(3464), 1, anon_sym_RPAREN, - ACTIONS(6396), 1, + ACTIONS(5646), 1, anon_sym_COMMA, - STATE(4422), 1, - aux_sym_variant_arguments_repeat1, - STATE(4470), 1, + STATE(3798), 2, sym_decorator, + aux_sym_tuple_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210348] = 7, + [177424] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6398), 1, - anon_sym_RPAREN, - ACTIONS(6400), 1, + ACTIONS(4854), 1, + anon_sym_RBRACE, + ACTIONS(5649), 1, anon_sym_COMMA, - STATE(4471), 1, + STATE(3799), 1, sym_decorator, - STATE(4536), 1, - aux_sym_functor_arguments_repeat1, + STATE(3840), 1, + aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210372] = 7, + [177448] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5265), 1, - anon_sym_RBRACE, - ACTIONS(6402), 1, + ACTIONS(2111), 1, + anon_sym_RPAREN, + ACTIONS(5651), 1, anon_sym_COMMA, - STATE(4472), 1, + STATE(3738), 1, + aux_sym_tuple_type_repeat1, + STATE(3800), 1, sym_decorator, - STATE(4524), 1, - aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210396] = 7, + [177472] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4965), 1, - anon_sym_RBRACE, - ACTIONS(6404), 1, - anon_sym_COMMA, - STATE(4473), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5653), 1, + anon_sym_RBRACK, + STATE(3801), 1, sym_decorator, - STATE(4516), 1, - aux_sym_object_type_repeat1, + STATE(3841), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210420] = 7, + [177496] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4026), 1, + ACTIONS(5655), 1, anon_sym_RBRACE, - ACTIONS(6406), 1, + ACTIONS(5657), 1, anon_sym_COMMA, - STATE(4474), 1, + STATE(3802), 2, sym_decorator, - STATE(4515), 1, - aux_sym_record_repeat1, + aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210444] = 7, + [177518] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4390), 1, - anon_sym_RBRACE, - ACTIONS(6408), 1, - anon_sym_COMMA, - STATE(4229), 1, - aux_sym_record_type_repeat1, - STATE(4475), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5653), 1, + anon_sym_RBRACK, + STATE(3803), 1, sym_decorator, + STATE(3825), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210468] = 7, + [177542] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(687), 1, + ACTIONS(661), 1, anon_sym_RPAREN, - ACTIONS(6410), 1, + ACTIONS(5660), 1, anon_sym_COMMA, - STATE(4400), 1, + STATE(3798), 1, aux_sym_tuple_repeat1, - STATE(4476), 1, + STATE(3804), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210492] = 7, + [177566] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6412), 1, + ACTIONS(3948), 1, + anon_sym_as, + STATE(3805), 1, + sym_decorator, + ACTIONS(5662), 2, anon_sym_RBRACE, - ACTIONS(6414), 1, anon_sym_COMMA, - STATE(4282), 1, - aux_sym_record_type_repeat1, - STATE(4477), 1, - sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210516] = 7, + [177588] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2172), 1, - anon_sym_RPAREN, - ACTIONS(6416), 1, + ACTIONS(3386), 1, anon_sym_COMMA, - STATE(4221), 1, - aux_sym_tuple_type_repeat1, - STATE(4478), 1, + ACTIONS(3388), 1, + anon_sym_RBRACK, + STATE(3667), 1, + aux_sym_array_repeat1, + STATE(3806), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210540] = 7, + [177612] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(661), 1, - anon_sym_RPAREN, - ACTIONS(6418), 1, + ACTIONS(551), 1, + anon_sym_RBRACE, + ACTIONS(5664), 1, anon_sym_COMMA, - STATE(4422), 1, - aux_sym_variant_arguments_repeat1, - STATE(4479), 1, + STATE(3807), 1, sym_decorator, + STATE(3834), 1, + aux_sym_list_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210564] = 7, + [177636] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4965), 1, - anon_sym_RBRACE, - ACTIONS(6404), 1, - anon_sym_COMMA, - STATE(4233), 1, - aux_sym_object_type_repeat1, - STATE(4480), 1, + ACTIONS(3948), 1, + anon_sym_as, + STATE(3808), 1, sym_decorator, + ACTIONS(5666), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210588] = 7, + [177658] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4963), 1, - anon_sym_RBRACE, - ACTIONS(6420), 1, + ACTIONS(5668), 1, + anon_sym_RPAREN, + ACTIONS(5670), 1, anon_sym_COMMA, - STATE(4481), 1, + STATE(3727), 1, + aux_sym__function_type_parameter_list_repeat1, + STATE(3809), 1, sym_decorator, - STATE(4496), 1, - aux_sym_object_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210612] = 7, + [177682] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4376), 1, + ACTIONS(5267), 1, anon_sym_RBRACE, - ACTIONS(6422), 1, + ACTIONS(5672), 1, anon_sym_COMMA, - STATE(4229), 1, - aux_sym_record_type_repeat1, - STATE(4482), 1, + STATE(3810), 1, sym_decorator, + STATE(3852), 1, + aux_sym_dict_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210636] = 7, + [177706] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5023), 1, + ACTIONS(5674), 1, anon_sym_RBRACE, - ACTIONS(6424), 1, + ACTIONS(5676), 1, anon_sym_COMMA, - STATE(4285), 1, - aux_sym_object_type_repeat1, - STATE(4483), 1, + STATE(3807), 1, + aux_sym_list_repeat1, + STATE(3811), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210660] = 7, + [177730] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4963), 1, + ACTIONS(4901), 1, anon_sym_RBRACE, - ACTIONS(6420), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - STATE(4233), 1, - aux_sym_object_type_repeat1, - STATE(4484), 1, + STATE(3812), 1, sym_decorator, + STATE(3824), 1, + aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210684] = 7, + [177754] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2174), 1, - anon_sym_RPAREN, - ACTIONS(6426), 1, + ACTIONS(3982), 1, + anon_sym_RBRACE, + ACTIONS(5680), 1, anon_sym_COMMA, - STATE(4221), 1, - aux_sym_tuple_type_repeat1, - STATE(4485), 1, + STATE(3796), 1, + aux_sym_record_type_repeat1, + STATE(3813), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210708] = 7, + [177778] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, - anon_sym_RBRACK, - STATE(4486), 1, + STATE(3814), 1, sym_decorator, - STATE(4499), 1, - aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210732] = 7, + ACTIONS(5682), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + [177798] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6428), 1, - anon_sym_RBRACK, - STATE(4258), 1, - aux_sym_polyvar_type_repeat1, - STATE(4487), 1, + ACTIONS(5684), 1, + anon_sym_RPAREN, + ACTIONS(5686), 1, + anon_sym_COMMA, + STATE(3815), 2, sym_decorator, + aux_sym__function_type_parameter_list_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210756] = 7, + [177820] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(4488), 1, + ACTIONS(5689), 1, + anon_sym_RPAREN, + ACTIONS(5691), 1, + anon_sym_COMMA, + STATE(3816), 2, sym_decorator, - STATE(4525), 1, - aux_sym_member_expression_repeat1, - STATE(4769), 1, - sym_module_identifier, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210780] = 7, + [177842] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4094), 1, - anon_sym_RBRACE, - ACTIONS(5841), 1, + ACTIONS(617), 1, + anon_sym_RPAREN, + ACTIONS(5694), 1, anon_sym_COMMA, - STATE(4266), 1, - aux_sym_record_pattern_repeat1, - STATE(4489), 1, + STATE(3817), 1, sym_decorator, + STATE(3819), 1, + aux_sym_variant_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210804] = 5, + [177866] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4490), 1, + ACTIONS(3428), 1, + anon_sym_LBRACE, + ACTIONS(5696), 1, + anon_sym_if, + STATE(1930), 1, + sym_block, + STATE(3818), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(6430), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [210824] = 7, + [177890] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2124), 1, + ACTIONS(3268), 1, anon_sym_RPAREN, - ACTIONS(6432), 1, + ACTIONS(5698), 1, anon_sym_COMMA, - STATE(4221), 1, - aux_sym_tuple_type_repeat1, - STATE(4491), 1, + STATE(3819), 2, sym_decorator, + aux_sym_variant_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210848] = 7, + [177912] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - ACTIONS(6434), 1, - anon_sym_QMARK, - STATE(4492), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5701), 1, + anon_sym_RBRACK, + STATE(3820), 1, sym_decorator, - STATE(4611), 1, - sym_type_annotation, + STATE(3825), 1, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210872] = 7, + [177936] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(691), 1, + ACTIONS(5703), 1, anon_sym_RPAREN, - ACTIONS(6436), 1, + ACTIONS(5705), 1, anon_sym_COMMA, - STATE(4422), 1, - aux_sym_variant_arguments_repeat1, - STATE(4493), 1, + STATE(3821), 1, sym_decorator, + STATE(3851), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210896] = 7, + [177960] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6438), 1, - anon_sym_RBRACK, - STATE(4494), 1, + ACTIONS(5707), 1, + anon_sym_RBRACE, + ACTIONS(5709), 1, + anon_sym_COMMA, + STATE(3822), 1, sym_decorator, - STATE(4518), 1, - aux_sym_polyvar_type_repeat1, + STATE(3874), 1, + aux_sym_record_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210920] = 7, + [177984] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5449), 1, + ACTIONS(5711), 1, anon_sym_RBRACE, - ACTIONS(6440), 1, + ACTIONS(5713), 1, anon_sym_COMMA, - STATE(4269), 1, - aux_sym_object_repeat1, - STATE(4495), 1, + STATE(3810), 1, + aux_sym_dict_repeat1, + STATE(3823), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210944] = 7, + [178008] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4990), 1, + ACTIONS(5715), 1, anon_sym_RBRACE, - ACTIONS(6442), 1, + ACTIONS(5717), 1, anon_sym_COMMA, - STATE(4233), 1, - aux_sym_object_type_repeat1, - STATE(4496), 1, + STATE(3824), 2, sym_decorator, + aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210968] = 7, + [178030] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5002), 1, - anon_sym_RBRACE, - ACTIONS(6444), 1, - anon_sym_COMMA, - STATE(4233), 1, - aux_sym_object_type_repeat1, - STATE(4497), 1, + ACTIONS(5720), 1, + anon_sym_PIPE, + ACTIONS(5723), 1, + anon_sym_RBRACK, + STATE(3825), 2, sym_decorator, + aux_sym_polyvar_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [210992] = 7, + [178052] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6438), 1, - anon_sym_RBRACK, - STATE(4258), 1, - aux_sym_polyvar_type_repeat1, - STATE(4498), 1, + ACTIONS(4492), 1, + anon_sym_RBRACE, + ACTIONS(5573), 1, + anon_sym_COMMA, + STATE(3802), 1, + aux_sym_object_type_repeat1, + STATE(3826), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211016] = 7, + [178076] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, + ACTIONS(5368), 1, anon_sym_PIPE, - ACTIONS(6446), 1, + ACTIONS(5725), 1, anon_sym_RBRACK, - STATE(4258), 1, + STATE(3791), 1, aux_sym_polyvar_type_repeat1, - STATE(4499), 1, + STATE(3827), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211040] = 7, + [178100] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2180), 1, - anon_sym_GT, - ACTIONS(6448), 1, + ACTIONS(611), 1, + anon_sym_RPAREN, + ACTIONS(5727), 1, anon_sym_COMMA, - STATE(4290), 1, - aux_sym_tuple_type_repeat1, - STATE(4500), 1, + STATE(3819), 1, + aux_sym_variant_arguments_repeat1, + STATE(3828), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211064] = 7, + [178124] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6450), 1, - anon_sym_RBRACK, - STATE(4258), 1, - aux_sym_polyvar_type_repeat1, - STATE(4501), 1, + STATE(3829), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211088] = 7, + ACTIONS(4477), 3, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_with, + [178144] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6452), 1, + ACTIONS(637), 1, anon_sym_RPAREN, - ACTIONS(6454), 1, + ACTIONS(5729), 1, anon_sym_COMMA, - STATE(4302), 1, - aux_sym__function_type_parameter_list_repeat1, - STATE(4502), 1, + STATE(3666), 1, + aux_sym_variant_arguments_repeat1, + STATE(3830), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211112] = 7, + [178168] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2214), 1, - anon_sym_GT, - ACTIONS(6456), 1, - anon_sym_COMMA, - STATE(4290), 1, - aux_sym_tuple_type_repeat1, - STATE(4503), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5731), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3831), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211136] = 5, + [178192] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4504), 1, + ACTIONS(2138), 1, + anon_sym_GT, + ACTIONS(5733), 1, + anon_sym_COMMA, + STATE(3758), 1, + aux_sym_tuple_type_repeat1, + STATE(3832), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(2654), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_COMMA, - [211156] = 7, + [178216] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - STATE(4505), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5735), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3833), 1, sym_decorator, - STATE(4586), 1, - sym_dict_entry, - STATE(4816), 1, - sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211180] = 7, + [178240] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6458), 1, - anon_sym_RBRACK, - STATE(4313), 1, - aux_sym_polyvar_type_repeat1, - STATE(4506), 1, + ACTIONS(5737), 1, + anon_sym_RBRACE, + ACTIONS(5739), 1, + anon_sym_COMMA, + STATE(3834), 2, sym_decorator, + aux_sym_list_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211204] = 6, + [178262] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - STATE(4507), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4748), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3835), 1, sym_decorator, - ACTIONS(6460), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211226] = 6, + [178286] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1133), 1, - sym_type_identifier, - STATE(4508), 1, + ACTIONS(5742), 1, + anon_sym_COMMA, + ACTIONS(5744), 1, + anon_sym_RBRACK, + STATE(3836), 1, sym_decorator, - ACTIONS(4220), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, + STATE(3913), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211248] = 6, + [178310] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(1136), 1, - sym_type_identifier, - STATE(4509), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(5746), 1, + sym_extension_identifier, + STATE(3704), 1, + aux_sym_extension_expression_repeat1, + STATE(3837), 1, sym_decorator, - ACTIONS(4220), 2, - aux_sym_type_identifier_token1, - sym__escape_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211270] = 7, + [178334] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3779), 1, - anon_sym_LBRACE, - ACTIONS(6462), 1, - anon_sym_if, - STATE(1466), 1, - sym_block, - STATE(4510), 1, + ACTIONS(5748), 1, + anon_sym_RPAREN, + ACTIONS(5750), 1, + anon_sym_COMMA, + STATE(3838), 2, sym_decorator, + aux_sym_functor_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211294] = 7, + [178356] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(719), 1, - anon_sym_RPAREN, - ACTIONS(6464), 1, + ACTIONS(4535), 1, + anon_sym_RBRACE, + ACTIONS(5753), 1, anon_sym_COMMA, - STATE(4422), 1, - aux_sym_variant_arguments_repeat1, - STATE(4511), 1, + STATE(3802), 1, + aux_sym_object_type_repeat1, + STATE(3839), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211318] = 7, + [178380] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(6466), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4512), 1, + ACTIONS(4825), 1, + anon_sym_RBRACE, + ACTIONS(5755), 1, + anon_sym_COMMA, + STATE(3824), 1, + aux_sym_object_repeat1, + STATE(3840), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211342] = 7, + [178404] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(6468), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4513), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5757), 1, + anon_sym_RBRACK, + STATE(3825), 1, + aux_sym_polyvar_type_repeat1, + STATE(3841), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211366] = 7, + [178428] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4514), 1, + ACTIONS(3663), 1, + anon_sym_RBRACE, + ACTIONS(5759), 1, + anon_sym_COMMA, + STATE(3842), 1, sym_decorator, + STATE(3884), 1, + aux_sym_record_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211390] = 6, + [178452] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6472), 1, + ACTIONS(4923), 1, anon_sym_RBRACE, - ACTIONS(6474), 1, + ACTIONS(5761), 1, anon_sym_COMMA, - STATE(4515), 2, + STATE(3843), 1, sym_decorator, - aux_sym_record_repeat1, + STATE(3867), 1, + aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211412] = 7, + [178476] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4994), 1, - anon_sym_RBRACE, - ACTIONS(6477), 1, - anon_sym_COMMA, - STATE(4233), 1, - aux_sym_object_type_repeat1, - STATE(4516), 1, + ACTIONS(5763), 1, + anon_sym_COLON, + ACTIONS(5765), 1, + anon_sym_EQ_GT, + STATE(3844), 1, sym_decorator, + STATE(4174), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211436] = 7, + [178500] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3709), 1, + ACTIONS(2120), 1, + anon_sym_GT, + ACTIONS(5767), 1, anon_sym_COMMA, - ACTIONS(3711), 1, - anon_sym_RBRACK, - STATE(4384), 1, - aux_sym_array_repeat1, - STATE(4517), 1, + STATE(3758), 1, + aux_sym_tuple_type_repeat1, + STATE(3845), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211460] = 7, + [178524] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6479), 1, - anon_sym_RBRACK, - STATE(4258), 1, - aux_sym_polyvar_type_repeat1, - STATE(4518), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5769), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3846), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211484] = 7, + [178548] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2194), 1, - anon_sym_GT, - ACTIONS(6481), 1, + ACTIONS(3406), 1, anon_sym_COMMA, - STATE(4290), 1, - aux_sym_tuple_type_repeat1, - STATE(4519), 1, + ACTIONS(3408), 1, + anon_sym_RBRACK, + STATE(3847), 1, sym_decorator, + STATE(3872), 1, + aux_sym_array_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211508] = 5, + [178572] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4520), 1, + ACTIONS(2128), 1, + anon_sym_GT, + ACTIONS(5771), 1, + anon_sym_COMMA, + STATE(3758), 1, + aux_sym_tuple_type_repeat1, + STATE(3848), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(6483), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - [211528] = 7, + [178596] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(65), 1, - anon_sym_PERCENT, - ACTIONS(6485), 1, - sym_extension_identifier, - STATE(4345), 1, - aux_sym_extension_expression_repeat1, - STATE(4521), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5773), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3849), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211552] = 5, + [178620] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4522), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(5775), 1, + sym_extension_identifier, + STATE(3704), 1, + aux_sym_extension_expression_repeat1, + STATE(3850), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - ACTIONS(6487), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - [211572] = 7, + [178644] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(4167), 1, - sym_module_identifier, - STATE(4523), 1, + ACTIONS(1133), 1, + anon_sym_RPAREN, + ACTIONS(5777), 1, + anon_sym_COMMA, + STATE(3816), 1, + aux_sym_formal_parameters_repeat1, + STATE(3851), 1, sym_decorator, - STATE(4578), 1, - sym_functor_parameter, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211596] = 7, + [178668] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5449), 1, + ACTIONS(5779), 1, anon_sym_RBRACE, - ACTIONS(6440), 1, + ACTIONS(5781), 1, anon_sym_COMMA, - STATE(4296), 1, - aux_sym_object_repeat1, - STATE(4524), 1, + STATE(3852), 2, sym_decorator, + aux_sym_dict_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211620] = 6, + [178690] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6489), 1, - aux_sym_variant_identifier_token1, - STATE(4687), 1, - sym_module_identifier, - STATE(4525), 2, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3853), 1, sym_decorator, - aux_sym_member_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211642] = 7, + [178714] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, + ACTIONS(4286), 1, anon_sym_LPAREN, - ACTIONS(6492), 1, + ACTIONS(5786), 1, anon_sym_DOT, - STATE(3312), 1, + STATE(2874), 1, sym_functor_arguments, - STATE(4526), 1, + STATE(3854), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211666] = 7, + [178738] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(6494), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4527), 1, + ACTIONS(4929), 1, + anon_sym_RBRACE, + ACTIONS(5788), 1, + anon_sym_COMMA, + STATE(3855), 1, sym_decorator, + STATE(3881), 1, + aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211690] = 7, + [178762] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1289), 1, - anon_sym_RBRACK, - ACTIONS(6496), 1, - anon_sym_COMMA, - STATE(4155), 1, - aux_sym_array_pattern_repeat1, - STATE(4528), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5790), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3856), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211714] = 7, + [178786] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6498), 1, - anon_sym_COLON, - ACTIONS(6500), 1, - anon_sym_EQ_GT, - STATE(4529), 1, + ACTIONS(4604), 1, + anon_sym_RBRACE, + ACTIONS(5792), 1, + anon_sym_COMMA, + STATE(3770), 1, + aux_sym_object_type_repeat1, + STATE(3857), 1, sym_decorator, - STATE(4898), 1, - sym__return_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211738] = 6, + [178810] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6502), 1, - anon_sym_RBRACE, - ACTIONS(6504), 1, + ACTIONS(3390), 1, anon_sym_COMMA, - STATE(4530), 2, + ACTIONS(3392), 1, + anon_sym_RBRACK, + STATE(3858), 1, sym_decorator, - aux_sym_dict_pattern_repeat1, + STATE(3883), 1, + aux_sym_array_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211760] = 7, + [178834] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(679), 1, + ACTIONS(5094), 1, anon_sym_RPAREN, - ACTIONS(6507), 1, + ACTIONS(5794), 1, anon_sym_COMMA, - STATE(4421), 1, - aux_sym_variant_arguments_repeat1, - STATE(4531), 1, + STATE(3859), 1, sym_decorator, + STATE(3910), 1, + aux_sym_functor_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211784] = 6, + [178858] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5059), 1, - anon_sym_PIPE, - STATE(4532), 1, + STATE(3860), 1, sym_decorator, - ACTIONS(6509), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211806] = 7, + ACTIONS(5213), 3, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_COMMA, + [178878] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(679), 1, - anon_sym_RPAREN, - ACTIONS(6507), 1, - anon_sym_COMMA, - STATE(4422), 1, - aux_sym_variant_arguments_repeat1, - STATE(4533), 1, + ACTIONS(3422), 1, + anon_sym_LBRACE, + ACTIONS(5796), 1, + anon_sym_if, + STATE(1134), 1, + sym_block, + STATE(3861), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211830] = 7, + [178902] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(6511), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_functor_arguments, - STATE(4534), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + STATE(3862), 1, sym_decorator, + STATE(4003), 1, + sym_dict_entry, + STATE(4210), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211854] = 7, + [178926] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4104), 1, - anon_sym_RBRACE, - ACTIONS(5664), 1, - anon_sym_COMMA, - STATE(4266), 1, - aux_sym_record_pattern_repeat1, - STATE(4535), 1, + ACTIONS(5213), 1, + anon_sym_EQ_GT, + ACTIONS(5798), 1, + anon_sym_with, + STATE(3382), 1, + sym__module_type_constraint_with, + STATE(3863), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211878] = 7, + [178950] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4078), 1, - anon_sym_RPAREN, - ACTIONS(6513), 1, + ACTIONS(5800), 1, + anon_sym_RBRACE, + ACTIONS(5802), 1, anon_sym_COMMA, - STATE(4466), 1, - aux_sym_functor_arguments_repeat1, - STATE(4536), 1, + STATE(3864), 1, sym_decorator, + STATE(3893), 1, + aux_sym_list_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211902] = 6, + [178974] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6517), 1, - anon_sym_COLON, - STATE(4537), 1, - sym_decorator, - ACTIONS(6515), 2, + ACTIONS(5804), 1, anon_sym_RBRACE, + ACTIONS(5806), 1, anon_sym_COMMA, + STATE(3865), 1, + sym_decorator, + STATE(3894), 1, + aux_sym_dict_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211924] = 7, + [178998] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6053), 1, - anon_sym_COLON, - ACTIONS(6519), 1, - anon_sym_EQ_GT, - STATE(4538), 1, + ACTIONS(4933), 1, + anon_sym_RBRACE, + ACTIONS(5808), 1, + anon_sym_COMMA, + STATE(3866), 1, sym_decorator, - STATE(5063), 1, - sym_module_type_annotation, + STATE(3896), 1, + aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211948] = 7, + [179022] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6053), 1, - anon_sym_COLON, - ACTIONS(6521), 1, - anon_sym_EQ_GT, - STATE(4539), 1, + ACTIONS(4933), 1, + anon_sym_RBRACE, + ACTIONS(5808), 1, + anon_sym_COMMA, + STATE(3824), 1, + aux_sym_object_repeat1, + STATE(3867), 1, sym_decorator, - STATE(5074), 1, - sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211972] = 7, + [179046] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6053), 1, - anon_sym_COLON, - ACTIONS(6523), 1, - anon_sym_EQ_GT, - STATE(4540), 1, + ACTIONS(5810), 1, + anon_sym_RBRACE, + ACTIONS(5812), 1, + anon_sym_COMMA, + STATE(3868), 1, sym_decorator, - STATE(5076), 1, - sym_module_type_annotation, + STATE(3933), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [211996] = 7, + [179070] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, - aux_sym_variant_identifier_token1, - STATE(4525), 1, - aux_sym_member_expression_repeat1, - STATE(4541), 1, + ACTIONS(5814), 1, + anon_sym_RBRACE, + ACTIONS(5816), 1, + anon_sym_COMMA, + STATE(3654), 1, + aux_sym_dict_pattern_repeat1, + STATE(3869), 1, sym_decorator, - STATE(4760), 1, - sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212020] = 7, + [179094] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5864), 1, - anon_sym_PIPE, - ACTIONS(6243), 1, - anon_sym_RBRACK, - STATE(4403), 1, - aux_sym_polyvar_type_repeat1, - STATE(4542), 1, + ACTIONS(2071), 1, + anon_sym_RPAREN, + ACTIONS(5818), 1, + anon_sym_COMMA, + STATE(3738), 1, + aux_sym_tuple_type_repeat1, + STATE(3870), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212044] = 6, + [179118] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2751), 1, + ACTIONS(1166), 1, aux_sym_variant_identifier_token1, - STATE(3269), 1, + STATE(1079), 1, + sym_variant_identifier, + STATE(2866), 1, sym_module_identifier, - STATE(4543), 1, + STATE(3871), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212065] = 5, + [179142] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4544), 1, - sym_decorator, - ACTIONS(5494), 2, - anon_sym_RPAREN, + ACTIONS(555), 1, + anon_sym_RBRACK, + ACTIONS(5820), 1, anon_sym_COMMA, + STATE(3661), 1, + aux_sym_array_repeat1, + STATE(3872), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212084] = 5, + [179166] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4545), 1, + ACTIONS(1177), 1, + anon_sym_LT, + STATE(3873), 1, sym_decorator, - ACTIONS(4226), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, + ACTIONS(5822), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212103] = 5, + [179188] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4546), 1, + ACTIONS(3661), 1, + anon_sym_RBRACE, + ACTIONS(5824), 1, + anon_sym_COMMA, + STATE(3874), 1, sym_decorator, - ACTIONS(6525), 2, - anon_sym_COLON, - anon_sym_EQ_GT, + STATE(3884), 1, + aux_sym_record_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212122] = 5, + [179212] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4547), 1, + ACTIONS(225), 1, + anon_sym_COLON, + ACTIONS(5826), 1, + anon_sym_QMARK, + STATE(3875), 1, sym_decorator, - ACTIONS(6527), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(3954), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212141] = 6, + [179236] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(453), 1, - anon_sym_DQUOTE, - STATE(2113), 1, - sym_string, - STATE(4548), 1, + ACTIONS(3757), 1, + anon_sym_RBRACE, + ACTIONS(5098), 1, + anon_sym_COMMA, + STATE(3665), 1, + aux_sym_record_pattern_repeat1, + STATE(3876), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212162] = 5, + [179260] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4549), 1, - sym_decorator, - ACTIONS(6529), 2, + ACTIONS(5828), 1, + anon_sym_RBRACE, + ACTIONS(5830), 1, anon_sym_COMMA, - anon_sym_GT, + STATE(3877), 1, + sym_decorator, + STATE(3917), 1, + aux_sym_list_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212181] = 6, + [179284] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(75), 1, - anon_sym_DQUOTE, - STATE(1804), 1, - sym_string, - STATE(4550), 1, + ACTIONS(5832), 1, + anon_sym_RBRACE, + ACTIONS(5834), 1, + anon_sym_COMMA, + STATE(3878), 1, sym_decorator, + STATE(3924), 1, + aux_sym_dict_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212202] = 5, + [179308] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4551), 1, + ACTIONS(4937), 1, + anon_sym_RBRACE, + ACTIONS(5836), 1, + anon_sym_COMMA, + STATE(3879), 1, sym_decorator, - ACTIONS(6531), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, + STATE(3926), 1, + aux_sym_object_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212221] = 5, + [179332] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4552), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5838), 1, + anon_sym_RBRACK, + STATE(3737), 1, + aux_sym_polyvar_type_repeat1, + STATE(3880), 1, sym_decorator, - ACTIONS(6533), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212240] = 5, + [179356] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4553), 1, - sym_decorator, - ACTIONS(5946), 2, - anon_sym_RPAREN, + ACTIONS(4937), 1, + anon_sym_RBRACE, + ACTIONS(5836), 1, anon_sym_COMMA, + STATE(3824), 1, + aux_sym_object_repeat1, + STATE(3881), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212259] = 6, + [179380] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(837), 1, - anon_sym_DQUOTE, - STATE(969), 1, - sym_string, - STATE(4554), 1, + ACTIONS(3966), 1, + anon_sym_RBRACE, + ACTIONS(5840), 1, + anon_sym_COMMA, + STATE(3796), 1, + aux_sym_record_type_repeat1, + STATE(3882), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212280] = 6, + [179404] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(6535), 1, - anon_sym_RPAREN, - STATE(4555), 1, + ACTIONS(589), 1, + anon_sym_RBRACK, + ACTIONS(5842), 1, + anon_sym_COMMA, + STATE(3661), 1, + aux_sym_array_repeat1, + STATE(3883), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212301] = 6, + [179428] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6537), 1, - anon_sym_RPAREN, - ACTIONS(6539), 1, - anon_sym_COLON_GT, - STATE(4556), 1, + ACTIONS(5844), 1, + anon_sym_RBRACE, + ACTIONS(5846), 1, + anon_sym_COMMA, + STATE(3884), 2, sym_decorator, + aux_sym_record_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212322] = 5, + [179450] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4557), 1, - sym_decorator, - ACTIONS(3813), 2, + ACTIONS(669), 1, + anon_sym_RPAREN, + ACTIONS(5849), 1, anon_sym_COMMA, - anon_sym_RBRACK, + STATE(3819), 1, + aux_sym_variant_arguments_repeat1, + STATE(3885), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212341] = 6, + [179474] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6541), 1, - anon_sym_RPAREN, - ACTIONS(6543), 1, - anon_sym_COLON_GT, - STATE(4558), 1, + ACTIONS(4506), 1, + anon_sym_RBRACE, + ACTIONS(5527), 1, + anon_sym_COMMA, + STATE(3802), 1, + aux_sym_object_type_repeat1, + STATE(3886), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212362] = 5, + [179498] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4559), 1, + ACTIONS(5851), 1, + aux_sym_variant_identifier_token1, + STATE(4327), 1, + sym_module_identifier, + STATE(3887), 2, sym_decorator, - ACTIONS(6545), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + aux_sym_member_expression_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212381] = 5, + [179520] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4560), 1, - sym_decorator, - ACTIONS(6547), 2, + ACTIONS(5854), 1, anon_sym_COLON, + ACTIONS(5856), 1, anon_sym_EQ_GT, + STATE(3888), 1, + sym_decorator, + STATE(4342), 1, + sym__return_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212400] = 6, + [179544] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6549), 1, - anon_sym_RPAREN, - ACTIONS(6551), 1, - anon_sym_COLON_GT, - STATE(4561), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + STATE(3889), 1, sym_decorator, + STATE(4058), 1, + sym_dict_pattern_entry, + STATE(4165), 1, + sym_string, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212421] = 5, + [179568] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4562), 1, - sym_decorator, - ACTIONS(6553), 2, + ACTIONS(4825), 1, anon_sym_RBRACE, + ACTIONS(5755), 1, anon_sym_COMMA, + STATE(3812), 1, + aux_sym_object_repeat1, + STATE(3890), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212440] = 5, + [179592] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4563), 1, - sym_decorator, - ACTIONS(6555), 2, + ACTIONS(5858), 1, anon_sym_RPAREN, + ACTIONS(5860), 1, anon_sym_COMMA, + STATE(3891), 1, + sym_decorator, + STATE(3916), 1, + aux_sym_functor_arguments_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212459] = 5, + [179616] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4564), 1, + ACTIONS(3948), 1, + anon_sym_as, + STATE(3892), 1, sym_decorator, - ACTIONS(6557), 2, + ACTIONS(5862), 2, anon_sym_EQ, anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212478] = 5, + [179638] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4565), 1, + ACTIONS(549), 1, + anon_sym_RBRACE, + ACTIONS(5864), 1, + anon_sym_COMMA, + STATE(3834), 1, + aux_sym_list_repeat1, + STATE(3893), 1, sym_decorator, - ACTIONS(5974), 2, - anon_sym_PIPE, - anon_sym_RBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212497] = 5, + [179662] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4566), 1, - sym_decorator, - ACTIONS(5473), 2, + ACTIONS(5174), 1, anon_sym_RBRACE, - anon_sym_PIPE, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [212516] = 5, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - STATE(4567), 1, - sym_decorator, - ACTIONS(5377), 2, - anon_sym_RPAREN, + ACTIONS(5866), 1, anon_sym_COMMA, + STATE(3852), 1, + aux_sym_dict_repeat1, + STATE(3894), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212535] = 5, + [179686] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4568), 1, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(5868), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_functor_arguments, + STATE(3895), 1, sym_decorator, - ACTIONS(6559), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212554] = 6, + [179710] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(6561), 1, - anon_sym_EQ, - STATE(4569), 1, + ACTIONS(4943), 1, + anon_sym_RBRACE, + ACTIONS(5870), 1, + anon_sym_COMMA, + STATE(3824), 1, + aux_sym_object_repeat1, + STATE(3896), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212575] = 5, + [179734] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4570), 1, + ACTIONS(5872), 1, + anon_sym_RBRACE, + ACTIONS(5874), 1, + anon_sym_COMMA, + STATE(3897), 1, sym_decorator, - ACTIONS(1547), 2, - anon_sym_COLON, - anon_sym_EQ_GT, + STATE(3920), 1, + aux_sym_record_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212594] = 6, + [179758] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(6563), 1, - anon_sym_RPAREN, - STATE(4571), 1, + STATE(3898), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212615] = 5, + ACTIONS(5876), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + [179778] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4572), 1, - sym_decorator, - ACTIONS(6565), 2, + ACTIONS(5763), 1, anon_sym_COLON, + ACTIONS(5878), 1, anon_sym_EQ_GT, + STATE(3899), 1, + sym_decorator, + STATE(4159), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212634] = 5, + [179802] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4573), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5838), 1, + anon_sym_RBRACK, + STATE(3825), 1, + aux_sym_polyvar_type_repeat1, + STATE(3900), 1, sym_decorator, - ACTIONS(6567), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212653] = 5, + [179826] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4574), 1, + ACTIONS(67), 1, + anon_sym_PERCENT, + ACTIONS(5880), 1, + sym_extension_identifier, + STATE(3704), 1, + aux_sym_extension_expression_repeat1, + STATE(3901), 1, sym_decorator, - ACTIONS(4891), 2, - anon_sym_RPAREN, - anon_sym_COLON, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212672] = 5, + [179850] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4575), 1, + ACTIONS(5882), 1, + anon_sym_RBRACE, + ACTIONS(5884), 1, + anon_sym_COMMA, + STATE(3703), 1, + aux_sym_list_repeat1, + STATE(3902), 1, sym_decorator, - ACTIONS(6569), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212691] = 6, + [179874] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(6571), 1, - anon_sym_EQ, - STATE(4576), 1, + ACTIONS(4604), 1, + anon_sym_RBRACE, + ACTIONS(5792), 1, + anon_sym_COMMA, + STATE(3802), 1, + aux_sym_object_type_repeat1, + STATE(3903), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212712] = 6, + [179898] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2061), 1, - anon_sym_as, - ACTIONS(6573), 1, - anon_sym_EQ_GT, - STATE(4577), 1, + ACTIONS(2130), 1, + anon_sym_RPAREN, + ACTIONS(5886), 1, + anon_sym_COMMA, + STATE(3738), 1, + aux_sym_tuple_type_repeat1, + STATE(3904), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212733] = 5, + [179922] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4578), 1, - sym_decorator, - ACTIONS(6356), 2, - anon_sym_RPAREN, + ACTIONS(5888), 1, + anon_sym_RBRACE, + ACTIONS(5890), 1, anon_sym_COMMA, + STATE(3708), 1, + aux_sym_dict_repeat1, + STATE(3905), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212752] = 5, + [179946] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4579), 1, - sym_decorator, - ACTIONS(5877), 2, - anon_sym_RPAREN, + ACTIONS(5892), 1, + anon_sym_RBRACE, + ACTIONS(5894), 1, anon_sym_COMMA, + STATE(3906), 1, + sym_decorator, + STATE(3919), 1, + aux_sym_record_type_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212771] = 5, + [179970] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4580), 1, + ACTIONS(4611), 1, + anon_sym_RBRACE, + ACTIONS(5896), 1, + anon_sym_COMMA, + STATE(3886), 1, + aux_sym_object_type_repeat1, + STATE(3907), 1, sym_decorator, - ACTIONS(6575), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212790] = 6, + [179994] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6577), 1, + ACTIONS(4836), 1, anon_sym_RBRACE, - ACTIONS(6579), 1, + ACTIONS(5898), 1, anon_sym_COMMA, - STATE(4581), 1, + STATE(3713), 1, + aux_sym_object_repeat1, + STATE(3908), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212811] = 5, + [180018] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4582), 1, - sym_decorator, - ACTIONS(6581), 2, + ACTIONS(5368), 1, anon_sym_PIPE, + ACTIONS(5900), 1, anon_sym_RBRACK, + STATE(3657), 1, + aux_sym_polyvar_type_repeat1, + STATE(3909), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212830] = 5, + [180042] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4583), 1, - sym_decorator, - ACTIONS(5872), 2, + ACTIONS(5902), 1, anon_sym_RPAREN, + ACTIONS(5904), 1, anon_sym_COMMA, + STATE(3910), 2, + sym_decorator, + aux_sym_functor_parameters_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212849] = 5, + [180064] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4584), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(3489), 1, + sym_module_identifier, + STATE(3911), 1, sym_decorator, - ACTIONS(6013), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + STATE(4052), 1, + sym_functor_parameter, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212868] = 6, + [180088] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4098), 1, - anon_sym_LT, - STATE(1070), 1, - sym_type_arguments, - STATE(4585), 1, + ACTIONS(4836), 1, + anon_sym_RBRACE, + ACTIONS(5898), 1, + anon_sym_COMMA, + STATE(3824), 1, + aux_sym_object_repeat1, + STATE(3912), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212889] = 5, + [180112] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4586), 1, - sym_decorator, - ACTIONS(6290), 2, - anon_sym_RBRACE, + ACTIONS(1224), 1, + anon_sym_RBRACK, + ACTIONS(5907), 1, anon_sym_COMMA, + STATE(3577), 1, + aux_sym_array_pattern_repeat1, + STATE(3913), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212908] = 5, + [180136] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4587), 1, + ACTIONS(631), 1, + anon_sym_RPAREN, + ACTIONS(5909), 1, + anon_sym_COMMA, + STATE(3885), 1, + aux_sym_variant_arguments_repeat1, + STATE(3914), 1, sym_decorator, - ACTIONS(3978), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212927] = 5, + [180160] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4588), 1, - sym_decorator, - ACTIONS(6583), 2, + ACTIONS(631), 1, anon_sym_RPAREN, + ACTIONS(5909), 1, anon_sym_COMMA, + STATE(3819), 1, + aux_sym_variant_arguments_repeat1, + STATE(3915), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212946] = 5, + [180184] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4589), 1, - sym_decorator, - ACTIONS(3795), 2, - anon_sym_RBRACE, + ACTIONS(3743), 1, + anon_sym_RPAREN, + ACTIONS(5911), 1, anon_sym_COMMA, + STATE(3838), 1, + aux_sym_functor_arguments_repeat1, + STATE(3916), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212965] = 5, + [180208] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4590), 1, + ACTIONS(539), 1, + anon_sym_RBRACE, + ACTIONS(5913), 1, + anon_sym_COMMA, + STATE(3834), 1, + aux_sym_list_repeat1, + STATE(3917), 1, sym_decorator, - ACTIONS(6585), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [212984] = 6, + [180232] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4038), 1, - aux_sym_variant_identifier_token1, - STATE(3273), 1, - sym_module_identifier, - STATE(4591), 1, + ACTIONS(641), 1, + anon_sym_RPAREN, + ACTIONS(5915), 1, + anon_sym_COMMA, + STATE(3798), 1, + aux_sym_tuple_repeat1, + STATE(3918), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213005] = 6, + [180256] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4000), 1, - aux_sym_variant_identifier_token1, - STATE(3269), 1, - sym_module_identifier, - STATE(4592), 1, + ACTIONS(3950), 1, + anon_sym_RBRACE, + ACTIONS(5917), 1, + anon_sym_COMMA, + STATE(3796), 1, + aux_sym_record_type_repeat1, + STATE(3919), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213026] = 5, + [180280] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4593), 1, + ACTIONS(3681), 1, + anon_sym_RBRACE, + ACTIONS(5919), 1, + anon_sym_COMMA, + STATE(3884), 1, + aux_sym_record_repeat1, + STATE(3920), 1, sym_decorator, - ACTIONS(6587), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213045] = 5, + [180304] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4594), 1, + ACTIONS(3948), 1, + anon_sym_as, + STATE(3921), 1, sym_decorator, - ACTIONS(6589), 2, + ACTIONS(5921), 2, anon_sym_EQ, anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213064] = 5, + [180326] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4595), 1, + ACTIONS(3751), 1, + anon_sym_RBRACE, + ACTIONS(5923), 1, + anon_sym_COMMA, + STATE(3665), 1, + aux_sym_record_pattern_repeat1, + STATE(3922), 1, sym_decorator, - ACTIONS(6591), 2, - anon_sym_COLON, - anon_sym_EQ_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213083] = 6, + [180350] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1153), 1, - anon_sym_DQUOTE, - STATE(3065), 1, - sym_string, - STATE(4596), 1, + ACTIONS(637), 1, + anon_sym_RPAREN, + ACTIONS(5729), 1, + anon_sym_COMMA, + STATE(3819), 1, + aux_sym_variant_arguments_repeat1, + STATE(3923), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213104] = 5, + [180374] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4597), 1, + ACTIONS(5265), 1, + anon_sym_RBRACE, + ACTIONS(5925), 1, + anon_sym_COMMA, + STATE(3852), 1, + aux_sym_dict_repeat1, + STATE(3924), 1, sym_decorator, - ACTIONS(6593), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213123] = 5, + [180398] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4598), 1, - sym_decorator, - ACTIONS(4887), 2, + ACTIONS(643), 1, anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(5927), 1, + anon_sym_COMMA, + STATE(3798), 1, + aux_sym_tuple_repeat1, + STATE(3925), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213142] = 6, + [180422] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6595), 1, + ACTIONS(4965), 1, anon_sym_RBRACE, - ACTIONS(6597), 1, + ACTIONS(5929), 1, anon_sym_COMMA, - STATE(4599), 1, + STATE(3824), 1, + aux_sym_object_repeat1, + STATE(3926), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213163] = 6, + [180446] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(6600), 1, + ACTIONS(2073), 1, anon_sym_RPAREN, - STATE(4600), 1, + ACTIONS(5931), 1, + anon_sym_COMMA, + STATE(3738), 1, + aux_sym_tuple_type_repeat1, + STATE(3927), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213184] = 5, + [180470] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4601), 1, + ACTIONS(4752), 1, + anon_sym_PIPE, + STATE(3928), 1, sym_decorator, - ACTIONS(6602), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, + ACTIONS(5933), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213203] = 6, + [180492] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6604), 1, - anon_sym_RPAREN, - ACTIONS(6606), 1, - anon_sym_COLON_GT, - STATE(4602), 1, + ACTIONS(5935), 1, + anon_sym_RBRACE, + ACTIONS(5937), 1, + anon_sym_COMMA, + STATE(3929), 2, sym_decorator, + aux_sym_dict_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213224] = 5, + [180514] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4603), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(3887), 1, + aux_sym_member_expression_repeat1, + STATE(3930), 1, sym_decorator, - ACTIONS(6608), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, + STATE(4353), 1, + sym_module_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213243] = 6, + [180538] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(6610), 1, - anon_sym_RPAREN, - STATE(4604), 1, + ACTIONS(5940), 1, + anon_sym_RBRACE, + ACTIONS(5942), 1, + anon_sym_COMMA, + STATE(3842), 1, + aux_sym_record_repeat1, + STATE(3931), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213264] = 5, + [180562] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4605), 1, + ACTIONS(4752), 1, + anon_sym_PIPE, + STATE(3932), 1, sym_decorator, - ACTIONS(6612), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, + ACTIONS(5944), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213283] = 5, + [180584] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4606), 1, + ACTIONS(1216), 1, + anon_sym_RBRACE, + ACTIONS(5946), 1, + anon_sym_COMMA, + STATE(3577), 1, + aux_sym_array_pattern_repeat1, + STATE(3933), 1, sym_decorator, - ACTIONS(6614), 2, - sym__automatic_semicolon, - anon_sym_SEMI, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213302] = 5, + [180608] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4607), 1, + ACTIONS(1121), 1, + aux_sym_variant_identifier_token1, + STATE(1079), 1, + sym_variant_identifier, + STATE(2866), 1, + sym_module_identifier, + STATE(3934), 1, sym_decorator, - ACTIONS(6616), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213321] = 5, + [180632] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4608), 1, + STATE(3935), 1, sym_decorator, - ACTIONS(6387), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213340] = 5, + ACTIONS(2472), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + [180652] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4609), 1, + ACTIONS(3424), 1, + anon_sym_LBRACE, + ACTIONS(5948), 1, + anon_sym_if, + STATE(903), 1, + sym_block, + STATE(3936), 1, sym_decorator, - ACTIONS(6618), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213359] = 6, + [180676] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - STATE(4610), 1, + ACTIONS(5950), 1, + anon_sym_RBRACE, + ACTIONS(5952), 1, + anon_sym_COMMA, + STATE(3813), 1, + aux_sym_record_type_repeat1, + STATE(3937), 1, sym_decorator, - STATE(4628), 1, - sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213380] = 5, + [180700] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4611), 1, - sym_decorator, - ACTIONS(6620), 2, + ACTIONS(4613), 1, anon_sym_RBRACE, + ACTIONS(5954), 1, anon_sym_COMMA, + STATE(3826), 1, + aux_sym_object_type_repeat1, + STATE(3938), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213399] = 5, + [180724] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4612), 1, + ACTIONS(5368), 1, + anon_sym_PIPE, + ACTIONS(5956), 1, + anon_sym_RBRACK, + STATE(3900), 1, + aux_sym_polyvar_type_repeat1, + STATE(3939), 1, sym_decorator, - ACTIONS(6622), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213418] = 5, + [180748] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4613), 1, - sym_decorator, - ACTIONS(6579), 2, + ACTIONS(3747), 1, anon_sym_RBRACE, + ACTIONS(5088), 1, anon_sym_COMMA, + STATE(3665), 1, + aux_sym_record_pattern_repeat1, + STATE(3940), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213437] = 5, + [180772] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4614), 1, + ACTIONS(5960), 1, + anon_sym_COLON, + STATE(3941), 1, sym_decorator, - ACTIONS(6624), 2, + ACTIONS(5958), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213456] = 5, + [180794] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4615), 1, + ACTIONS(3948), 1, + anon_sym_as, + STATE(3942), 1, sym_decorator, - ACTIONS(5787), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5962), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213475] = 6, + [180816] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, + ACTIONS(5763), 1, anon_sym_COLON, - STATE(4562), 1, - sym_type_annotation, - STATE(4616), 1, + ACTIONS(5964), 1, + anon_sym_EQ_GT, + STATE(3943), 1, sym_decorator, + STATE(4380), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213496] = 5, + [180840] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4617), 1, - sym_decorator, - ACTIONS(6627), 2, - anon_sym_RBRACE, + ACTIONS(5966), 1, + anon_sym_RPAREN, + ACTIONS(5968), 1, anon_sym_COMMA, + STATE(3944), 2, + sym_decorator, + aux_sym_tuple_pattern_repeat1, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213515] = 5, + [180862] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4618), 1, + ACTIONS(5763), 1, + anon_sym_COLON, + ACTIONS(5971), 1, + anon_sym_EQ_GT, + STATE(3945), 1, sym_decorator, - ACTIONS(6629), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, + STATE(4391), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213534] = 5, + [180886] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4619), 1, + ACTIONS(5763), 1, + anon_sym_COLON, + ACTIONS(5973), 1, + anon_sym_EQ_GT, + STATE(3946), 1, sym_decorator, - ACTIONS(6044), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + STATE(4393), 1, + sym_module_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213553] = 5, + [180910] = 7, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4620), 1, - sym_decorator, - ACTIONS(5914), 2, - anon_sym_RBRACE, + ACTIONS(2083), 1, + anon_sym_RPAREN, + ACTIONS(5975), 1, anon_sym_COMMA, + STATE(3738), 1, + aux_sym_tuple_type_repeat1, + STATE(3947), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213572] = 5, + [180934] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4621), 1, + ACTIONS(3948), 1, + anon_sym_as, + STATE(3948), 1, sym_decorator, - ACTIONS(5921), 2, - anon_sym_RBRACE, + ACTIONS(5977), 2, + anon_sym_RPAREN, anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213591] = 6, + [180956] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(2326), 1, - anon_sym_as, - ACTIONS(6631), 1, - anon_sym_RPAREN, - STATE(4622), 1, + STATE(3949), 1, sym_decorator, + ACTIONS(5979), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213612] = 5, + [180975] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4623), 1, + STATE(3950), 1, sym_decorator, - ACTIONS(6633), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1467), 2, + anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213631] = 6, + [180994] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(75), 1, + ACTIONS(787), 1, anon_sym_DQUOTE, - STATE(3837), 1, + STATE(1791), 1, sym_string, - STATE(4624), 1, + STATE(3951), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213652] = 5, + [181015] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4625), 1, + ACTIONS(225), 1, + anon_sym_COLON, + STATE(3952), 1, sym_decorator, - ACTIONS(6635), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + STATE(4037), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213671] = 5, + [181036] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4626), 1, - sym_decorator, - ACTIONS(6063), 2, - anon_sym_RPAREN, + ACTIONS(5981), 1, + anon_sym_RBRACE, + ACTIONS(5983), 1, anon_sym_COMMA, + STATE(3953), 1, + sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213690] = 5, + [181057] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4627), 1, + STATE(3954), 1, sym_decorator, - ACTIONS(6637), 2, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(5986), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213709] = 5, + [181076] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4628), 1, + STATE(3955), 1, sym_decorator, - ACTIONS(6639), 2, + ACTIONS(5988), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213728] = 5, + [181095] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4629), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(5991), 1, + anon_sym_RPAREN, + STATE(3956), 1, sym_decorator, - ACTIONS(6641), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213747] = 5, + [181116] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4630), 1, + STATE(3957), 1, sym_decorator, - ACTIONS(6643), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5993), 2, + anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213766] = 6, + [181135] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(541), 1, - anon_sym_DQUOTE, - STATE(1099), 1, - sym_string, - STATE(4631), 1, + STATE(3958), 1, sym_decorator, + ACTIONS(5995), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213787] = 5, + [181154] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4632), 1, + STATE(3959), 1, sym_decorator, - ACTIONS(6112), 2, + ACTIONS(5997), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213806] = 5, + [181173] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4633), 1, + ACTIONS(3795), 1, + anon_sym_as, + ACTIONS(5999), 1, + anon_sym_EQ_GT, + STATE(3960), 1, sym_decorator, - ACTIONS(6645), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213825] = 5, + [181194] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4634), 1, + ACTIONS(6001), 1, + anon_sym_RPAREN, + ACTIONS(6003), 1, + anon_sym_COLON_GT, + STATE(3961), 1, sym_decorator, - ACTIONS(6647), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213844] = 5, + [181215] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4635), 1, + ACTIONS(2453), 1, + aux_sym_variant_identifier_token1, + STATE(2866), 1, + sym_module_identifier, + STATE(3962), 1, sym_decorator, - ACTIONS(6649), 2, - anon_sym_PIPE, - anon_sym_RBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213863] = 6, + [181236] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6616), 1, - anon_sym_COMMA, - ACTIONS(6651), 1, - anon_sym_RPAREN, - STATE(4636), 1, + ACTIONS(6005), 1, + anon_sym_LPAREN, + STATE(3963), 1, sym_decorator, + STATE(4402), 1, + sym_decorator_arguments, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213884] = 5, + [181257] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4637), 1, + STATE(3964), 1, sym_decorator, - ACTIONS(6653), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, + ACTIONS(6007), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213903] = 5, + [181276] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4638), 1, + STATE(3965), 1, sym_decorator, - ACTIONS(5944), 2, - anon_sym_RPAREN, + ACTIONS(3426), 2, anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213922] = 6, + [181295] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6655), 1, - anon_sym_LPAREN, - ACTIONS(6657), 1, - anon_sym_type, - STATE(4639), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(6009), 1, + anon_sym_EQ, + STATE(3966), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213943] = 5, + [181316] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4640), 1, + ACTIONS(6011), 1, + anon_sym_RPAREN, + ACTIONS(6013), 1, + anon_sym_COLON_GT, + STATE(3967), 1, sym_decorator, - ACTIONS(6659), 2, - anon_sym_COLON, - anon_sym_EQ_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213962] = 6, + [181337] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6661), 1, - anon_sym_RBRACE, - ACTIONS(6663), 1, - anon_sym_COMMA, - STATE(4641), 1, + STATE(3968), 1, sym_decorator, + ACTIONS(5207), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [213983] = 5, + [181356] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4642), 1, + STATE(3969), 1, sym_decorator, - ACTIONS(5723), 2, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(5637), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214002] = 5, + [181375] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4643), 1, + STATE(3970), 1, sym_decorator, - ACTIONS(6666), 2, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(6015), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214021] = 5, + [181394] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4644), 1, + STATE(3971), 1, sym_decorator, - ACTIONS(6668), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, + ACTIONS(6017), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214040] = 5, + [181413] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4645), 1, + STATE(3972), 1, sym_decorator, - ACTIONS(6670), 2, - anon_sym_COLON, - anon_sym_EQ_GT, + ACTIONS(6019), 2, + sym__automatic_semicolon, + anon_sym_SEMI, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214059] = 5, + [181432] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4646), 1, + STATE(3973), 1, sym_decorator, - ACTIONS(6672), 2, + ACTIONS(5655), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214078] = 5, + [181451] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4647), 1, + ACTIONS(3691), 1, + aux_sym_variant_identifier_token1, + STATE(2880), 1, + sym_module_identifier, + STATE(3974), 1, sym_decorator, - ACTIONS(5300), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214097] = 5, + [181472] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4648), 1, + STATE(3975), 1, sym_decorator, - ACTIONS(6674), 2, + ACTIONS(6021), 2, anon_sym_EQ, anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214116] = 6, + [181491] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6676), 1, - anon_sym_RPAREN, - ACTIONS(6679), 1, - anon_sym_COMMA, - STATE(4649), 1, + STATE(3976), 1, sym_decorator, + ACTIONS(6023), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214137] = 5, + [181510] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4650), 1, + STATE(3977), 1, sym_decorator, - ACTIONS(6472), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6025), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214156] = 5, + [181529] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4651), 1, + STATE(3978), 1, sym_decorator, - ACTIONS(5891), 2, + ACTIONS(5684), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214175] = 6, + [181548] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(923), 1, - anon_sym_DQUOTE, - STATE(1937), 1, - sym_string, - STATE(4652), 1, + STATE(3979), 1, sym_decorator, + ACTIONS(6027), 2, + anon_sym_PIPE, + anon_sym_RBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214196] = 5, + [181567] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4653), 1, + STATE(3980), 1, sym_decorator, - ACTIONS(6105), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6029), 2, + anon_sym_PIPE, + anon_sym_RBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214215] = 5, + [181586] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4654), 1, + STATE(3981), 1, sym_decorator, - ACTIONS(6682), 2, - anon_sym_PERCENT, - sym_extension_identifier, + ACTIONS(5666), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214234] = 5, + [181605] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4655), 1, + STATE(3982), 1, sym_decorator, - ACTIONS(6684), 2, + ACTIONS(6031), 2, anon_sym_COLON, anon_sym_EQ_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214253] = 5, + [181624] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4656), 1, + ACTIONS(4823), 1, + aux_sym_variant_identifier_token1, + STATE(3026), 1, + sym_variant_identifier, + STATE(3983), 1, sym_decorator, - ACTIONS(6686), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214272] = 5, + [181645] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4657), 1, + STATE(3984), 1, sym_decorator, - ACTIONS(6688), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, + ACTIONS(3462), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214291] = 6, + [181664] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6690), 1, - anon_sym_LPAREN, - STATE(4658), 1, + STATE(3985), 1, sym_decorator, - STATE(5088), 1, - sym_decorator_arguments, + ACTIONS(6033), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214312] = 5, + [181683] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4659), 1, + STATE(3986), 1, sym_decorator, - ACTIONS(6502), 2, + ACTIONS(5715), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214331] = 5, + [181702] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4660), 1, + STATE(3987), 1, sym_decorator, - ACTIONS(6692), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5046), 2, + anon_sym_PIPE, + anon_sym_RBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214350] = 5, + [181721] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4661), 1, + STATE(3988), 1, sym_decorator, - ACTIONS(6694), 2, + ACTIONS(6035), 2, anon_sym_EQ, anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214369] = 6, + [181740] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5211), 1, - aux_sym_variant_identifier_token1, - STATE(3461), 1, - sym_variant_identifier, - STATE(4662), 1, + STATE(3989), 1, sym_decorator, + ACTIONS(5723), 2, + anon_sym_PIPE, + anon_sym_RBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214390] = 6, + [181759] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(177), 1, - anon_sym_DQUOTE, - STATE(1099), 1, - sym_string, - STATE(4663), 1, + STATE(3990), 1, sym_decorator, + ACTIONS(5491), 2, + anon_sym_COMMA, + anon_sym_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214411] = 6, + [181778] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6696), 1, - anon_sym_RPAREN, - ACTIONS(6698), 1, - anon_sym_COLON_GT, - STATE(4664), 1, + STATE(3991), 1, sym_decorator, + ACTIONS(5737), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214432] = 6, + [181797] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(229), 1, - anon_sym_COLON, - STATE(4665), 1, + STATE(3992), 1, sym_decorator, - STATE(4865), 1, - sym_type_annotation, + ACTIONS(6037), 2, + anon_sym_PIPE, + anon_sym_RBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214453] = 5, + [181816] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - STATE(4666), 1, + STATE(3993), 1, sym_decorator, - ACTIONS(6700), 2, + ACTIONS(6039), 2, anon_sym_EQ, anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214472] = 5, + [181835] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5371), 1, - anon_sym_DOT, - STATE(4667), 1, + STATE(3994), 1, sym_decorator, + ACTIONS(5005), 2, + anon_sym_RBRACE, + anon_sym_PIPE, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214490] = 5, + [181854] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5369), 1, - anon_sym_DOT, - STATE(4668), 1, + STATE(3995), 1, sym_decorator, - ACTIONS(5), 3, - sym__continuation, - sym_block_comment, - sym_line_comment, - [214508] = 5, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(6702), 1, + ACTIONS(6041), 2, anon_sym_RPAREN, - STATE(4669), 1, - sym_decorator, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214526] = 5, + [181873] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6704), 1, - anon_sym_EQ_GT, - STATE(4670), 1, + STATE(3996), 1, sym_decorator, + ACTIONS(6043), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214544] = 5, + [181892] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(485), 1, - anon_sym_RPAREN, - STATE(4671), 1, + STATE(3997), 1, sym_decorator, + ACTIONS(5748), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214562] = 5, + [181911] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6706), 1, - anon_sym_COMMA, - STATE(4672), 1, + STATE(3998), 1, sym_decorator, + ACTIONS(6045), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214580] = 5, + [181930] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6708), 1, + ACTIONS(6047), 1, anon_sym_LPAREN, - STATE(4673), 1, + ACTIONS(6049), 1, + anon_sym_type, + STATE(3999), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214598] = 5, + [181951] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5312), 1, - anon_sym_DOT, - STATE(4674), 1, + ACTIONS(173), 1, + anon_sym_DQUOTE, + STATE(1076), 1, + sym_string, + STATE(4000), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214616] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(6710), 1, - anon_sym_SLASH2, - STATE(4675), 1, - sym_decorator, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - [214636] = 5, + [181972] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6712), 1, - anon_sym_DOT, - STATE(4676), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(6051), 1, + anon_sym_RPAREN, + STATE(4001), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214654] = 5, + [181993] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6714), 1, - anon_sym_EQ_GT, - STATE(4677), 1, + STATE(4002), 1, sym_decorator, + ACTIONS(6053), 2, + anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214672] = 5, + [182012] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6716), 1, - anon_sym_LBRACE, - STATE(4678), 1, + STATE(4003), 1, sym_decorator, + ACTIONS(5779), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214690] = 5, + [182031] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6718), 1, - anon_sym_RBRACE, - STATE(4679), 1, + STATE(4004), 1, sym_decorator, + ACTIONS(6055), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214708] = 5, + [182050] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6720), 1, - anon_sym_RPAREN, - STATE(4680), 1, + STATE(4005), 1, sym_decorator, + ACTIONS(4464), 2, + anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214726] = 5, + [182069] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5326), 1, - anon_sym_DOT, - STATE(4681), 1, + ACTIONS(517), 1, + anon_sym_DQUOTE, + STATE(1076), 1, + sym_string, + STATE(4006), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214744] = 5, + [182090] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6722), 1, - anon_sym_GT, - STATE(4682), 1, + ACTIONS(75), 1, + anon_sym_DQUOTE, + STATE(3384), 1, + sym_string, + STATE(4007), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214762] = 5, + [182111] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6724), 1, - anon_sym_EQ_GT, - STATE(4683), 1, + STATE(4008), 1, sym_decorator, + ACTIONS(6057), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214780] = 5, + [182130] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6726), 1, - anon_sym_RBRACE, - STATE(4684), 1, + STATE(4009), 1, sym_decorator, + ACTIONS(6059), 2, + anon_sym_COMMA, + anon_sym_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214798] = 5, + [182149] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6728), 1, - anon_sym_RPAREN, - STATE(4685), 1, + STATE(4010), 1, sym_decorator, + ACTIONS(6061), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214816] = 5, + [182168] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6730), 1, - anon_sym_EQ_GT, - STATE(4686), 1, + STATE(4011), 1, sym_decorator, + ACTIONS(6063), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214834] = 5, + [182187] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6732), 1, - anon_sym_DOT, - STATE(4687), 1, + STATE(4012), 1, sym_decorator, + ACTIONS(6065), 2, + anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214852] = 5, + [182206] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6734), 1, - anon_sym_EQ_GT, - STATE(4688), 1, + STATE(4013), 1, sym_decorator, + ACTIONS(6067), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214870] = 5, + [182225] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5292), 1, - anon_sym_DOT, - STATE(4689), 1, + STATE(4014), 1, sym_decorator, + ACTIONS(6069), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214888] = 5, + [182244] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6736), 1, - anon_sym_GT, - STATE(4690), 1, + STATE(4015), 1, sym_decorator, + ACTIONS(6071), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214906] = 5, + [182263] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6738), 1, - anon_sym_EQ_GT, - STATE(4691), 1, + STATE(4016), 1, sym_decorator, + ACTIONS(6073), 2, + anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214924] = 5, + [182282] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6740), 1, - anon_sym_GT, - STATE(4692), 1, + STATE(4017), 1, sym_decorator, + ACTIONS(3637), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214942] = 5, + [182301] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6742), 1, - anon_sym_GT, - STATE(4693), 1, + STATE(4018), 1, sym_decorator, + ACTIONS(4891), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214960] = 5, + [182320] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6744), 1, - anon_sym_EQ_GT, - STATE(4694), 1, + ACTIONS(1069), 1, + anon_sym_DQUOTE, + STATE(2633), 1, + sym_string, + STATE(4019), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214978] = 5, + [182341] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6746), 1, - anon_sym_EQ_GT, - STATE(4695), 1, + ACTIONS(719), 1, + anon_sym_DQUOTE, + STATE(867), 1, + sym_string, + STATE(4020), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [214996] = 5, + [182362] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6748), 1, - anon_sym_EQ_GT, - STATE(4696), 1, + ACTIONS(6075), 1, + anon_sym_RPAREN, + ACTIONS(6077), 1, + anon_sym_COLON_GT, + STATE(4021), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215014] = 5, + [182383] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6750), 1, - anon_sym_EQ_GT, - STATE(4697), 1, + STATE(4022), 1, sym_decorator, + ACTIONS(6079), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215032] = 5, + [182402] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(4698), 1, + STATE(4023), 1, sym_decorator, + ACTIONS(3862), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_GT, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215050] = 5, + [182421] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6754), 1, - anon_sym_RBRACE, - STATE(4699), 1, + STATE(4024), 1, sym_decorator, + ACTIONS(6081), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215068] = 5, + [182440] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6756), 1, - anon_sym_EQ_GT, - STATE(4700), 1, + STATE(4025), 1, sym_decorator, + ACTIONS(6083), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215086] = 5, + [182459] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6758), 1, - anon_sym_GT, - STATE(4701), 1, + STATE(4026), 1, sym_decorator, + ACTIONS(6085), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215104] = 5, + [182478] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6760), 1, - anon_sym_GT, - STATE(4702), 1, + STATE(4027), 1, sym_decorator, + ACTIONS(6087), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215122] = 5, + [182497] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(477), 1, - anon_sym_RPAREN, - STATE(4703), 1, + STATE(4028), 1, sym_decorator, + ACTIONS(6089), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215140] = 5, + [182516] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5199), 1, - anon_sym_DOT, - STATE(4704), 1, + STATE(4029), 1, sym_decorator, + ACTIONS(5822), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215158] = 5, + [182535] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6762), 1, - anon_sym_EQ_GT, - STATE(4705), 1, + ACTIONS(3755), 1, + anon_sym_LT, + STATE(1009), 1, + sym_type_arguments, + STATE(4030), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215176] = 5, + [182556] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6604), 1, - anon_sym_RPAREN, - STATE(4706), 1, + STATE(4031), 1, sym_decorator, + ACTIONS(5844), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215194] = 5, + [182575] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6764), 1, - anon_sym_EQ_GT, - STATE(4707), 1, + STATE(4032), 1, sym_decorator, + ACTIONS(6091), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215212] = 5, + [182594] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6766), 1, - anon_sym_EQ_GT, - STATE(4708), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(6093), 1, + anon_sym_EQ, + STATE(4033), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215230] = 5, + [182615] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6768), 1, - anon_sym_EQ_GT, - STATE(4709), 1, + STATE(4034), 1, sym_decorator, + ACTIONS(6095), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215248] = 5, + [182634] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6770), 1, - ts_builtin_sym_end, - STATE(4710), 1, + ACTIONS(6097), 1, + anon_sym_RPAREN, + ACTIONS(6100), 1, + anon_sym_COMMA, + STATE(4035), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215266] = 5, + [182655] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6772), 1, - anon_sym_LBRACE, - STATE(4711), 1, + STATE(4036), 1, sym_decorator, + ACTIONS(6103), 2, + anon_sym_PERCENT, + sym_extension_identifier, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215284] = 5, + [182674] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5900), 1, - anon_sym_if, - STATE(4712), 1, + STATE(4037), 1, sym_decorator, + ACTIONS(6105), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215302] = 5, + [182693] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6774), 1, - anon_sym_EQ_GT, - STATE(4713), 1, + STATE(4038), 1, sym_decorator, + ACTIONS(6107), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215320] = 6, - ACTIONS(3), 1, - sym_line_comment, + [182712] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6776), 1, - sym_regex_pattern, - STATE(4714), 1, - sym_decorator, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - [215340] = 5, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(6778), 1, - anon_sym_EQ_GT, - STATE(4715), 1, + STATE(4039), 1, sym_decorator, + ACTIONS(5422), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215358] = 5, + [182731] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6780), 1, - anon_sym_GT, - STATE(4716), 1, + ACTIONS(6041), 1, + anon_sym_COMMA, + ACTIONS(6109), 1, + anon_sym_RPAREN, + STATE(4040), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215376] = 5, + [182752] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6782), 1, - anon_sym_RBRACE, - STATE(4717), 1, + STATE(4041), 1, sym_decorator, + ACTIONS(4909), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215394] = 5, + [182771] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6784), 1, - anon_sym_EQ_GT, - STATE(4718), 1, + STATE(4042), 1, sym_decorator, + ACTIONS(6111), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215412] = 5, + [182790] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6786), 1, - anon_sym_EQ_GT, - STATE(4719), 1, + STATE(4043), 1, sym_decorator, + ACTIONS(5538), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215430] = 5, + [182809] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6788), 1, - anon_sym_GT, - STATE(4720), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(6113), 1, + anon_sym_RPAREN, + STATE(4044), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215448] = 5, + [182830] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6577), 1, + ACTIONS(5997), 1, + anon_sym_COMMA, + ACTIONS(6115), 1, anon_sym_RBRACE, - STATE(4721), 1, + STATE(4045), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215466] = 5, + [182851] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6790), 1, - anon_sym_LBRACE, - STATE(4722), 1, + STATE(4046), 1, sym_decorator, + ACTIONS(6117), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215484] = 5, + [182870] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6792), 1, - anon_sym_RBRACE, - STATE(4723), 1, + STATE(4047), 1, sym_decorator, + ACTIONS(6119), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215502] = 6, - ACTIONS(3), 1, - sym_line_comment, + [182889] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6794), 1, - anon_sym_SLASH2, - STATE(4724), 1, + STATE(4048), 1, sym_decorator, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - [215522] = 5, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(6796), 1, + ACTIONS(6121), 2, + anon_sym_COLON, anon_sym_EQ_GT, - STATE(4725), 1, - sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215540] = 5, + [182908] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(479), 1, - anon_sym_RPAREN, - STATE(4726), 1, + STATE(4049), 1, sym_decorator, + ACTIONS(6123), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215558] = 5, + [182927] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6798), 1, - anon_sym_LBRACE, - STATE(4727), 1, + STATE(4050), 1, sym_decorator, + ACTIONS(6125), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215576] = 6, - ACTIONS(3), 1, - sym_line_comment, + [182946] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6800), 1, - sym_regex_pattern, - STATE(4728), 1, + STATE(4051), 1, sym_decorator, - ACTIONS(5), 2, + ACTIONS(6127), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [215596] = 5, + sym_line_comment, + [182965] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6802), 1, - anon_sym_BQUOTE, - STATE(4729), 1, + STATE(4052), 1, sym_decorator, + ACTIONS(5902), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215614] = 5, + [182984] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6804), 1, - anon_sym_EQ_GT, - STATE(4730), 1, + ACTIONS(225), 1, + anon_sym_COLON, + STATE(3976), 1, + sym_type_annotation, + STATE(4053), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215632] = 5, + [183005] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6806), 1, - anon_sym_RPAREN, - STATE(4731), 1, + STATE(4054), 1, sym_decorator, + ACTIONS(4441), 2, + anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215650] = 5, + [183024] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6169), 1, - anon_sym_if, - STATE(4732), 1, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(2057), 1, + sym_string, + STATE(4055), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215668] = 5, + [183045] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6808), 1, - anon_sym_EQ_GT, - STATE(4733), 1, + ACTIONS(6129), 1, + anon_sym_RPAREN, + ACTIONS(6131), 1, + anon_sym_COLON_GT, + STATE(4056), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215686] = 5, + [183066] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5367), 1, - anon_sym_DOT, - STATE(4734), 1, + ACTIONS(75), 1, + anon_sym_DQUOTE, + STATE(1750), 1, + sym_string, + STATE(4057), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215704] = 5, + [183087] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5213), 1, - anon_sym_DOT, - STATE(4735), 1, + STATE(4058), 1, sym_decorator, + ACTIONS(5935), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215722] = 5, + [183106] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(517), 1, + ACTIONS(3948), 1, + anon_sym_as, + ACTIONS(6133), 1, anon_sym_RPAREN, - STATE(4736), 1, + STATE(4059), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215740] = 5, + [183127] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6810), 1, - anon_sym_EQ_GT, - STATE(4737), 1, + STATE(4060), 1, sym_decorator, + ACTIONS(6135), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215758] = 5, + [183146] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5288), 1, - anon_sym_DOT, - STATE(4738), 1, + STATE(4061), 1, sym_decorator, + ACTIONS(5966), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215776] = 5, + [183165] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6812), 1, - anon_sym_DOT, - STATE(4739), 1, + STATE(4062), 1, sym_decorator, + ACTIONS(6137), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215794] = 5, + [183184] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6814), 1, - anon_sym_RPAREN, - STATE(4740), 1, + STATE(4063), 1, sym_decorator, + ACTIONS(6139), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215812] = 5, + [183203] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6816), 1, + ACTIONS(6141), 1, + anon_sym_RBRACE, + ACTIONS(6143), 1, anon_sym_COMMA, - STATE(4741), 1, + STATE(4064), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215830] = 5, + [183224] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6818), 1, - anon_sym_LPAREN, - STATE(4742), 1, + STATE(4065), 1, sym_decorator, + ACTIONS(5309), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215848] = 5, + [183243] = 6, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6820), 1, - anon_sym_GT, - STATE(4743), 1, + ACTIONS(225), 1, + anon_sym_COLON, + STATE(4066), 1, sym_decorator, + STATE(4337), 1, + sym_type_annotation, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215866] = 5, + [183264] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6822), 1, - anon_sym_EQ_GT, - STATE(4744), 1, + STATE(4067), 1, sym_decorator, + ACTIONS(6146), 2, + anon_sym_PIPE, + anon_sym_RBRACK, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215884] = 5, + [183283] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6824), 1, - anon_sym_LBRACE, - STATE(4745), 1, + STATE(4068), 1, sym_decorator, + ACTIONS(5689), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215902] = 5, + [183302] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(503), 1, - anon_sym_RPAREN, - STATE(4746), 1, + STATE(4069), 1, sym_decorator, + ACTIONS(6148), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215920] = 5, + [183321] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6826), 1, - anon_sym_EQ_GT, - STATE(4747), 1, + ACTIONS(5948), 1, + anon_sym_if, + STATE(4070), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215938] = 5, + [183339] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6828), 1, - anon_sym_RPAREN, - STATE(4748), 1, + ACTIONS(6150), 1, + anon_sym_EQ_GT, + STATE(4071), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215956] = 5, + [183357] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(487), 1, - anon_sym_RPAREN, - STATE(4749), 1, + ACTIONS(6152), 1, + anon_sym_BQUOTE, + STATE(4072), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215974] = 5, + [183375] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6831), 1, + ACTIONS(6154), 1, anon_sym_RPAREN, - STATE(4750), 1, + STATE(4073), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [215992] = 5, + [183393] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6833), 1, - anon_sym_COMMA, - STATE(4751), 1, + ACTIONS(6156), 1, + anon_sym_EQ_GT, + STATE(4074), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216010] = 5, + [183411] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6835), 1, - anon_sym_LBRACE, - STATE(4752), 1, + ACTIONS(6158), 1, + anon_sym_EQ_GT, + STATE(4075), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216028] = 5, + [183429] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6837), 1, - anon_sym_EQ_GT, - STATE(4753), 1, + ACTIONS(6160), 1, + sym_regex_pattern, + STATE(4076), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [216046] = 5, + [183449] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6839), 1, - anon_sym_COMMA, - STATE(4754), 1, + ACTIONS(6162), 1, + anon_sym_GT, + STATE(4077), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216064] = 5, + [183467] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5219), 1, - anon_sym_DOT, - STATE(4755), 1, + ACTIONS(477), 1, + anon_sym_RPAREN, + STATE(4078), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216082] = 5, + [183485] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6841), 1, + ACTIONS(6164), 1, anon_sym_EQ_GT, - STATE(4756), 1, + STATE(4079), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216100] = 5, + [183503] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6657), 1, - anon_sym_type, - STATE(4757), 1, + ACTIONS(6166), 1, + anon_sym_DOT, + STATE(4080), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216118] = 5, + [183521] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(481), 1, - anon_sym_RPAREN, - STATE(4758), 1, + ACTIONS(6168), 1, + anon_sym_EQ_GT, + STATE(4081), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216136] = 5, + [183539] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(1456), 1, + ACTIONS(6170), 1, anon_sym_EQ_GT, - STATE(4759), 1, + STATE(4082), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216154] = 5, + [183557] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6843), 1, - anon_sym_DOT, - STATE(4760), 1, + ACTIONS(6172), 1, + anon_sym_RPAREN, + STATE(4083), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216172] = 5, + [183575] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6549), 1, - anon_sym_RPAREN, - STATE(4761), 1, + ACTIONS(6174), 1, + anon_sym_RBRACE, + STATE(4084), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216190] = 5, + [183593] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5223), 1, - anon_sym_DOT, - STATE(4762), 1, + ACTIONS(6176), 1, + anon_sym_COMMA, + STATE(4085), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216208] = 5, + [183611] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6845), 1, - anon_sym_EQ_GT, - STATE(4763), 1, + ACTIONS(6178), 1, + anon_sym_LPAREN, + STATE(4086), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216226] = 5, + [183629] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6847), 1, - anon_sym_EQ_GT, - STATE(4764), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(4087), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216244] = 6, - ACTIONS(3), 1, - sym_line_comment, + [183647] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6849), 1, - anon_sym_SLASH2, - STATE(4765), 1, + ACTIONS(6182), 1, + anon_sym_EQ_GT, + STATE(4088), 1, sym_decorator, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [216264] = 6, + sym_line_comment, + [183665] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6851), 1, - sym_regex_pattern, - STATE(4766), 1, + ACTIONS(6184), 1, + anon_sym_SLASH2, + STATE(4089), 1, sym_decorator, ACTIONS(5), 2, sym__continuation, sym_block_comment, - [216284] = 5, + [183685] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6853), 1, - anon_sym_GT, - STATE(4767), 1, + ACTIONS(483), 1, + anon_sym_RPAREN, + STATE(4090), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216302] = 5, + [183703] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5197), 1, - anon_sym_DOT, - STATE(4768), 1, + ACTIONS(6186), 1, + anon_sym_EQ_GT, + STATE(4091), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216320] = 5, + [183721] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6855), 1, - anon_sym_DOT, - STATE(4769), 1, + ACTIONS(6188), 1, + anon_sym_EQ_GT, + STATE(4092), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216338] = 5, + [183739] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6857), 1, - anon_sym_LBRACE, - STATE(4770), 1, + ACTIONS(6190), 1, + sym_regex_pattern, + STATE(4093), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [216356] = 5, + [183759] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5225), 1, - anon_sym_DOT, - STATE(4771), 1, + ACTIONS(6192), 1, + anon_sym_EQ_GT, + STATE(4094), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216374] = 5, + [183777] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6859), 1, - anon_sym_EQ_GT, - STATE(4772), 1, + ACTIONS(4156), 1, + anon_sym_LPAREN, + STATE(4095), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216392] = 5, + [183795] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6537), 1, + ACTIONS(485), 1, anon_sym_RPAREN, - STATE(4773), 1, + STATE(4096), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216410] = 5, + [183813] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6861), 1, - anon_sym_RBRACE, - STATE(4774), 1, + ACTIONS(6194), 1, + anon_sym_BQUOTE, + STATE(4097), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216428] = 5, + [183831] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6863), 1, - anon_sym_RBRACE, - STATE(4775), 1, + ACTIONS(6196), 1, + anon_sym_DOT, + STATE(4098), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216446] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(6865), 1, - anon_sym_SLASH2, - STATE(4776), 1, - sym_decorator, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - [216466] = 5, + [183849] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5457), 1, - anon_sym_DOT, - STATE(4777), 1, + ACTIONS(6198), 1, + anon_sym_EQ_GT, + STATE(4099), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216484] = 5, + [183867] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6867), 1, - anon_sym_GT, - STATE(4778), 1, + ACTIONS(5696), 1, + anon_sym_if, + STATE(4100), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216502] = 5, + [183885] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6869), 1, + ACTIONS(6200), 1, anon_sym_RPAREN, - STATE(4779), 1, + STATE(4101), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216520] = 5, + [183903] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6871), 1, + ACTIONS(6202), 1, anon_sym_EQ_GT, - STATE(4780), 1, + STATE(4102), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216538] = 5, + [183921] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6873), 1, - anon_sym_EQ_GT, - STATE(4781), 1, + ACTIONS(6204), 1, + sym_regex_pattern, + STATE(4103), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [216556] = 6, - ACTIONS(3), 1, - sym_line_comment, + [183941] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6875), 1, - sym_regex_pattern, - STATE(4782), 1, + ACTIONS(6206), 1, + anon_sym_GT, + STATE(4104), 1, sym_decorator, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [216576] = 6, + sym_line_comment, + [183959] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6877), 1, + ACTIONS(6208), 1, anon_sym_SLASH2, - STATE(4783), 1, + STATE(4105), 1, sym_decorator, ACTIONS(5), 2, sym__continuation, sym_block_comment, - [216596] = 5, + [183979] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5227), 1, - anon_sym_DOT, - STATE(4784), 1, + ACTIONS(6210), 1, + anon_sym_EQ_GT, + STATE(4106), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216614] = 5, + [183997] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6879), 1, - anon_sym_BQUOTE, - STATE(4785), 1, + ACTIONS(4718), 1, + anon_sym_DOT, + STATE(4107), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216632] = 5, + [184015] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6881), 1, + ACTIONS(6212), 1, anon_sym_EQ_GT, - STATE(4786), 1, + STATE(4108), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216650] = 5, + [184033] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6883), 1, - anon_sym_RPAREN, - STATE(4787), 1, + ACTIONS(4772), 1, + anon_sym_DOT, + STATE(4109), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216668] = 5, + [184051] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6885), 1, + ACTIONS(6214), 1, anon_sym_RPAREN, - STATE(4788), 1, + STATE(4110), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216686] = 5, + [184069] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6887), 1, - anon_sym_EQ_GT, - STATE(4789), 1, + ACTIONS(6216), 1, + anon_sym_RBRACE, + STATE(4111), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216704] = 5, + [184087] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5229), 1, - anon_sym_DOT, - STATE(4790), 1, + ACTIONS(6218), 1, + anon_sym_RBRACE, + STATE(4112), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216722] = 5, + [184105] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5314), 1, - anon_sym_DOT, - STATE(4791), 1, + ACTIONS(6220), 1, + anon_sym_EQ_GT, + STATE(4113), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216740] = 5, + [184123] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6889), 1, - anon_sym_EQ_GT, - STATE(4792), 1, + ACTIONS(6222), 1, + anon_sym_GT, + STATE(4114), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216758] = 5, + [184141] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6891), 1, + ACTIONS(6224), 1, anon_sym_EQ_GT, - STATE(4793), 1, + STATE(4115), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216776] = 5, + [184159] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6893), 1, - anon_sym_LBRACE, - STATE(4794), 1, + ACTIONS(6226), 1, + anon_sym_RPAREN, + STATE(4116), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216794] = 5, + [184177] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6895), 1, - anon_sym_RPAREN, - STATE(4795), 1, + ACTIONS(6228), 1, + anon_sym_EQ_GT, + STATE(4117), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216812] = 5, + [184195] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5231), 1, - anon_sym_DOT, - STATE(4796), 1, + ACTIONS(6230), 1, + anon_sym_RPAREN, + STATE(4118), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216830] = 5, + [184213] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6897), 1, - anon_sym_LBRACE, - STATE(4797), 1, + ACTIONS(473), 1, + anon_sym_RPAREN, + STATE(4119), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216848] = 5, + [184231] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6899), 1, - anon_sym_GT, - STATE(4798), 1, + ACTIONS(6232), 1, + anon_sym_EQ_GT, + STATE(4120), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216866] = 5, + [184249] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6901), 1, - anon_sym_LBRACE, - STATE(4799), 1, + ACTIONS(6234), 1, + sym_regex_pattern, + STATE(4121), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [216884] = 5, + [184269] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6903), 1, - anon_sym_LBRACE, - STATE(4800), 1, + ACTIONS(4788), 1, + anon_sym_DOT, + STATE(4122), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216902] = 5, + [184287] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5381), 1, - anon_sym_DOT, - STATE(4801), 1, + ACTIONS(6236), 1, + anon_sym_EQ_GT, + STATE(4123), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216920] = 5, + [184305] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6905), 1, + ACTIONS(6238), 1, anon_sym_EQ_GT, - STATE(4802), 1, + STATE(4124), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216938] = 5, + [184323] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6907), 1, - anon_sym_RPAREN, - STATE(4803), 1, + ACTIONS(6240), 1, + anon_sym_LBRACE, + STATE(4125), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216956] = 5, + [184341] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6909), 1, - anon_sym_COMMA, - STATE(4804), 1, + ACTIONS(6242), 1, + anon_sym_EQ_GT, + STATE(4126), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216974] = 5, + [184359] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6911), 1, - anon_sym_LPAREN, - STATE(4805), 1, + ACTIONS(6244), 1, + anon_sym_EQ_GT, + STATE(4127), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [216992] = 6, + [184377] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6913), 1, + ACTIONS(6246), 1, sym_regex_pattern, - STATE(4806), 1, + STATE(4128), 1, sym_decorator, ACTIONS(5), 2, sym__continuation, sym_block_comment, - [217012] = 5, + [184397] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6915), 1, - anon_sym_RBRACE, - STATE(4807), 1, + ACTIONS(495), 1, + anon_sym_RPAREN, + STATE(4129), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217030] = 5, + [184415] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6917), 1, - anon_sym_RPAREN, - STATE(4808), 1, + ACTIONS(6248), 1, + anon_sym_GT, + STATE(4130), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217048] = 5, + [184433] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6919), 1, - anon_sym_GT, - STATE(4809), 1, + ACTIONS(6075), 1, + anon_sym_RPAREN, + STATE(4131), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217066] = 5, + [184451] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5263), 1, - anon_sym_DOT, - STATE(4810), 1, + ACTIONS(6250), 1, + anon_sym_EQ_GT, + STATE(4132), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217084] = 5, + [184469] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6921), 1, - anon_sym_COMMA, - STATE(4811), 1, + ACTIONS(6252), 1, + anon_sym_EQ_GT, + STATE(4133), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217102] = 5, + [184487] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5233), 1, - anon_sym_DOT, - STATE(4812), 1, + ACTIONS(4490), 1, + aux_sym_variant_identifier_token1, + STATE(4134), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217120] = 5, + [184505] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6923), 1, + ACTIONS(6254), 1, anon_sym_EQ_GT, - STATE(4813), 1, + STATE(4135), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217138] = 5, + [184523] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6925), 1, - anon_sym_GT, - STATE(4814), 1, + ACTIONS(6256), 1, + anon_sym_RBRACE, + STATE(4136), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217156] = 5, + [184541] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5235), 1, - anon_sym_DOT, - STATE(4815), 1, + ACTIONS(6258), 1, + anon_sym_SLASH2, + STATE(4137), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [217174] = 5, + [184561] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6927), 1, + ACTIONS(6260), 1, anon_sym_COLON, - STATE(4816), 1, + STATE(4138), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217192] = 5, + [184579] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4339), 1, - anon_sym_LPAREN, - STATE(4817), 1, + ACTIONS(6262), 1, + anon_sym_RBRACE, + STATE(4139), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217210] = 5, + [184597] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5237), 1, - anon_sym_DOT, - STATE(4818), 1, + ACTIONS(6264), 1, + anon_sym_RPAREN, + STATE(4140), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217228] = 5, + [184615] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6929), 1, - anon_sym_GT, - STATE(4819), 1, + ACTIONS(6266), 1, + anon_sym_EQ_GT, + STATE(4141), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217246] = 5, + [184633] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6931), 1, - anon_sym_EQ_GT, - STATE(4820), 1, + ACTIONS(6268), 1, + anon_sym_BQUOTE, + STATE(4142), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217264] = 5, + [184651] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5415), 1, - anon_sym_DOT, - STATE(4821), 1, + ACTIONS(6270), 1, + anon_sym_RPAREN, + STATE(4143), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217282] = 5, + [184669] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6655), 1, - anon_sym_LPAREN, - STATE(4822), 1, + ACTIONS(6272), 1, + anon_sym_RBRACE, + STATE(4144), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217300] = 5, + [184687] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5239), 1, - anon_sym_DOT, - STATE(4823), 1, + ACTIONS(6274), 1, + anon_sym_EQ_GT, + STATE(4145), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217318] = 5, + [184705] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6933), 1, + ACTIONS(6276), 1, anon_sym_EQ_GT, - STATE(4824), 1, + STATE(4146), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217336] = 5, + [184723] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5241), 1, - anon_sym_DOT, - STATE(4825), 1, + ACTIONS(6278), 1, + ts_builtin_sym_end, + STATE(4147), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217354] = 5, + [184741] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6935), 1, - anon_sym_GT, - STATE(4826), 1, + ACTIONS(6280), 1, + anon_sym_RPAREN, + STATE(4148), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217372] = 5, + [184759] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(491), 1, - anon_sym_RPAREN, - STATE(4827), 1, + ACTIONS(6282), 1, + anon_sym_COMMA, + STATE(4149), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217390] = 5, + [184777] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6937), 1, - anon_sym_EQ_GT, - STATE(4828), 1, + ACTIONS(6284), 1, + anon_sym_SLASH2, + STATE(4150), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [217408] = 5, + [184797] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6939), 1, - anon_sym_DOT, - STATE(4829), 1, + ACTIONS(6286), 1, + anon_sym_EQ_GT, + STATE(4151), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217426] = 5, + [184815] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6941), 1, + ACTIONS(6288), 1, anon_sym_EQ_GT, - STATE(4830), 1, + STATE(4152), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217444] = 5, + [184833] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6943), 1, - anon_sym_RPAREN, - STATE(4831), 1, + ACTIONS(6290), 1, + anon_sym_EQ_GT, + STATE(4153), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217462] = 6, - ACTIONS(3), 1, - sym_line_comment, + [184851] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6945), 1, - sym_regex_pattern, - STATE(4832), 1, + ACTIONS(6292), 1, + anon_sym_EQ_GT, + STATE(4154), 1, sym_decorator, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [217482] = 5, + sym_line_comment, + [184869] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6947), 1, + ACTIONS(6294), 1, anon_sym_EQ_GT, - STATE(4833), 1, + STATE(4155), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217500] = 5, + [184887] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5243), 1, - anon_sym_DOT, - STATE(4834), 1, + ACTIONS(6296), 1, + anon_sym_RPAREN, + STATE(4156), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217518] = 5, + [184905] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(515), 1, - anon_sym_RPAREN, - STATE(4835), 1, + ACTIONS(6299), 1, + anon_sym_GT, + STATE(4157), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217536] = 5, + [184923] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(3713), 1, - anon_sym_RPAREN, - STATE(4836), 1, + ACTIONS(6301), 1, + anon_sym_GT, + STATE(4158), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217554] = 5, + [184941] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6949), 1, - anon_sym_COMMA, - STATE(4837), 1, + ACTIONS(6303), 1, + anon_sym_EQ_GT, + STATE(4159), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217572] = 5, + [184959] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6951), 1, - anon_sym_LPAREN, - STATE(4838), 1, + ACTIONS(497), 1, + anon_sym_RPAREN, + STATE(4160), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217590] = 5, + [184977] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6953), 1, - anon_sym_EQ_GT, - STATE(4839), 1, + ACTIONS(6305), 1, + anon_sym_GT, + STATE(4161), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217608] = 5, + [184995] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6955), 1, - anon_sym_EQ_GT, - STATE(4840), 1, + ACTIONS(6307), 1, + anon_sym_BQUOTE, + STATE(4162), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217626] = 5, + [185013] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5385), 1, - anon_sym_DOT, - STATE(4841), 1, + ACTIONS(6309), 1, + anon_sym_EQ_GT, + STATE(4163), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217644] = 5, + [185031] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6957), 1, + ACTIONS(6311), 1, anon_sym_EQ_GT, - STATE(4842), 1, + STATE(4164), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217662] = 5, + [185049] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5245), 1, - anon_sym_DOT, - STATE(4843), 1, + ACTIONS(6313), 1, + anon_sym_COLON, + STATE(4165), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217680] = 5, + [185067] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6959), 1, - anon_sym_DOT, - STATE(4844), 1, + ACTIONS(475), 1, + anon_sym_RPAREN, + STATE(4166), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217698] = 5, + [185085] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6961), 1, - anon_sym_GT, - STATE(4845), 1, + ACTIONS(6315), 1, + anon_sym_EQ_GT, + STATE(4167), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217716] = 5, + [185103] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6963), 1, + ACTIONS(6317), 1, anon_sym_EQ_GT, - STATE(4846), 1, + STATE(4168), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217734] = 5, + [185121] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6965), 1, - anon_sym_GT, - STATE(4847), 1, + ACTIONS(6319), 1, + anon_sym_EQ_GT, + STATE(4169), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217752] = 5, + [185139] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(473), 1, - anon_sym_RPAREN, - STATE(4848), 1, + ACTIONS(4647), 1, + anon_sym_DOT, + STATE(4170), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217770] = 5, + [185157] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5249), 1, - anon_sym_DOT, - STATE(4849), 1, + ACTIONS(6321), 1, + anon_sym_of, + STATE(4171), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217788] = 5, + [185175] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6967), 1, + ACTIONS(6323), 1, anon_sym_EQ_GT, - STATE(4850), 1, + STATE(4172), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217806] = 5, + [185193] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6969), 1, - anon_sym_COLON, - STATE(4851), 1, + ACTIONS(6325), 1, + anon_sym_GT, + STATE(4173), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217824] = 5, + [185211] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4912), 1, - aux_sym_variant_identifier_token1, - STATE(4852), 1, + ACTIONS(6327), 1, + anon_sym_EQ_GT, + STATE(4174), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217842] = 5, + [185229] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6971), 1, + ACTIONS(6329), 1, anon_sym_LBRACE, - STATE(4853), 1, + STATE(4175), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217860] = 5, + [185247] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6973), 1, - anon_sym_DOT, - STATE(4854), 1, + ACTIONS(6331), 1, + sym_regex_pattern, + STATE(4176), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [217878] = 5, + [185267] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6975), 1, - anon_sym_RBRACE, - STATE(4855), 1, + ACTIONS(6333), 1, + anon_sym_EQ_GT, + STATE(4177), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217896] = 5, + [185285] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6977), 1, - anon_sym_LBRACE, - STATE(4856), 1, + ACTIONS(6335), 1, + anon_sym_RPAREN, + STATE(4178), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217914] = 6, - ACTIONS(3), 1, - sym_line_comment, + [185303] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6979), 1, - sym_regex_pattern, - STATE(4857), 1, + ACTIONS(6337), 1, + anon_sym_RPAREN, + STATE(4179), 1, sym_decorator, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [217934] = 5, + sym_line_comment, + [185321] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6981), 1, - anon_sym_DOT, - STATE(4858), 1, + ACTIONS(6339), 1, + anon_sym_SLASH2, + STATE(4180), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [217952] = 5, + [185341] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6983), 1, + ACTIONS(6341), 1, anon_sym_EQ_GT, - STATE(4859), 1, + STATE(4181), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217970] = 5, + [185359] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5359), 1, - anon_sym_DOT, - STATE(4860), 1, + ACTIONS(6343), 1, + anon_sym_EQ_GT, + STATE(4182), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [217988] = 5, + [185377] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6985), 1, - anon_sym_LBRACE, - STATE(4861), 1, + ACTIONS(6345), 1, + anon_sym_SLASH2, + STATE(4183), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [218006] = 5, + [185397] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6987), 1, + ACTIONS(6347), 1, anon_sym_EQ_GT, - STATE(4862), 1, + STATE(4184), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218024] = 5, + [185415] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(489), 1, - anon_sym_RPAREN, - STATE(4863), 1, + ACTIONS(4786), 1, + anon_sym_DOT, + STATE(4185), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218042] = 5, + [185433] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6989), 1, - anon_sym_RBRACE, - STATE(4864), 1, + ACTIONS(6349), 1, + anon_sym_EQ_GT, + STATE(4186), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218060] = 5, + [185451] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6991), 1, - anon_sym_EQ, - STATE(4865), 1, + ACTIONS(6351), 1, + anon_sym_EQ_GT, + STATE(4187), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218078] = 5, + [185469] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6993), 1, - anon_sym_type, - STATE(4866), 1, + ACTIONS(6353), 1, + anon_sym_BQUOTE, + STATE(4188), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218096] = 5, + [185487] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6995), 1, - anon_sym_LPAREN, - STATE(4867), 1, + ACTIONS(4735), 1, + anon_sym_DOT, + STATE(4189), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218114] = 5, + [185505] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(495), 1, - anon_sym_RPAREN, - STATE(4868), 1, + ACTIONS(6355), 1, + anon_sym_EQ_GT, + STATE(4190), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218132] = 5, + [185523] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6997), 1, - anon_sym_LBRACE, - STATE(4869), 1, + ACTIONS(6357), 1, + anon_sym_EQ_GT, + STATE(4191), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218150] = 5, + [185541] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6999), 1, + ACTIONS(6359), 1, anon_sym_LBRACE, - STATE(4870), 1, + STATE(4192), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218168] = 5, + [185559] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7001), 1, - anon_sym_GT, - STATE(4871), 1, + ACTIONS(6361), 1, + anon_sym_RPAREN, + STATE(4193), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218186] = 5, + [185577] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7003), 1, + ACTIONS(6363), 1, anon_sym_GT, - STATE(4872), 1, + STATE(4194), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218204] = 5, + [185595] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7005), 1, - anon_sym_DOT, - STATE(4873), 1, + ACTIONS(6365), 1, + anon_sym_COLON, + STATE(4195), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218222] = 5, + [185613] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7007), 1, - anon_sym_GT, - STATE(4874), 1, + ACTIONS(6367), 1, + anon_sym_of, + STATE(4196), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218240] = 5, + [185631] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7009), 1, - anon_sym_EQ_GT, - STATE(4875), 1, + ACTIONS(6369), 1, + anon_sym_SLASH2, + STATE(4197), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [218258] = 5, + [185651] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7011), 1, - anon_sym_GT, - STATE(4876), 1, + ACTIONS(6371), 1, + anon_sym_RBRACE, + STATE(4198), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218276] = 5, + [185669] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7013), 1, - anon_sym_EQ_GT, - STATE(4877), 1, + ACTIONS(6373), 1, + anon_sym_SLASH2, + STATE(4199), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [218294] = 5, + [185689] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7015), 1, - anon_sym_RPAREN, - STATE(4878), 1, + ACTIONS(6375), 1, + anon_sym_EQ_GT, + STATE(4200), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218312] = 5, + [185707] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7017), 1, - anon_sym_RPAREN, - STATE(4879), 1, + ACTIONS(6377), 1, + anon_sym_type, + STATE(4201), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218330] = 5, + [185725] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(519), 1, - anon_sym_RPAREN, - STATE(4880), 1, + ACTIONS(6379), 1, + anon_sym_in, + STATE(4202), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218348] = 5, + [185743] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7019), 1, - anon_sym_EQ_GT, - STATE(4881), 1, + ACTIONS(6381), 1, + anon_sym_BQUOTE, + STATE(4203), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218366] = 5, + [185761] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6344), 1, - anon_sym_if, - STATE(4882), 1, + ACTIONS(6383), 1, + anon_sym_RPAREN, + STATE(4204), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218384] = 5, + [185779] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7021), 1, - anon_sym_EQ_GT, - STATE(4883), 1, + ACTIONS(6385), 1, + anon_sym_COMMA, + STATE(4205), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218402] = 5, + [185797] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7023), 1, - anon_sym_RPAREN, - STATE(4884), 1, + ACTIONS(6387), 1, + anon_sym_LPAREN, + STATE(4206), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218420] = 5, + [185815] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7025), 1, + ACTIONS(6389), 1, anon_sym_GT, - STATE(4885), 1, + STATE(4207), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218438] = 5, + [185833] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7027), 1, - anon_sym_LBRACE, - STATE(4886), 1, + ACTIONS(6391), 1, + anon_sym_DOT, + STATE(4208), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218456] = 5, + [185851] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5304), 1, - anon_sym_DOT, - STATE(4887), 1, + ACTIONS(6393), 1, + anon_sym_EQ_GT, + STATE(4209), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218474] = 5, + [185869] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7029), 1, - anon_sym_LPAREN, - STATE(4888), 1, + ACTIONS(6395), 1, + anon_sym_COLON, + STATE(4210), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218492] = 5, + [185887] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7031), 1, - anon_sym_EQ_GT, - STATE(4889), 1, + ACTIONS(6397), 1, + anon_sym_GT, + STATE(4211), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218510] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(7033), 1, - sym_regex_pattern, - STATE(4890), 1, - sym_decorator, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - [218530] = 5, + [185905] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7035), 1, - anon_sym_EQ_GT, - STATE(4891), 1, + ACTIONS(6399), 1, + anon_sym_RBRACE, + STATE(4212), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218548] = 5, + [185923] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7037), 1, - anon_sym_LPAREN, - STATE(4892), 1, + ACTIONS(6401), 1, + anon_sym_RBRACE, + STATE(4213), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218566] = 5, + [185941] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7039), 1, + ACTIONS(6403), 1, anon_sym_EQ_GT, - STATE(4893), 1, + STATE(4214), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218584] = 5, + [185959] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7041), 1, - anon_sym_EQ_GT, - STATE(4894), 1, + ACTIONS(479), 1, + anon_sym_RPAREN, + STATE(4215), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218602] = 5, + [185977] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(475), 1, - anon_sym_RPAREN, - STATE(4895), 1, + ACTIONS(6405), 1, + anon_sym_LPAREN, + STATE(4216), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218620] = 5, + [185995] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5251), 1, - anon_sym_DOT, - STATE(4896), 1, + ACTIONS(6407), 1, + anon_sym_EQ_GT, + STATE(4217), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218638] = 5, + [186013] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7043), 1, + ACTIONS(6409), 1, anon_sym_EQ_GT, - STATE(4897), 1, + STATE(4218), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218656] = 5, + [186031] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7045), 1, - anon_sym_EQ_GT, - STATE(4898), 1, + ACTIONS(4666), 1, + anon_sym_DOT, + STATE(4219), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218674] = 5, + [186049] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(493), 1, + ACTIONS(459), 1, anon_sym_RPAREN, - STATE(4899), 1, + STATE(4220), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218692] = 5, + [186067] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7047), 1, - anon_sym_EQ_GT, - STATE(4900), 1, + ACTIONS(6411), 1, + anon_sym_RPAREN, + STATE(4221), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218710] = 5, + [186085] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7049), 1, - anon_sym_RBRACE, - STATE(4901), 1, + ACTIONS(6413), 1, + anon_sym_EQ_GT, + STATE(4222), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218728] = 5, + [186103] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5318), 1, - anon_sym_DOT, - STATE(4902), 1, + ACTIONS(6415), 1, + anon_sym_GT, + STATE(4223), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218746] = 5, + [186121] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7051), 1, - anon_sym_LPAREN, - STATE(4903), 1, + ACTIONS(6417), 1, + anon_sym_EQ_GT, + STATE(4224), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218764] = 5, + [186139] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7053), 1, - anon_sym_EQ_GT, - STATE(4904), 1, + ACTIONS(6419), 1, + anon_sym_GT, + STATE(4225), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218782] = 5, + [186157] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7055), 1, - anon_sym_EQ_GT, - STATE(4905), 1, + ACTIONS(493), 1, + anon_sym_RPAREN, + STATE(4226), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218800] = 5, + [186175] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7057), 1, + ACTIONS(6421), 1, anon_sym_EQ_GT, - STATE(4906), 1, + STATE(4227), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218818] = 5, + [186193] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7059), 1, - anon_sym_EQ_GT, - STATE(4907), 1, + ACTIONS(6423), 1, + anon_sym_DOT, + STATE(4228), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218836] = 5, + [186211] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7061), 1, + ACTIONS(6011), 1, anon_sym_RPAREN, - STATE(4908), 1, + STATE(4229), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218854] = 5, + [186229] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7063), 1, + ACTIONS(6425), 1, anon_sym_GT, - STATE(4909), 1, + STATE(4230), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218872] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(7065), 1, - anon_sym_SLASH2, - STATE(4910), 1, - sym_decorator, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - [218892] = 5, + [186247] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7067), 1, - anon_sym_GT, - STATE(4911), 1, + ACTIONS(4774), 1, + anon_sym_DOT, + STATE(4231), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218910] = 5, + [186265] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(497), 1, - anon_sym_RPAREN, - STATE(4912), 1, + ACTIONS(6427), 1, + anon_sym_DOT, + STATE(4232), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218928] = 5, + [186283] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7069), 1, - anon_sym_BQUOTE, - STATE(4913), 1, + ACTIONS(6429), 1, + anon_sym_EQ_GT, + STATE(4233), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218946] = 5, + [186301] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7071), 1, - anon_sym_EQ_GT, - STATE(4914), 1, + ACTIONS(6431), 1, + anon_sym_SLASH2, + STATE(4234), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [218964] = 5, + [186321] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(4747), 1, - anon_sym_LPAREN, - STATE(4915), 1, + ACTIONS(4744), 1, + anon_sym_DOT, + STATE(4235), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [218982] = 5, + [186339] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7073), 1, - anon_sym_EQ_GT, - STATE(4916), 1, + ACTIONS(461), 1, + anon_sym_RPAREN, + STATE(4236), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219000] = 5, + [186357] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7075), 1, - anon_sym_COLON, - STATE(4917), 1, + ACTIONS(4778), 1, + anon_sym_DOT, + STATE(4237), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219018] = 5, + [186375] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(509), 1, - anon_sym_RPAREN, - STATE(4918), 1, + ACTIONS(6433), 1, + anon_sym_DOT, + STATE(4238), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219036] = 5, + [186393] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7077), 1, - anon_sym_EQ_GT, - STATE(4919), 1, + ACTIONS(6435), 1, + anon_sym_LBRACE, + STATE(4239), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219054] = 5, + [186411] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6462), 1, + ACTIONS(5362), 1, anon_sym_if, - STATE(4920), 1, + STATE(4240), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219072] = 5, + [186429] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6103), 1, - anon_sym_if, - STATE(4921), 1, + ACTIONS(6437), 1, + anon_sym_RPAREN, + STATE(4241), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219090] = 5, + [186447] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7079), 1, - anon_sym_EQ_GT, - STATE(4922), 1, + ACTIONS(6001), 1, + anon_sym_RPAREN, + STATE(4242), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219108] = 5, + [186465] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7081), 1, - anon_sym_EQ_GT, - STATE(4923), 1, + ACTIONS(6439), 1, + anon_sym_DOT, + STATE(4243), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219126] = 5, + [186483] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7083), 1, - anon_sym_COLON, - STATE(4924), 1, + ACTIONS(4720), 1, + anon_sym_DOT, + STATE(4244), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219144] = 5, + [186501] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7085), 1, - anon_sym_EQ_GT, - STATE(4925), 1, + ACTIONS(471), 1, + anon_sym_RPAREN, + STATE(4245), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219162] = 5, + [186519] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7087), 1, + ACTIONS(6441), 1, anon_sym_EQ_GT, - STATE(4926), 1, + STATE(4246), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219180] = 5, + [186537] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5461), 1, - anon_sym_DOT, - STATE(4927), 1, + ACTIONS(6443), 1, + anon_sym_RBRACE, + STATE(4247), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219198] = 5, + [186555] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(483), 1, - anon_sym_RPAREN, - STATE(4928), 1, + ACTIONS(6445), 1, + anon_sym_EQ_GT, + STATE(4248), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219216] = 5, + [186573] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7089), 1, - anon_sym_EQ_GT, - STATE(4929), 1, + ACTIONS(4684), 1, + anon_sym_DOT, + STATE(4249), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219234] = 5, + [186591] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(499), 1, - anon_sym_RPAREN, - STATE(4930), 1, + ACTIONS(6447), 1, + anon_sym_COMMA, + STATE(4250), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219252] = 5, + [186609] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7091), 1, - anon_sym_EQ_GT, - STATE(4931), 1, + ACTIONS(6449), 1, + anon_sym_LPAREN, + STATE(4251), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219270] = 5, + [186627] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7093), 1, + ACTIONS(3344), 1, anon_sym_RPAREN, - STATE(4932), 1, + STATE(4252), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219288] = 6, - ACTIONS(3), 1, - sym_line_comment, + [186645] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7095), 1, - anon_sym_SLASH2, - STATE(4933), 1, + ACTIONS(4670), 1, + anon_sym_DOT, + STATE(4253), 1, sym_decorator, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [219308] = 5, + sym_line_comment, + [186663] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(511), 1, - anon_sym_RPAREN, - STATE(4934), 1, + ACTIONS(6451), 1, + anon_sym_EQ_GT, + STATE(4254), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219326] = 5, + [186681] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7097), 1, - anon_sym_RPAREN, - STATE(4935), 1, + ACTIONS(6453), 1, + anon_sym_COLON, + STATE(4255), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219344] = 5, + [186699] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7099), 1, - anon_sym_EQ_GT, - STATE(4936), 1, + ACTIONS(6455), 1, + anon_sym_LBRACE, + STATE(4256), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219362] = 5, + [186717] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7101), 1, - anon_sym_COLON, - STATE(4937), 1, + ACTIONS(6457), 1, + anon_sym_LBRACE, + STATE(4257), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219380] = 5, + [186735] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7103), 1, + ACTIONS(6459), 1, anon_sym_EQ_GT, - STATE(4938), 1, + STATE(4258), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219398] = 5, + [186753] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7105), 1, - anon_sym_EQ_GT, - STATE(4939), 1, + ACTIONS(6461), 1, + anon_sym_LPAREN, + STATE(4259), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219416] = 5, + [186771] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7107), 1, - anon_sym_EQ_GT, - STATE(4940), 1, + ACTIONS(4780), 1, + anon_sym_DOT, + STATE(4260), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219434] = 5, + [186789] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7109), 1, - anon_sym_BQUOTE, - STATE(4941), 1, + ACTIONS(6463), 1, + anon_sym_LPAREN, + STATE(4261), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219452] = 5, + [186807] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7111), 1, - anon_sym_GT, - STATE(4942), 1, + ACTIONS(4756), 1, + anon_sym_DOT, + STATE(4262), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219470] = 5, + [186825] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7113), 1, - anon_sym_EQ_GT, - STATE(4943), 1, + ACTIONS(6465), 1, + sym_regex_pattern, + STATE(4263), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [219488] = 5, + [186845] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7115), 1, + ACTIONS(6467), 1, anon_sym_EQ_GT, - STATE(4944), 1, + STATE(4264), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219506] = 5, + [186863] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7117), 1, + ACTIONS(6469), 1, anon_sym_RPAREN, - STATE(4945), 1, + STATE(4265), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219524] = 5, + [186881] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7119), 1, - anon_sym_in, - STATE(4946), 1, + ACTIONS(6049), 1, + anon_sym_type, + STATE(4266), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219542] = 5, + [186899] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7121), 1, - anon_sym_EQ_GT, - STATE(4947), 1, + ACTIONS(4758), 1, + anon_sym_DOT, + STATE(4267), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219560] = 5, + [186917] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7123), 1, - anon_sym_EQ_GT, - STATE(4948), 1, + ACTIONS(6471), 1, + anon_sym_GT, + STATE(4268), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219578] = 5, + [186935] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5399), 1, - anon_sym_DOT, - STATE(4949), 1, + ACTIONS(6473), 1, + anon_sym_GT, + STATE(4269), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219596] = 5, + [186953] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7125), 1, + ACTIONS(6475), 1, anon_sym_EQ_GT, - STATE(4950), 1, + STATE(4270), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219614] = 5, + [186971] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7127), 1, - anon_sym_EQ_GT, - STATE(4951), 1, + ACTIONS(6477), 1, + anon_sym_DOT, + STATE(4271), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219632] = 5, + [186989] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7129), 1, - anon_sym_EQ_GT, - STATE(4952), 1, + ACTIONS(4760), 1, + anon_sym_DOT, + STATE(4272), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219650] = 5, + [187007] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7131), 1, - anon_sym_EQ_GT, - STATE(4953), 1, + ACTIONS(6479), 1, + anon_sym_LBRACE, + STATE(4273), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219668] = 5, + [187025] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7133), 1, - anon_sym_EQ_GT, - STATE(4954), 1, + ACTIONS(4764), 1, + anon_sym_DOT, + STATE(4274), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219686] = 5, + [187043] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7135), 1, - anon_sym_LBRACE, - STATE(4955), 1, + ACTIONS(6481), 1, + anon_sym_RPAREN, + STATE(4275), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219704] = 5, + [187061] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7137), 1, - anon_sym_BQUOTE, - STATE(4956), 1, + ACTIONS(6483), 1, + anon_sym_EQ_GT, + STATE(4276), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219722] = 5, + [187079] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7139), 1, + ACTIONS(6485), 1, anon_sym_EQ_GT, - STATE(4957), 1, + STATE(4277), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219740] = 5, + [187097] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7141), 1, - anon_sym_EQ_GT, - STATE(4958), 1, + ACTIONS(6487), 1, + anon_sym_in, + STATE(4278), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219758] = 5, + [187115] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7143), 1, - anon_sym_in, - STATE(4959), 1, + ACTIONS(4766), 1, + anon_sym_DOT, + STATE(4279), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219776] = 5, + [187133] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7145), 1, - anon_sym_EQ_GT, - STATE(4960), 1, + ACTIONS(6489), 1, + anon_sym_DOT, + STATE(4280), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219794] = 5, + [187151] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(507), 1, - anon_sym_RPAREN, - STATE(4961), 1, + ACTIONS(4768), 1, + anon_sym_DOT, + STATE(4281), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219812] = 5, + [187169] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7147), 1, + ACTIONS(6491), 1, anon_sym_EQ_GT, - STATE(4962), 1, + STATE(4282), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219830] = 6, - ACTIONS(3), 1, - sym_line_comment, + [187187] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7149), 1, - sym_regex_pattern, - STATE(4963), 1, + ACTIONS(4770), 1, + anon_sym_DOT, + STATE(4283), 1, sym_decorator, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [219850] = 5, + sym_line_comment, + [187205] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7151), 1, - anon_sym_BQUOTE, - STATE(4964), 1, + ACTIONS(4784), 1, + anon_sym_DOT, + STATE(4284), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219868] = 5, + [187223] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7153), 1, - anon_sym_GT, - STATE(4965), 1, + ACTIONS(4714), 1, + anon_sym_DOT, + STATE(4285), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219886] = 5, + [187241] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5436), 1, - anon_sym_DOT, - STATE(4966), 1, + ACTIONS(487), 1, + anon_sym_RPAREN, + STATE(4286), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219904] = 5, + [187259] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7155), 1, - anon_sym_EQ_GT, - STATE(4967), 1, + ACTIONS(6493), 1, + anon_sym_GT, + STATE(4287), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219922] = 5, + [187277] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7157), 1, - anon_sym_RBRACE, - STATE(4968), 1, + ACTIONS(469), 1, + anon_sym_RPAREN, + STATE(4288), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219940] = 5, + [187295] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6077), 1, - anon_sym_if, - STATE(4969), 1, + ACTIONS(4776), 1, + anon_sym_DOT, + STATE(4289), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219958] = 5, + [187313] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7159), 1, - anon_sym_EQ_GT, - STATE(4970), 1, + ACTIONS(6495), 1, + anon_sym_DOT, + STATE(4290), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219976] = 5, + [187331] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7161), 1, - anon_sym_EQ_GT, - STATE(4971), 1, + ACTIONS(6497), 1, + anon_sym_LBRACE, + STATE(4291), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [219994] = 5, + [187349] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7163), 1, - anon_sym_EQ_GT, - STATE(4972), 1, + ACTIONS(6499), 1, + anon_sym_LBRACE, + STATE(4292), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220012] = 6, + [187367] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7165), 1, + ACTIONS(6501), 1, sym_regex_pattern, - STATE(4973), 1, + STATE(4293), 1, sym_decorator, ACTIONS(5), 2, sym__continuation, sym_block_comment, - [220032] = 6, + [187387] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7167), 1, - anon_sym_SLASH2, - STATE(4974), 1, + ACTIONS(6503), 1, + sym_regex_pattern, + STATE(4294), 1, sym_decorator, ACTIONS(5), 2, sym__continuation, sym_block_comment, - [220052] = 5, + [187407] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7169), 1, - anon_sym_DOT, - STATE(4975), 1, + ACTIONS(6505), 1, + anon_sym_EQ_GT, + STATE(4295), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220070] = 5, + [187425] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7171), 1, - anon_sym_BQUOTE, - STATE(4976), 1, + ACTIONS(6507), 1, + anon_sym_EQ_GT, + STATE(4296), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220088] = 5, + [187443] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7173), 1, - anon_sym_RBRACE, - STATE(4977), 1, + ACTIONS(6509), 1, + anon_sym_GT, + STATE(4297), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220106] = 5, + [187461] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(513), 1, - anon_sym_RPAREN, - STATE(4978), 1, + ACTIONS(6511), 1, + anon_sym_GT, + STATE(4298), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220124] = 5, + [187479] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7175), 1, - anon_sym_EQ_GT, - STATE(4979), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(4299), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220142] = 5, + [187497] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7177), 1, - anon_sym_EQ_GT, - STATE(4980), 1, + ACTIONS(6515), 1, + anon_sym_GT, + STATE(4300), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220160] = 5, + [187515] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7179), 1, - anon_sym_EQ_GT, - STATE(4981), 1, + ACTIONS(6517), 1, + sym_regex_pattern, + STATE(4301), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [220178] = 5, + [187535] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7181), 1, - anon_sym_RBRACE, - STATE(4982), 1, + ACTIONS(5404), 1, + anon_sym_if, + STATE(4302), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220196] = 5, + [187553] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7183), 1, - anon_sym_EQ_GT, - STATE(4983), 1, + ACTIONS(465), 1, + anon_sym_RPAREN, + STATE(4303), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220214] = 5, + [187571] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7185), 1, - anon_sym_RBRACE, - STATE(4984), 1, + ACTIONS(6519), 1, + anon_sym_RPAREN, + STATE(4304), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220232] = 5, + [187589] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7187), 1, - anon_sym_RPAREN, - STATE(4985), 1, + ACTIONS(6521), 1, + anon_sym_EQ_GT, + STATE(4305), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220250] = 5, + [187607] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7189), 1, - anon_sym_GT, - STATE(4986), 1, + ACTIONS(6523), 1, + anon_sym_EQ_GT, + STATE(4306), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220268] = 5, + [187625] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7191), 1, + ACTIONS(6525), 1, anon_sym_EQ_GT, - STATE(4987), 1, + STATE(4307), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220286] = 5, + [187643] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7193), 1, + ACTIONS(6527), 1, anon_sym_EQ_GT, - STATE(4988), 1, + STATE(4308), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220304] = 5, + [187661] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7195), 1, - anon_sym_EQ_GT, - STATE(4989), 1, + ACTIONS(6529), 1, + anon_sym_SLASH2, + STATE(4309), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [220322] = 5, + [187681] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5438), 1, - anon_sym_DOT, - STATE(4990), 1, + ACTIONS(491), 1, + anon_sym_RPAREN, + STATE(4310), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220340] = 5, + [187699] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7197), 1, - anon_sym_EQ_GT, - STATE(4991), 1, + ACTIONS(463), 1, + anon_sym_RPAREN, + STATE(4311), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220358] = 5, + [187717] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7199), 1, - anon_sym_DOT, - STATE(4992), 1, + ACTIONS(6531), 1, + anon_sym_LBRACE, + STATE(4312), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220376] = 5, + [187735] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7201), 1, - anon_sym_GT, - STATE(4993), 1, + ACTIONS(6533), 1, + anon_sym_EQ_GT, + STATE(4313), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220394] = 5, + [187753] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7203), 1, - anon_sym_in, - STATE(4994), 1, + ACTIONS(6535), 1, + anon_sym_DOT, + STATE(4314), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220412] = 5, + [187771] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7205), 1, - anon_sym_EQ_GT, - STATE(4995), 1, + ACTIONS(6537), 1, + anon_sym_RPAREN, + STATE(4315), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220430] = 5, + [187789] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7207), 1, - anon_sym_EQ_GT, - STATE(4996), 1, + ACTIONS(6539), 1, + anon_sym_GT, + STATE(4316), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220448] = 5, + [187807] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7209), 1, + ACTIONS(6541), 1, anon_sym_EQ_GT, - STATE(4997), 1, + STATE(4317), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220466] = 5, + [187825] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4998), 1, + ACTIONS(6543), 1, + anon_sym_EQ_GT, + STATE(4318), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220484] = 5, + [187843] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7213), 1, - anon_sym_GT, - STATE(4999), 1, + ACTIONS(6545), 1, + anon_sym_RBRACE, + STATE(4319), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220502] = 5, + [187861] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(501), 1, - anon_sym_RPAREN, - STATE(5000), 1, + ACTIONS(6547), 1, + anon_sym_LBRACE, + STATE(4320), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220520] = 5, + [187879] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7215), 1, + ACTIONS(6549), 1, anon_sym_RBRACE, - STATE(5001), 1, + STATE(4321), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220538] = 5, + [187897] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7217), 1, - anon_sym_EQ_GT, - STATE(5002), 1, + ACTIONS(6551), 1, + anon_sym_RPAREN, + STATE(4322), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220556] = 5, + [187915] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(505), 1, - anon_sym_RPAREN, - STATE(5003), 1, + ACTIONS(6553), 1, + anon_sym_COMMA, + STATE(4323), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220574] = 5, + [187933] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5308), 1, - anon_sym_DOT, - STATE(5004), 1, + ACTIONS(6555), 1, + anon_sym_LBRACE, + STATE(4324), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220592] = 5, + [187951] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7219), 1, - anon_sym_EQ_GT, - STATE(5005), 1, + ACTIONS(6557), 1, + anon_sym_SLASH2, + STATE(4325), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [220610] = 5, + [187971] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7221), 1, + ACTIONS(6559), 1, anon_sym_EQ_GT, - STATE(5006), 1, + STATE(4326), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220628] = 5, + [187989] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7223), 1, - anon_sym_RBRACE, - STATE(5007), 1, + ACTIONS(6561), 1, + anon_sym_DOT, + STATE(4327), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220646] = 5, + [188007] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7225), 1, - anon_sym_EQ_GT, - STATE(5008), 1, + ACTIONS(4006), 1, + anon_sym_LPAREN, + STATE(4328), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220664] = 5, + [188025] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7227), 1, - anon_sym_DOT, - STATE(5009), 1, + ACTIONS(6563), 1, + anon_sym_LBRACE, + STATE(4329), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220682] = 5, + [188043] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7229), 1, + ACTIONS(6565), 1, anon_sym_in, - STATE(5010), 1, + STATE(4330), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220700] = 5, + [188061] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7231), 1, - anon_sym_RPAREN, - STATE(5011), 1, + ACTIONS(6567), 1, + anon_sym_EQ_GT, + STATE(4331), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220718] = 5, + [188079] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7233), 1, - anon_sym_EQ_GT, - STATE(5012), 1, + ACTIONS(6569), 1, + anon_sym_LBRACE, + STATE(4332), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220736] = 5, + [188097] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7235), 1, - anon_sym_EQ_GT, - STATE(5013), 1, + ACTIONS(6571), 1, + anon_sym_LBRACE, + STATE(4333), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220754] = 5, + [188115] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7237), 1, - anon_sym_RPAREN, - STATE(5014), 1, + ACTIONS(6573), 1, + anon_sym_BQUOTE, + STATE(4334), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220772] = 5, + [188133] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7239), 1, - anon_sym_EQ_GT, - STATE(5015), 1, + ACTIONS(6115), 1, + anon_sym_RBRACE, + STATE(4335), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220790] = 5, + [188151] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7241), 1, + ACTIONS(6575), 1, anon_sym_EQ_GT, - STATE(5016), 1, + STATE(4336), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220808] = 5, + [188169] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7243), 1, - anon_sym_EQ_GT, - STATE(5017), 1, + ACTIONS(6577), 1, + anon_sym_EQ, + STATE(4337), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220826] = 5, + [188187] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7245), 1, + ACTIONS(481), 1, anon_sym_RPAREN, - STATE(5018), 1, + STATE(4338), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220844] = 5, + [188205] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7247), 1, - anon_sym_RBRACE, - STATE(5019), 1, + ACTIONS(6047), 1, + anon_sym_LPAREN, + STATE(4339), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220862] = 5, + [188223] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7249), 1, + ACTIONS(6579), 1, anon_sym_EQ_GT, - STATE(5020), 1, + STATE(4340), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220880] = 5, + [188241] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7251), 1, + ACTIONS(6581), 1, anon_sym_EQ_GT, - STATE(5021), 1, + STATE(4341), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220898] = 5, + [188259] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7253), 1, + ACTIONS(6583), 1, anon_sym_EQ_GT, - STATE(5022), 1, + STATE(4342), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220916] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(7255), 1, - anon_sym_SLASH2, - STATE(5023), 1, - sym_decorator, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - [220936] = 5, + [188277] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7257), 1, - anon_sym_EQ_GT, - STATE(5024), 1, + ACTIONS(4790), 1, + anon_sym_DOT, + STATE(4343), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220954] = 5, + [188295] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7259), 1, - anon_sym_BQUOTE, - STATE(5025), 1, + ACTIONS(6585), 1, + anon_sym_LBRACE, + STATE(4344), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220972] = 5, + [188313] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7261), 1, - anon_sym_of, - STATE(5026), 1, + ACTIONS(6587), 1, + anon_sym_in, + STATE(4345), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [220990] = 5, + [188331] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7263), 1, - anon_sym_in, - STATE(5027), 1, + ACTIONS(6589), 1, + anon_sym_RPAREN, + STATE(4346), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221008] = 5, + [188349] = 6, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5320), 1, - anon_sym_DOT, - STATE(5028), 1, + ACTIONS(6591), 1, + sym_regex_pattern, + STATE(4347), 1, sym_decorator, - ACTIONS(5), 3, + ACTIONS(5), 2, sym__continuation, sym_block_comment, - sym_line_comment, - [221026] = 5, + [188369] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7265), 1, - anon_sym_EQ_GT, - STATE(5029), 1, + ACTIONS(5796), 1, + anon_sym_if, + STATE(4348), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221044] = 5, + [188387] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6696), 1, - anon_sym_RPAREN, - STATE(5030), 1, + ACTIONS(6593), 1, + anon_sym_EQ_GT, + STATE(4349), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221062] = 5, + [188405] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7267), 1, - anon_sym_RPAREN, - STATE(5031), 1, + ACTIONS(6595), 1, + anon_sym_COMMA, + STATE(4350), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221080] = 5, + [188423] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7269), 1, + ACTIONS(6597), 1, anon_sym_EQ_GT, - STATE(5032), 1, + STATE(4351), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221098] = 5, + [188441] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7271), 1, - anon_sym_EQ_GT, - STATE(5033), 1, + ACTIONS(6599), 1, + anon_sym_GT, + STATE(4352), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221116] = 5, + [188459] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5451), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(5034), 1, + STATE(4353), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221134] = 5, + [188477] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7273), 1, - anon_sym_DOT, - STATE(5035), 1, + ACTIONS(6603), 1, + anon_sym_EQ_GT, + STATE(4354), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221152] = 5, + [188495] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7275), 1, - anon_sym_GT, - STATE(5036), 1, + ACTIONS(6605), 1, + anon_sym_RBRACE, + STATE(4355), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221170] = 5, + [188513] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7277), 1, - anon_sym_EQ_GT, - STATE(5037), 1, + ACTIONS(6607), 1, + anon_sym_RPAREN, + STATE(4356), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221188] = 5, + [188531] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7279), 1, + ACTIONS(6609), 1, anon_sym_EQ_GT, - STATE(5038), 1, + STATE(4357), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221206] = 5, + [188549] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7281), 1, + ACTIONS(6611), 1, anon_sym_EQ_GT, - STATE(5039), 1, + STATE(4358), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221224] = 5, + [188567] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(6541), 1, - anon_sym_RPAREN, - STATE(5040), 1, + ACTIONS(6613), 1, + anon_sym_GT, + STATE(4359), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221242] = 5, + [188585] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7283), 1, - anon_sym_LBRACE, - STATE(5041), 1, + ACTIONS(6615), 1, + anon_sym_EQ_GT, + STATE(4360), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221260] = 5, + [188603] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7285), 1, - anon_sym_LBRACE, - STATE(5042), 1, + ACTIONS(6617), 1, + anon_sym_GT, + STATE(4361), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221278] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(7287), 1, - sym_regex_pattern, - STATE(5043), 1, - sym_decorator, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - [221298] = 5, + [188621] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7289), 1, - anon_sym_EQ_GT, - STATE(5044), 1, + ACTIONS(6129), 1, + anon_sym_RPAREN, + STATE(4362), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221316] = 5, + [188639] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7291), 1, - anon_sym_EQ_GT, - STATE(5045), 1, + ACTIONS(6619), 1, + anon_sym_GT, + STATE(4363), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221334] = 5, + [188657] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7293), 1, + ACTIONS(6621), 1, anon_sym_EQ_GT, - STATE(5046), 1, + STATE(4364), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221352] = 5, + [188675] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7295), 1, + ACTIONS(6623), 1, anon_sym_EQ_GT, - STATE(5047), 1, + STATE(4365), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221370] = 5, + [188693] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7297), 1, - anon_sym_EQ_GT, - STATE(5048), 1, + ACTIONS(6625), 1, + anon_sym_GT, + STATE(4366), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221388] = 5, + [188711] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7299), 1, - anon_sym_GT, - STATE(5049), 1, + ACTIONS(6627), 1, + anon_sym_LBRACE, + STATE(4367), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221406] = 5, + [188729] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7301), 1, - anon_sym_RBRACE, - STATE(5050), 1, + ACTIONS(6629), 1, + anon_sym_RPAREN, + STATE(4368), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221424] = 5, + [188747] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5322), 1, - anon_sym_DOT, - STATE(5051), 1, + ACTIONS(6631), 1, + anon_sym_EQ_GT, + STATE(4369), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221442] = 5, + [188765] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7303), 1, - anon_sym_EQ_GT, - STATE(5052), 1, + ACTIONS(6633), 1, + anon_sym_RPAREN, + STATE(4370), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221460] = 5, + [188783] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7305), 1, - anon_sym_EQ_GT, - STATE(5053), 1, + ACTIONS(467), 1, + anon_sym_RPAREN, + STATE(4371), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221478] = 5, + [188801] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7307), 1, + ACTIONS(6635), 1, anon_sym_EQ_GT, - STATE(5054), 1, + STATE(4372), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221496] = 5, + [188819] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7309), 1, + ACTIONS(6637), 1, anon_sym_EQ_GT, - STATE(5055), 1, + STATE(4373), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221514] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - sym__decorator, - ACTIONS(9), 1, - sym__decorator_inline, - ACTIONS(7311), 1, - anon_sym_SLASH2, - STATE(5056), 1, - sym_decorator, - ACTIONS(5), 2, - sym__continuation, - sym_block_comment, - [221534] = 5, + [188837] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7313), 1, + ACTIONS(6639), 1, anon_sym_EQ_GT, - STATE(5057), 1, + STATE(4374), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221552] = 5, + [188855] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7315), 1, - anon_sym_of, - STATE(5058), 1, + ACTIONS(489), 1, + anon_sym_RPAREN, + STATE(4375), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221570] = 5, + [188873] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7317), 1, + ACTIONS(6641), 1, anon_sym_EQ_GT, - STATE(5059), 1, + STATE(4376), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221588] = 5, + [188891] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5459), 1, - anon_sym_DOT, - STATE(5060), 1, + ACTIONS(6643), 1, + anon_sym_EQ_GT, + STATE(4377), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221606] = 5, + [188909] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7319), 1, + ACTIONS(6645), 1, anon_sym_EQ_GT, - STATE(5061), 1, + STATE(4378), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221624] = 5, + [188927] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7321), 1, - anon_sym_RPAREN, - STATE(5062), 1, + ACTIONS(6647), 1, + anon_sym_GT, + STATE(4379), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221642] = 5, + [188945] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7323), 1, + ACTIONS(6649), 1, anon_sym_EQ_GT, - STATE(5063), 1, + STATE(4380), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221660] = 5, + [188963] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7325), 1, + ACTIONS(6651), 1, anon_sym_EQ_GT, - STATE(5064), 1, + STATE(4381), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221678] = 5, + [188981] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7327), 1, + ACTIONS(6653), 1, anon_sym_EQ_GT, - STATE(5065), 1, + STATE(4382), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221696] = 5, + [188999] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7329), 1, + ACTIONS(6655), 1, anon_sym_EQ_GT, - STATE(5066), 1, + STATE(4383), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221714] = 5, + [189017] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7331), 1, - anon_sym_RPAREN, - STATE(5067), 1, + ACTIONS(6657), 1, + anon_sym_DOT, + STATE(4384), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221732] = 5, + [189035] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5395), 1, - anon_sym_DOT, - STATE(5068), 1, + ACTIONS(6659), 1, + anon_sym_EQ_GT, + STATE(4385), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221750] = 5, + [189053] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7333), 1, - anon_sym_LBRACE, - STATE(5069), 1, + ACTIONS(6661), 1, + anon_sym_EQ_GT, + STATE(4386), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221768] = 5, + [189071] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7335), 1, + ACTIONS(6663), 1, anon_sym_EQ_GT, - STATE(5070), 1, + STATE(4387), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221786] = 5, + [189089] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7337), 1, - anon_sym_EQ_GT, - STATE(5071), 1, + ACTIONS(6665), 1, + anon_sym_LBRACE, + STATE(4388), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221804] = 5, + [189107] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5274), 1, - anon_sym_DOT, - STATE(5072), 1, + ACTIONS(6667), 1, + anon_sym_EQ_GT, + STATE(4389), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221822] = 5, + [189125] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7339), 1, - anon_sym_RPAREN, - STATE(5073), 1, + ACTIONS(6669), 1, + anon_sym_EQ_GT, + STATE(4390), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221840] = 5, + [189143] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7341), 1, + ACTIONS(6671), 1, anon_sym_EQ_GT, - STATE(5074), 1, + STATE(4391), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221858] = 5, + [189161] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7343), 1, - anon_sym_RPAREN, - STATE(5075), 1, + ACTIONS(1373), 1, + anon_sym_EQ_GT, + STATE(4392), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221876] = 5, + [189179] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7345), 1, + ACTIONS(6673), 1, anon_sym_EQ_GT, - STATE(5076), 1, + STATE(4393), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221894] = 5, + [189197] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7347), 1, - anon_sym_EQ_GT, - STATE(5077), 1, + ACTIONS(6675), 1, + anon_sym_GT, + STATE(4394), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221912] = 5, + [189215] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(5339), 1, - anon_sym_DOT, - STATE(5078), 1, + ACTIONS(6677), 1, + anon_sym_EQ_GT, + STATE(4395), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221930] = 5, + [189233] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7349), 1, + ACTIONS(6679), 1, anon_sym_EQ_GT, - STATE(5079), 1, + STATE(4396), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221948] = 5, + [189251] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7351), 1, - anon_sym_EQ_GT, - STATE(5080), 1, + ACTIONS(6681), 1, + anon_sym_RBRACE, + STATE(4397), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [221966] = 6, - ACTIONS(3), 1, - sym_line_comment, + [189269] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7353), 1, - anon_sym_SLASH2, - STATE(5081), 1, + ACTIONS(6683), 1, + anon_sym_RPAREN, + STATE(4398), 1, sym_decorator, - ACTIONS(5), 2, + ACTIONS(5), 3, sym__continuation, sym_block_comment, - [221986] = 5, + sym_line_comment, + [189287] = 5, ACTIONS(7), 1, sym__decorator, ACTIONS(9), 1, sym__decorator_inline, - ACTIONS(7355), 1, - anon_sym_GT, - STATE(5082), 1, + ACTIONS(4746), 1, + anon_sym_DOT, + STATE(4399), 1, sym_decorator, ACTIONS(5), 3, sym__continuation, sym_block_comment, sym_line_comment, - [222004] = 1, - ACTIONS(7357), 1, + [189305] = 1, + ACTIONS(6685), 1, ts_builtin_sym_end, - [222008] = 1, - ACTIONS(7359), 1, + [189309] = 1, + ACTIONS(6687), 1, ts_builtin_sym_end, - [222012] = 1, - ACTIONS(7361), 1, + [189313] = 1, + ACTIONS(6689), 1, ts_builtin_sym_end, - [222016] = 1, - ACTIONS(7363), 1, + [189317] = 1, + ACTIONS(6691), 1, ts_builtin_sym_end, - [222020] = 1, - ACTIONS(7365), 1, + [189321] = 1, + ACTIONS(6693), 1, ts_builtin_sym_end, - [222024] = 1, - ACTIONS(7367), 1, + [189325] = 1, + ACTIONS(6695), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(786)] = 0, - [SMALL_STATE(787)] = 77, - [SMALL_STATE(788)] = 154, - [SMALL_STATE(789)] = 235, - [SMALL_STATE(790)] = 312, - [SMALL_STATE(791)] = 389, - [SMALL_STATE(792)] = 530, - [SMALL_STATE(793)] = 611, - [SMALL_STATE(794)] = 690, - [SMALL_STATE(795)] = 769, - [SMALL_STATE(796)] = 848, - [SMALL_STATE(797)] = 925, - [SMALL_STATE(798)] = 1002, - [SMALL_STATE(799)] = 1079, - [SMALL_STATE(800)] = 1160, - [SMALL_STATE(801)] = 1241, - [SMALL_STATE(802)] = 1318, - [SMALL_STATE(803)] = 1459, - [SMALL_STATE(804)] = 1600, - [SMALL_STATE(805)] = 1677, - [SMALL_STATE(806)] = 1754, - [SMALL_STATE(807)] = 1831, - [SMALL_STATE(808)] = 1908, - [SMALL_STATE(809)] = 1993, - [SMALL_STATE(810)] = 2072, - [SMALL_STATE(811)] = 2151, - [SMALL_STATE(812)] = 2230, - [SMALL_STATE(813)] = 2313, - [SMALL_STATE(814)] = 2390, - [SMALL_STATE(815)] = 2467, - [SMALL_STATE(816)] = 2544, - [SMALL_STATE(817)] = 2621, - [SMALL_STATE(818)] = 2702, - [SMALL_STATE(819)] = 2779, - [SMALL_STATE(820)] = 2856, - [SMALL_STATE(821)] = 2933, - [SMALL_STATE(822)] = 3010, - [SMALL_STATE(823)] = 3087, - [SMALL_STATE(824)] = 3164, - [SMALL_STATE(825)] = 3241, - [SMALL_STATE(826)] = 3318, - [SMALL_STATE(827)] = 3395, - [SMALL_STATE(828)] = 3476, - [SMALL_STATE(829)] = 3553, - [SMALL_STATE(830)] = 3630, - [SMALL_STATE(831)] = 3707, - [SMALL_STATE(832)] = 3848, - [SMALL_STATE(833)] = 3925, - [SMALL_STATE(834)] = 4002, - [SMALL_STATE(835)] = 4081, - [SMALL_STATE(836)] = 4158, - [SMALL_STATE(837)] = 4235, - [SMALL_STATE(838)] = 4312, - [SMALL_STATE(839)] = 4389, - [SMALL_STATE(840)] = 4466, - [SMALL_STATE(841)] = 4543, - [SMALL_STATE(842)] = 4620, - [SMALL_STATE(843)] = 4701, - [SMALL_STATE(844)] = 4781, - [SMALL_STATE(845)] = 4857, - [SMALL_STATE(846)] = 4933, - [SMALL_STATE(847)] = 5017, - [SMALL_STATE(848)] = 5093, - [SMALL_STATE(849)] = 5169, - [SMALL_STATE(850)] = 5245, - [SMALL_STATE(851)] = 5383, - [SMALL_STATE(852)] = 5463, - [SMALL_STATE(853)] = 5543, - [SMALL_STATE(854)] = 5681, - [SMALL_STATE(855)] = 5819, - [SMALL_STATE(856)] = 5899, - [SMALL_STATE(857)] = 6037, - [SMALL_STATE(858)] = 6175, - [SMALL_STATE(859)] = 6313, - [SMALL_STATE(860)] = 6393, - [SMALL_STATE(861)] = 6531, - [SMALL_STATE(862)] = 6608, - [SMALL_STATE(863)] = 6691, - [SMALL_STATE(864)] = 6826, - [SMALL_STATE(865)] = 6901, - [SMALL_STATE(866)] = 6980, - [SMALL_STATE(867)] = 7057, - [SMALL_STATE(868)] = 7136, - [SMALL_STATE(869)] = 7215, - [SMALL_STATE(870)] = 7294, - [SMALL_STATE(871)] = 7369, - [SMALL_STATE(872)] = 7444, - [SMALL_STATE(873)] = 7521, - [SMALL_STATE(874)] = 7600, - [SMALL_STATE(875)] = 7685, - [SMALL_STATE(876)] = 7820, - [SMALL_STATE(877)] = 7899, - [SMALL_STATE(878)] = 7976, - [SMALL_STATE(879)] = 8055, - [SMALL_STATE(880)] = 8190, - [SMALL_STATE(881)] = 8267, - [SMALL_STATE(882)] = 8402, - [SMALL_STATE(883)] = 8479, - [SMALL_STATE(884)] = 8614, - [SMALL_STATE(885)] = 8689, - [SMALL_STATE(886)] = 8824, - [SMALL_STATE(887)] = 8959, - [SMALL_STATE(888)] = 9038, - [SMALL_STATE(889)] = 9115, - [SMALL_STATE(890)] = 9192, - [SMALL_STATE(891)] = 9324, - [SMALL_STATE(892)] = 9398, - [SMALL_STATE(893)] = 9530, - [SMALL_STATE(894)] = 9604, - [SMALL_STATE(895)] = 9678, - [SMALL_STATE(896)] = 9752, - [SMALL_STATE(897)] = 9826, - [SMALL_STATE(898)] = 9900, - [SMALL_STATE(899)] = 9974, - [SMALL_STATE(900)] = 10052, - [SMALL_STATE(901)] = 10126, - [SMALL_STATE(902)] = 10200, - [SMALL_STATE(903)] = 10274, - [SMALL_STATE(904)] = 10348, - [SMALL_STATE(905)] = 10422, - [SMALL_STATE(906)] = 10496, - [SMALL_STATE(907)] = 10600, - [SMALL_STATE(908)] = 10704, - [SMALL_STATE(909)] = 10808, - [SMALL_STATE(910)] = 10912, - [SMALL_STATE(911)] = 10990, - [SMALL_STATE(912)] = 11068, - [SMALL_STATE(913)] = 11144, - [SMALL_STATE(914)] = 11276, - [SMALL_STATE(915)] = 11354, - [SMALL_STATE(916)] = 11428, - [SMALL_STATE(917)] = 11560, - [SMALL_STATE(918)] = 11636, - [SMALL_STATE(919)] = 11712, - [SMALL_STATE(920)] = 11844, - [SMALL_STATE(921)] = 11976, - [SMALL_STATE(922)] = 12108, - [SMALL_STATE(923)] = 12184, - [SMALL_STATE(924)] = 12260, - [SMALL_STATE(925)] = 12392, - [SMALL_STATE(926)] = 12478, - [SMALL_STATE(927)] = 12558, - [SMALL_STATE(928)] = 12648, - [SMALL_STATE(929)] = 12744, - [SMALL_STATE(930)] = 12838, - [SMALL_STATE(931)] = 12936, - [SMALL_STATE(932)] = 13028, - [SMALL_STATE(933)] = 13108, - [SMALL_STATE(934)] = 13190, - [SMALL_STATE(935)] = 13294, - [SMALL_STATE(936)] = 13396, - [SMALL_STATE(937)] = 13528, - [SMALL_STATE(938)] = 13604, - [SMALL_STATE(939)] = 13678, - [SMALL_STATE(940)] = 13810, - [SMALL_STATE(941)] = 13884, - [SMALL_STATE(942)] = 13958, - [SMALL_STATE(943)] = 14032, - [SMALL_STATE(944)] = 14106, - [SMALL_STATE(945)] = 14238, - [SMALL_STATE(946)] = 14312, - [SMALL_STATE(947)] = 14444, - [SMALL_STATE(948)] = 14576, - [SMALL_STATE(949)] = 14708, - [SMALL_STATE(950)] = 14840, - [SMALL_STATE(951)] = 14914, - [SMALL_STATE(952)] = 14988, - [SMALL_STATE(953)] = 15120, - [SMALL_STATE(954)] = 15194, - [SMALL_STATE(955)] = 15268, - [SMALL_STATE(956)] = 15342, - [SMALL_STATE(957)] = 15416, - [SMALL_STATE(958)] = 15490, - [SMALL_STATE(959)] = 15622, - [SMALL_STATE(960)] = 15696, - [SMALL_STATE(961)] = 15770, - [SMALL_STATE(962)] = 15844, - [SMALL_STATE(963)] = 15918, - [SMALL_STATE(964)] = 15992, - [SMALL_STATE(965)] = 16066, - [SMALL_STATE(966)] = 16140, - [SMALL_STATE(967)] = 16214, - [SMALL_STATE(968)] = 16288, - [SMALL_STATE(969)] = 16362, - [SMALL_STATE(970)] = 16436, - [SMALL_STATE(971)] = 16510, - [SMALL_STATE(972)] = 16588, - [SMALL_STATE(973)] = 16662, - [SMALL_STATE(974)] = 16736, - [SMALL_STATE(975)] = 16810, - [SMALL_STATE(976)] = 16884, - [SMALL_STATE(977)] = 16958, - [SMALL_STATE(978)] = 17032, - [SMALL_STATE(979)] = 17106, - [SMALL_STATE(980)] = 17180, - [SMALL_STATE(981)] = 17254, - [SMALL_STATE(982)] = 17386, - [SMALL_STATE(983)] = 17518, - [SMALL_STATE(984)] = 17592, - [SMALL_STATE(985)] = 17666, - [SMALL_STATE(986)] = 17740, - [SMALL_STATE(987)] = 17818, - [SMALL_STATE(988)] = 17950, - [SMALL_STATE(989)] = 18082, - [SMALL_STATE(990)] = 18156, - [SMALL_STATE(991)] = 18230, - [SMALL_STATE(992)] = 18304, - [SMALL_STATE(993)] = 18378, - [SMALL_STATE(994)] = 18452, - [SMALL_STATE(995)] = 18526, - [SMALL_STATE(996)] = 18600, - [SMALL_STATE(997)] = 18674, - [SMALL_STATE(998)] = 18748, - [SMALL_STATE(999)] = 18822, - [SMALL_STATE(1000)] = 18896, - [SMALL_STATE(1001)] = 18970, - [SMALL_STATE(1002)] = 19044, - [SMALL_STATE(1003)] = 19118, - [SMALL_STATE(1004)] = 19192, - [SMALL_STATE(1005)] = 19266, - [SMALL_STATE(1006)] = 19340, - [SMALL_STATE(1007)] = 19414, - [SMALL_STATE(1008)] = 19488, - [SMALL_STATE(1009)] = 19562, - [SMALL_STATE(1010)] = 19694, - [SMALL_STATE(1011)] = 19768, - [SMALL_STATE(1012)] = 19842, - [SMALL_STATE(1013)] = 19916, - [SMALL_STATE(1014)] = 19990, - [SMALL_STATE(1015)] = 20064, - [SMALL_STATE(1016)] = 20138, - [SMALL_STATE(1017)] = 20212, - [SMALL_STATE(1018)] = 20344, - [SMALL_STATE(1019)] = 20476, - [SMALL_STATE(1020)] = 20550, - [SMALL_STATE(1021)] = 20624, - [SMALL_STATE(1022)] = 20756, - [SMALL_STATE(1023)] = 20888, - [SMALL_STATE(1024)] = 20962, - [SMALL_STATE(1025)] = 21094, - [SMALL_STATE(1026)] = 21168, - [SMALL_STATE(1027)] = 21242, - [SMALL_STATE(1028)] = 21374, - [SMALL_STATE(1029)] = 21521, - [SMALL_STATE(1030)] = 21668, - [SMALL_STATE(1031)] = 21815, - [SMALL_STATE(1032)] = 21962, - [SMALL_STATE(1033)] = 22109, - [SMALL_STATE(1034)] = 22256, - [SMALL_STATE(1035)] = 22403, - [SMALL_STATE(1036)] = 22475, - [SMALL_STATE(1037)] = 22546, - [SMALL_STATE(1038)] = 22617, - [SMALL_STATE(1039)] = 22688, - [SMALL_STATE(1040)] = 22759, - [SMALL_STATE(1041)] = 22830, - [SMALL_STATE(1042)] = 22901, - [SMALL_STATE(1043)] = 22972, - [SMALL_STATE(1044)] = 23043, - [SMALL_STATE(1045)] = 23114, - [SMALL_STATE(1046)] = 23185, - [SMALL_STATE(1047)] = 23286, - [SMALL_STATE(1048)] = 23357, - [SMALL_STATE(1049)] = 23428, - [SMALL_STATE(1050)] = 23499, - [SMALL_STATE(1051)] = 23570, - [SMALL_STATE(1052)] = 23641, - [SMALL_STATE(1053)] = 23740, - [SMALL_STATE(1054)] = 23811, - [SMALL_STATE(1055)] = 23890, - [SMALL_STATE(1056)] = 23965, - [SMALL_STATE(1057)] = 24036, - [SMALL_STATE(1058)] = 24119, - [SMALL_STATE(1059)] = 24190, - [SMALL_STATE(1060)] = 24261, - [SMALL_STATE(1061)] = 24332, - [SMALL_STATE(1062)] = 24419, - [SMALL_STATE(1063)] = 24512, - [SMALL_STATE(1064)] = 24603, - [SMALL_STATE(1065)] = 24698, - [SMALL_STATE(1066)] = 24769, - [SMALL_STATE(1067)] = 24842, - [SMALL_STATE(1068)] = 24931, - [SMALL_STATE(1069)] = 25002, - [SMALL_STATE(1070)] = 25079, - [SMALL_STATE(1071)] = 25150, - [SMALL_STATE(1072)] = 25221, - [SMALL_STATE(1073)] = 25292, - [SMALL_STATE(1074)] = 25363, - [SMALL_STATE(1075)] = 25434, - [SMALL_STATE(1076)] = 25505, - [SMALL_STATE(1077)] = 25606, - [SMALL_STATE(1078)] = 25677, - [SMALL_STATE(1079)] = 25748, - [SMALL_STATE(1080)] = 25819, - [SMALL_STATE(1081)] = 25890, - [SMALL_STATE(1082)] = 25961, - [SMALL_STATE(1083)] = 26032, - [SMALL_STATE(1084)] = 26103, - [SMALL_STATE(1085)] = 26174, - [SMALL_STATE(1086)] = 26251, - [SMALL_STATE(1087)] = 26337, - [SMALL_STATE(1088)] = 26423, - [SMALL_STATE(1089)] = 26493, - [SMALL_STATE(1090)] = 26633, - [SMALL_STATE(1091)] = 26773, - [SMALL_STATE(1092)] = 26843, - [SMALL_STATE(1093)] = 26916, - [SMALL_STATE(1094)] = 26987, - [SMALL_STATE(1095)] = 27072, - [SMALL_STATE(1096)] = 27157, - [SMALL_STATE(1097)] = 27242, - [SMALL_STATE(1098)] = 27327, - [SMALL_STATE(1099)] = 27464, - [SMALL_STATE(1100)] = 27532, - [SMALL_STATE(1101)] = 27616, - [SMALL_STATE(1102)] = 27684, - [SMALL_STATE(1103)] = 27756, - [SMALL_STATE(1104)] = 27888, - [SMALL_STATE(1105)] = 27972, - [SMALL_STATE(1106)] = 28106, - [SMALL_STATE(1107)] = 28174, - [SMALL_STATE(1108)] = 28242, - [SMALL_STATE(1109)] = 28317, - [SMALL_STATE(1110)] = 28392, - [SMALL_STATE(1111)] = 28523, - [SMALL_STATE(1112)] = 28654, - [SMALL_STATE(1113)] = 28737, - [SMALL_STATE(1114)] = 28804, - [SMALL_STATE(1115)] = 28935, - [SMALL_STATE(1116)] = 29066, - [SMALL_STATE(1117)] = 29136, - [SMALL_STATE(1118)] = 29202, - [SMALL_STATE(1119)] = 29268, - [SMALL_STATE(1120)] = 29334, - [SMALL_STATE(1121)] = 29416, - [SMALL_STATE(1122)] = 29482, - [SMALL_STATE(1123)] = 29564, - [SMALL_STATE(1124)] = 29636, - [SMALL_STATE(1125)] = 29706, - [SMALL_STATE(1126)] = 29787, - [SMALL_STATE(1127)] = 29912, - [SMALL_STATE(1128)] = 30037, - [SMALL_STATE(1129)] = 30102, - [SMALL_STATE(1130)] = 30167, - [SMALL_STATE(1131)] = 30232, - [SMALL_STATE(1132)] = 30297, - [SMALL_STATE(1133)] = 30422, - [SMALL_STATE(1134)] = 30487, - [SMALL_STATE(1135)] = 30552, - [SMALL_STATE(1136)] = 30617, - [SMALL_STATE(1137)] = 30682, - [SMALL_STATE(1138)] = 30747, - [SMALL_STATE(1139)] = 30872, - [SMALL_STATE(1140)] = 30997, - [SMALL_STATE(1141)] = 31122, - [SMALL_STATE(1142)] = 31187, - [SMALL_STATE(1143)] = 31252, - [SMALL_STATE(1144)] = 31317, - [SMALL_STATE(1145)] = 31386, - [SMALL_STATE(1146)] = 31511, - [SMALL_STATE(1147)] = 31576, - [SMALL_STATE(1148)] = 31701, - [SMALL_STATE(1149)] = 31766, - [SMALL_STATE(1150)] = 31891, - [SMALL_STATE(1151)] = 32016, - [SMALL_STATE(1152)] = 32141, - [SMALL_STATE(1153)] = 32266, - [SMALL_STATE(1154)] = 32331, - [SMALL_STATE(1155)] = 32400, - [SMALL_STATE(1156)] = 32465, - [SMALL_STATE(1157)] = 32530, - [SMALL_STATE(1158)] = 32595, - [SMALL_STATE(1159)] = 32660, - [SMALL_STATE(1160)] = 32785, - [SMALL_STATE(1161)] = 32910, - [SMALL_STATE(1162)] = 33035, - [SMALL_STATE(1163)] = 33100, - [SMALL_STATE(1164)] = 33165, - [SMALL_STATE(1165)] = 33290, - [SMALL_STATE(1166)] = 33415, - [SMALL_STATE(1167)] = 33540, - [SMALL_STATE(1168)] = 33665, - [SMALL_STATE(1169)] = 33790, - [SMALL_STATE(1170)] = 33915, - [SMALL_STATE(1171)] = 34040, - [SMALL_STATE(1172)] = 34165, - [SMALL_STATE(1173)] = 34290, - [SMALL_STATE(1174)] = 34415, - [SMALL_STATE(1175)] = 34540, - [SMALL_STATE(1176)] = 34665, - [SMALL_STATE(1177)] = 34730, - [SMALL_STATE(1178)] = 34795, - [SMALL_STATE(1179)] = 34862, - [SMALL_STATE(1180)] = 34927, - [SMALL_STATE(1181)] = 34992, - [SMALL_STATE(1182)] = 35057, - [SMALL_STATE(1183)] = 35182, - [SMALL_STATE(1184)] = 35247, - [SMALL_STATE(1185)] = 35372, - [SMALL_STATE(1186)] = 35437, - [SMALL_STATE(1187)] = 35502, - [SMALL_STATE(1188)] = 35567, - [SMALL_STATE(1189)] = 35632, - [SMALL_STATE(1190)] = 35697, - [SMALL_STATE(1191)] = 35822, - [SMALL_STATE(1192)] = 35887, - [SMALL_STATE(1193)] = 36012, - [SMALL_STATE(1194)] = 36077, - [SMALL_STATE(1195)] = 36142, - [SMALL_STATE(1196)] = 36267, - [SMALL_STATE(1197)] = 36334, - [SMALL_STATE(1198)] = 36399, - [SMALL_STATE(1199)] = 36464, - [SMALL_STATE(1200)] = 36529, - [SMALL_STATE(1201)] = 36594, - [SMALL_STATE(1202)] = 36719, - [SMALL_STATE(1203)] = 36784, - [SMALL_STATE(1204)] = 36909, - [SMALL_STATE(1205)] = 36974, - [SMALL_STATE(1206)] = 37043, - [SMALL_STATE(1207)] = 37108, - [SMALL_STATE(1208)] = 37233, - [SMALL_STATE(1209)] = 37298, - [SMALL_STATE(1210)] = 37423, - [SMALL_STATE(1211)] = 37488, - [SMALL_STATE(1212)] = 37613, - [SMALL_STATE(1213)] = 37678, - [SMALL_STATE(1214)] = 37743, - [SMALL_STATE(1215)] = 37868, - [SMALL_STATE(1216)] = 37993, - [SMALL_STATE(1217)] = 38118, - [SMALL_STATE(1218)] = 38243, - [SMALL_STATE(1219)] = 38368, - [SMALL_STATE(1220)] = 38493, - [SMALL_STATE(1221)] = 38618, - [SMALL_STATE(1222)] = 38743, - [SMALL_STATE(1223)] = 38808, - [SMALL_STATE(1224)] = 38933, - [SMALL_STATE(1225)] = 38998, - [SMALL_STATE(1226)] = 39063, - [SMALL_STATE(1227)] = 39128, - [SMALL_STATE(1228)] = 39193, - [SMALL_STATE(1229)] = 39274, - [SMALL_STATE(1230)] = 39396, - [SMALL_STATE(1231)] = 39518, - [SMALL_STATE(1232)] = 39640, - [SMALL_STATE(1233)] = 39762, - [SMALL_STATE(1234)] = 39884, - [SMALL_STATE(1235)] = 40006, - [SMALL_STATE(1236)] = 40128, - [SMALL_STATE(1237)] = 40250, - [SMALL_STATE(1238)] = 40372, - [SMALL_STATE(1239)] = 40494, - [SMALL_STATE(1240)] = 40616, - [SMALL_STATE(1241)] = 40680, - [SMALL_STATE(1242)] = 40802, - [SMALL_STATE(1243)] = 40924, - [SMALL_STATE(1244)] = 41046, - [SMALL_STATE(1245)] = 41168, - [SMALL_STATE(1246)] = 41290, - [SMALL_STATE(1247)] = 41412, - [SMALL_STATE(1248)] = 41478, - [SMALL_STATE(1249)] = 41600, - [SMALL_STATE(1250)] = 41722, - [SMALL_STATE(1251)] = 41844, - [SMALL_STATE(1252)] = 41966, - [SMALL_STATE(1253)] = 42088, - [SMALL_STATE(1254)] = 42210, - [SMALL_STATE(1255)] = 42332, - [SMALL_STATE(1256)] = 42454, - [SMALL_STATE(1257)] = 42576, - [SMALL_STATE(1258)] = 42698, - [SMALL_STATE(1259)] = 42820, - [SMALL_STATE(1260)] = 42942, - [SMALL_STATE(1261)] = 43064, - [SMALL_STATE(1262)] = 43186, - [SMALL_STATE(1263)] = 43308, - [SMALL_STATE(1264)] = 43430, - [SMALL_STATE(1265)] = 43552, - [SMALL_STATE(1266)] = 43674, - [SMALL_STATE(1267)] = 43796, - [SMALL_STATE(1268)] = 43918, - [SMALL_STATE(1269)] = 44040, - [SMALL_STATE(1270)] = 44162, - [SMALL_STATE(1271)] = 44284, - [SMALL_STATE(1272)] = 44406, - [SMALL_STATE(1273)] = 44528, - [SMALL_STATE(1274)] = 44650, - [SMALL_STATE(1275)] = 44772, - [SMALL_STATE(1276)] = 44894, - [SMALL_STATE(1277)] = 45016, - [SMALL_STATE(1278)] = 45138, - [SMALL_STATE(1279)] = 45260, - [SMALL_STATE(1280)] = 45382, - [SMALL_STATE(1281)] = 45504, - [SMALL_STATE(1282)] = 45626, - [SMALL_STATE(1283)] = 45748, - [SMALL_STATE(1284)] = 45870, - [SMALL_STATE(1285)] = 45992, - [SMALL_STATE(1286)] = 46114, - [SMALL_STATE(1287)] = 46236, - [SMALL_STATE(1288)] = 46358, - [SMALL_STATE(1289)] = 46480, - [SMALL_STATE(1290)] = 46602, - [SMALL_STATE(1291)] = 46724, - [SMALL_STATE(1292)] = 46846, - [SMALL_STATE(1293)] = 46968, - [SMALL_STATE(1294)] = 47090, - [SMALL_STATE(1295)] = 47212, - [SMALL_STATE(1296)] = 47334, - [SMALL_STATE(1297)] = 47456, - [SMALL_STATE(1298)] = 47578, - [SMALL_STATE(1299)] = 47700, - [SMALL_STATE(1300)] = 47822, - [SMALL_STATE(1301)] = 47944, - [SMALL_STATE(1302)] = 48066, - [SMALL_STATE(1303)] = 48188, - [SMALL_STATE(1304)] = 48310, - [SMALL_STATE(1305)] = 48432, - [SMALL_STATE(1306)] = 48554, - [SMALL_STATE(1307)] = 48676, - [SMALL_STATE(1308)] = 48798, - [SMALL_STATE(1309)] = 48920, - [SMALL_STATE(1310)] = 49042, - [SMALL_STATE(1311)] = 49164, - [SMALL_STATE(1312)] = 49286, - [SMALL_STATE(1313)] = 49408, - [SMALL_STATE(1314)] = 49530, - [SMALL_STATE(1315)] = 49652, - [SMALL_STATE(1316)] = 49774, - [SMALL_STATE(1317)] = 49896, - [SMALL_STATE(1318)] = 50018, - [SMALL_STATE(1319)] = 50140, - [SMALL_STATE(1320)] = 50262, - [SMALL_STATE(1321)] = 50384, - [SMALL_STATE(1322)] = 50506, - [SMALL_STATE(1323)] = 50628, - [SMALL_STATE(1324)] = 50750, - [SMALL_STATE(1325)] = 50872, - [SMALL_STATE(1326)] = 50940, - [SMALL_STATE(1327)] = 51062, - [SMALL_STATE(1328)] = 51126, - [SMALL_STATE(1329)] = 51248, - [SMALL_STATE(1330)] = 51370, - [SMALL_STATE(1331)] = 51492, - [SMALL_STATE(1332)] = 51614, - [SMALL_STATE(1333)] = 51736, - [SMALL_STATE(1334)] = 51858, - [SMALL_STATE(1335)] = 51980, - [SMALL_STATE(1336)] = 52102, - [SMALL_STATE(1337)] = 52224, - [SMALL_STATE(1338)] = 52346, - [SMALL_STATE(1339)] = 52468, - [SMALL_STATE(1340)] = 52590, - [SMALL_STATE(1341)] = 52712, - [SMALL_STATE(1342)] = 52834, - [SMALL_STATE(1343)] = 52956, - [SMALL_STATE(1344)] = 53078, - [SMALL_STATE(1345)] = 53200, - [SMALL_STATE(1346)] = 53322, - [SMALL_STATE(1347)] = 53444, - [SMALL_STATE(1348)] = 53566, - [SMALL_STATE(1349)] = 53688, - [SMALL_STATE(1350)] = 53810, - [SMALL_STATE(1351)] = 53932, - [SMALL_STATE(1352)] = 54054, - [SMALL_STATE(1353)] = 54176, - [SMALL_STATE(1354)] = 54298, - [SMALL_STATE(1355)] = 54420, - [SMALL_STATE(1356)] = 54542, - [SMALL_STATE(1357)] = 54664, - [SMALL_STATE(1358)] = 54786, - [SMALL_STATE(1359)] = 54858, - [SMALL_STATE(1360)] = 54980, - [SMALL_STATE(1361)] = 55102, - [SMALL_STATE(1362)] = 55224, - [SMALL_STATE(1363)] = 55346, - [SMALL_STATE(1364)] = 55468, - [SMALL_STATE(1365)] = 55590, - [SMALL_STATE(1366)] = 55712, - [SMALL_STATE(1367)] = 55776, - [SMALL_STATE(1368)] = 55898, - [SMALL_STATE(1369)] = 56020, - [SMALL_STATE(1370)] = 56100, - [SMALL_STATE(1371)] = 56222, - [SMALL_STATE(1372)] = 56344, - [SMALL_STATE(1373)] = 56466, - [SMALL_STATE(1374)] = 56588, - [SMALL_STATE(1375)] = 56710, - [SMALL_STATE(1376)] = 56832, - [SMALL_STATE(1377)] = 56904, - [SMALL_STATE(1378)] = 57026, - [SMALL_STATE(1379)] = 57098, - [SMALL_STATE(1380)] = 57220, - [SMALL_STATE(1381)] = 57288, - [SMALL_STATE(1382)] = 57410, - [SMALL_STATE(1383)] = 57478, - [SMALL_STATE(1384)] = 57600, - [SMALL_STATE(1385)] = 57722, - [SMALL_STATE(1386)] = 57786, - [SMALL_STATE(1387)] = 57908, - [SMALL_STATE(1388)] = 58030, - [SMALL_STATE(1389)] = 58152, - [SMALL_STATE(1390)] = 58274, - [SMALL_STATE(1391)] = 58396, - [SMALL_STATE(1392)] = 58518, - [SMALL_STATE(1393)] = 58640, - [SMALL_STATE(1394)] = 58762, - [SMALL_STATE(1395)] = 58884, - [SMALL_STATE(1396)] = 59006, - [SMALL_STATE(1397)] = 59128, - [SMALL_STATE(1398)] = 59192, - [SMALL_STATE(1399)] = 59314, - [SMALL_STATE(1400)] = 59436, - [SMALL_STATE(1401)] = 59558, - [SMALL_STATE(1402)] = 59630, - [SMALL_STATE(1403)] = 59700, - [SMALL_STATE(1404)] = 59822, - [SMALL_STATE(1405)] = 59944, - [SMALL_STATE(1406)] = 60066, - [SMALL_STATE(1407)] = 60188, - [SMALL_STATE(1408)] = 60310, - [SMALL_STATE(1409)] = 60432, - [SMALL_STATE(1410)] = 60554, - [SMALL_STATE(1411)] = 60617, - [SMALL_STATE(1412)] = 60684, - [SMALL_STATE(1413)] = 60753, - [SMALL_STATE(1414)] = 60816, - [SMALL_STATE(1415)] = 60887, - [SMALL_STATE(1416)] = 60952, - [SMALL_STATE(1417)] = 61015, - [SMALL_STATE(1418)] = 61078, - [SMALL_STATE(1419)] = 61143, - [SMALL_STATE(1420)] = 61214, - [SMALL_STATE(1421)] = 61277, - [SMALL_STATE(1422)] = 61340, - [SMALL_STATE(1423)] = 61403, - [SMALL_STATE(1424)] = 61466, - [SMALL_STATE(1425)] = 61529, - [SMALL_STATE(1426)] = 61592, - [SMALL_STATE(1427)] = 61655, - [SMALL_STATE(1428)] = 61718, - [SMALL_STATE(1429)] = 61781, - [SMALL_STATE(1430)] = 61844, - [SMALL_STATE(1431)] = 61907, - [SMALL_STATE(1432)] = 61970, - [SMALL_STATE(1433)] = 62033, - [SMALL_STATE(1434)] = 62096, - [SMALL_STATE(1435)] = 62159, - [SMALL_STATE(1436)] = 62222, - [SMALL_STATE(1437)] = 62285, - [SMALL_STATE(1438)] = 62352, - [SMALL_STATE(1439)] = 62415, - [SMALL_STATE(1440)] = 62478, - [SMALL_STATE(1441)] = 62541, - [SMALL_STATE(1442)] = 62604, - [SMALL_STATE(1443)] = 62675, - [SMALL_STATE(1444)] = 62738, - [SMALL_STATE(1445)] = 62801, - [SMALL_STATE(1446)] = 62872, - [SMALL_STATE(1447)] = 62939, - [SMALL_STATE(1448)] = 63006, - [SMALL_STATE(1449)] = 63073, - [SMALL_STATE(1450)] = 63138, - [SMALL_STATE(1451)] = 63201, - [SMALL_STATE(1452)] = 63264, - [SMALL_STATE(1453)] = 63327, - [SMALL_STATE(1454)] = 63394, - [SMALL_STATE(1455)] = 63457, - [SMALL_STATE(1456)] = 63522, - [SMALL_STATE(1457)] = 63585, - [SMALL_STATE(1458)] = 63648, - [SMALL_STATE(1459)] = 63711, - [SMALL_STATE(1460)] = 63774, - [SMALL_STATE(1461)] = 63837, - [SMALL_STATE(1462)] = 63900, - [SMALL_STATE(1463)] = 63963, - [SMALL_STATE(1464)] = 64026, - [SMALL_STATE(1465)] = 64089, - [SMALL_STATE(1466)] = 64152, - [SMALL_STATE(1467)] = 64215, - [SMALL_STATE(1468)] = 64278, - [SMALL_STATE(1469)] = 64341, - [SMALL_STATE(1470)] = 64404, - [SMALL_STATE(1471)] = 64467, - [SMALL_STATE(1472)] = 64530, - [SMALL_STATE(1473)] = 64593, - [SMALL_STATE(1474)] = 64656, - [SMALL_STATE(1475)] = 64719, - [SMALL_STATE(1476)] = 64782, - [SMALL_STATE(1477)] = 64845, - [SMALL_STATE(1478)] = 64916, - [SMALL_STATE(1479)] = 64979, - [SMALL_STATE(1480)] = 65042, - [SMALL_STATE(1481)] = 65105, - [SMALL_STATE(1482)] = 65168, - [SMALL_STATE(1483)] = 65231, - [SMALL_STATE(1484)] = 65294, - [SMALL_STATE(1485)] = 65357, - [SMALL_STATE(1486)] = 65422, - [SMALL_STATE(1487)] = 65485, - [SMALL_STATE(1488)] = 65548, - [SMALL_STATE(1489)] = 65611, - [SMALL_STATE(1490)] = 65674, - [SMALL_STATE(1491)] = 65737, - [SMALL_STATE(1492)] = 65808, - [SMALL_STATE(1493)] = 65871, - [SMALL_STATE(1494)] = 65934, - [SMALL_STATE(1495)] = 65997, - [SMALL_STATE(1496)] = 66060, - [SMALL_STATE(1497)] = 66123, - [SMALL_STATE(1498)] = 66186, - [SMALL_STATE(1499)] = 66251, - [SMALL_STATE(1500)] = 66316, - [SMALL_STATE(1501)] = 66381, - [SMALL_STATE(1502)] = 66446, - [SMALL_STATE(1503)] = 66513, - [SMALL_STATE(1504)] = 66580, - [SMALL_STATE(1505)] = 66643, - [SMALL_STATE(1506)] = 66706, - [SMALL_STATE(1507)] = 66769, - [SMALL_STATE(1508)] = 66832, - [SMALL_STATE(1509)] = 66895, - [SMALL_STATE(1510)] = 66958, - [SMALL_STATE(1511)] = 67024, - [SMALL_STATE(1512)] = 67086, - [SMALL_STATE(1513)] = 67152, - [SMALL_STATE(1514)] = 67218, - [SMALL_STATE(1515)] = 67284, - [SMALL_STATE(1516)] = 67348, - [SMALL_STATE(1517)] = 67412, - [SMALL_STATE(1518)] = 67478, - [SMALL_STATE(1519)] = 67542, - [SMALL_STATE(1520)] = 67604, - [SMALL_STATE(1521)] = 67674, - [SMALL_STATE(1522)] = 67738, - [SMALL_STATE(1523)] = 67806, - [SMALL_STATE(1524)] = 67872, - [SMALL_STATE(1525)] = 67934, - [SMALL_STATE(1526)] = 68000, - [SMALL_STATE(1527)] = 68062, - [SMALL_STATE(1528)] = 68138, - [SMALL_STATE(1529)] = 68208, - [SMALL_STATE(1530)] = 68286, - [SMALL_STATE(1531)] = 68352, - [SMALL_STATE(1532)] = 68418, - [SMALL_STATE(1533)] = 68494, - [SMALL_STATE(1534)] = 68558, - [SMALL_STATE(1535)] = 68626, - [SMALL_STATE(1536)] = 68692, - [SMALL_STATE(1537)] = 68758, - [SMALL_STATE(1538)] = 68824, - [SMALL_STATE(1539)] = 68888, - [SMALL_STATE(1540)] = 68952, - [SMALL_STATE(1541)] = 69018, - [SMALL_STATE(1542)] = 69080, - [SMALL_STATE(1543)] = 69146, - [SMALL_STATE(1544)] = 69212, - [SMALL_STATE(1545)] = 69274, - [SMALL_STATE(1546)] = 69336, - [SMALL_STATE(1547)] = 69402, - [SMALL_STATE(1548)] = 69464, - [SMALL_STATE(1549)] = 69534, - [SMALL_STATE(1550)] = 69604, - [SMALL_STATE(1551)] = 69670, - [SMALL_STATE(1552)] = 69736, - [SMALL_STATE(1553)] = 69800, - [SMALL_STATE(1554)] = 69866, - [SMALL_STATE(1555)] = 69932, - [SMALL_STATE(1556)] = 69996, - [SMALL_STATE(1557)] = 70058, - [SMALL_STATE(1558)] = 70122, - [SMALL_STATE(1559)] = 70198, - [SMALL_STATE(1560)] = 70260, - [SMALL_STATE(1561)] = 70324, - [SMALL_STATE(1562)] = 70400, - [SMALL_STATE(1563)] = 70478, - [SMALL_STATE(1564)] = 70542, - [SMALL_STATE(1565)] = 70606, - [SMALL_STATE(1566)] = 70670, - [SMALL_STATE(1567)] = 70734, - [SMALL_STATE(1568)] = 70798, - [SMALL_STATE(1569)] = 70862, - [SMALL_STATE(1570)] = 70924, - [SMALL_STATE(1571)] = 70987, - [SMALL_STATE(1572)] = 71048, - [SMALL_STATE(1573)] = 71117, - [SMALL_STATE(1574)] = 71180, - [SMALL_STATE(1575)] = 71245, - [SMALL_STATE(1576)] = 71310, - [SMALL_STATE(1577)] = 71375, - [SMALL_STATE(1578)] = 71436, - [SMALL_STATE(1579)] = 71497, - [SMALL_STATE(1580)] = 71566, - [SMALL_STATE(1581)] = 71627, - [SMALL_STATE(1582)] = 71698, - [SMALL_STATE(1583)] = 71759, - [SMALL_STATE(1584)] = 71820, - [SMALL_STATE(1585)] = 71881, - [SMALL_STATE(1586)] = 71946, - [SMALL_STATE(1587)] = 72011, - [SMALL_STATE(1588)] = 72074, - [SMALL_STATE(1589)] = 72139, - [SMALL_STATE(1590)] = 72204, - [SMALL_STATE(1591)] = 72269, - [SMALL_STATE(1592)] = 72332, - [SMALL_STATE(1593)] = 72393, - [SMALL_STATE(1594)] = 72454, - [SMALL_STATE(1595)] = 72523, - [SMALL_STATE(1596)] = 72584, - [SMALL_STATE(1597)] = 72649, - [SMALL_STATE(1598)] = 72710, - [SMALL_STATE(1599)] = 72771, - [SMALL_STATE(1600)] = 72836, - [SMALL_STATE(1601)] = 72901, - [SMALL_STATE(1602)] = 72962, - [SMALL_STATE(1603)] = 73029, - [SMALL_STATE(1604)] = 73090, - [SMALL_STATE(1605)] = 73159, - [SMALL_STATE(1606)] = 73220, - [SMALL_STATE(1607)] = 73283, - [SMALL_STATE(1608)] = 73348, - [SMALL_STATE(1609)] = 73411, - [SMALL_STATE(1610)] = 73472, - [SMALL_STATE(1611)] = 73533, - [SMALL_STATE(1612)] = 73594, - [SMALL_STATE(1613)] = 73657, - [SMALL_STATE(1614)] = 73722, - [SMALL_STATE(1615)] = 73783, - [SMALL_STATE(1616)] = 73848, - [SMALL_STATE(1617)] = 73917, - [SMALL_STATE(1618)] = 73978, - [SMALL_STATE(1619)] = 74039, - [SMALL_STATE(1620)] = 74100, - [SMALL_STATE(1621)] = 74161, - [SMALL_STATE(1622)] = 74222, - [SMALL_STATE(1623)] = 74297, - [SMALL_STATE(1624)] = 74358, - [SMALL_STATE(1625)] = 74419, - [SMALL_STATE(1626)] = 74480, - [SMALL_STATE(1627)] = 74547, - [SMALL_STATE(1628)] = 74610, - [SMALL_STATE(1629)] = 74673, - [SMALL_STATE(1630)] = 74734, - [SMALL_STATE(1631)] = 74795, - [SMALL_STATE(1632)] = 74856, - [SMALL_STATE(1633)] = 74917, - [SMALL_STATE(1634)] = 74978, - [SMALL_STATE(1635)] = 75039, - [SMALL_STATE(1636)] = 75100, - [SMALL_STATE(1637)] = 75161, - [SMALL_STATE(1638)] = 75222, - [SMALL_STATE(1639)] = 75283, - [SMALL_STATE(1640)] = 75344, - [SMALL_STATE(1641)] = 75409, - [SMALL_STATE(1642)] = 75474, - [SMALL_STATE(1643)] = 75537, - [SMALL_STATE(1644)] = 75598, - [SMALL_STATE(1645)] = 75663, - [SMALL_STATE(1646)] = 75724, - [SMALL_STATE(1647)] = 75789, - [SMALL_STATE(1648)] = 75854, - [SMALL_STATE(1649)] = 75919, - [SMALL_STATE(1650)] = 75982, - [SMALL_STATE(1651)] = 76047, - [SMALL_STATE(1652)] = 76112, - [SMALL_STATE(1653)] = 76175, - [SMALL_STATE(1654)] = 76238, - [SMALL_STATE(1655)] = 76303, - [SMALL_STATE(1656)] = 76368, - [SMALL_STATE(1657)] = 76431, - [SMALL_STATE(1658)] = 76496, - [SMALL_STATE(1659)] = 76561, - [SMALL_STATE(1660)] = 76622, - [SMALL_STATE(1661)] = 76683, - [SMALL_STATE(1662)] = 76744, - [SMALL_STATE(1663)] = 76807, - [SMALL_STATE(1664)] = 76870, - [SMALL_STATE(1665)] = 76933, - [SMALL_STATE(1666)] = 76996, - [SMALL_STATE(1667)] = 77059, - [SMALL_STATE(1668)] = 77122, - [SMALL_STATE(1669)] = 77185, - [SMALL_STATE(1670)] = 77250, - [SMALL_STATE(1671)] = 77313, - [SMALL_STATE(1672)] = 77376, - [SMALL_STATE(1673)] = 77443, - [SMALL_STATE(1674)] = 77504, - [SMALL_STATE(1675)] = 77566, - [SMALL_STATE(1676)] = 77634, - [SMALL_STATE(1677)] = 77694, - [SMALL_STATE(1678)] = 77754, - [SMALL_STATE(1679)] = 77820, - [SMALL_STATE(1680)] = 77884, - [SMALL_STATE(1681)] = 77944, - [SMALL_STATE(1682)] = 78004, - [SMALL_STATE(1683)] = 78064, - [SMALL_STATE(1684)] = 78124, - [SMALL_STATE(1685)] = 78184, - [SMALL_STATE(1686)] = 78244, - [SMALL_STATE(1687)] = 78304, - [SMALL_STATE(1688)] = 78364, - [SMALL_STATE(1689)] = 78428, - [SMALL_STATE(1690)] = 78492, - [SMALL_STATE(1691)] = 78552, - [SMALL_STATE(1692)] = 78612, - [SMALL_STATE(1693)] = 78676, - [SMALL_STATE(1694)] = 78740, - [SMALL_STATE(1695)] = 78802, - [SMALL_STATE(1696)] = 78862, - [SMALL_STATE(1697)] = 78924, - [SMALL_STATE(1698)] = 78984, - [SMALL_STATE(1699)] = 79044, - [SMALL_STATE(1700)] = 79108, - [SMALL_STATE(1701)] = 79172, - [SMALL_STATE(1702)] = 79232, - [SMALL_STATE(1703)] = 79292, - [SMALL_STATE(1704)] = 79360, - [SMALL_STATE(1705)] = 79428, - [SMALL_STATE(1706)] = 79496, - [SMALL_STATE(1707)] = 79556, - [SMALL_STATE(1708)] = 79616, - [SMALL_STATE(1709)] = 79680, - [SMALL_STATE(1710)] = 79744, - [SMALL_STATE(1711)] = 79806, - [SMALL_STATE(1712)] = 79868, - [SMALL_STATE(1713)] = 79938, - [SMALL_STATE(1714)] = 80000, - [SMALL_STATE(1715)] = 80064, - [SMALL_STATE(1716)] = 80126, - [SMALL_STATE(1717)] = 80186, - [SMALL_STATE(1718)] = 80246, - [SMALL_STATE(1719)] = 80306, - [SMALL_STATE(1720)] = 80366, - [SMALL_STATE(1721)] = 80426, - [SMALL_STATE(1722)] = 80486, - [SMALL_STATE(1723)] = 80600, - [SMALL_STATE(1724)] = 80660, - [SMALL_STATE(1725)] = 80774, - [SMALL_STATE(1726)] = 80838, - [SMALL_STATE(1727)] = 80902, - [SMALL_STATE(1728)] = 80966, - [SMALL_STATE(1729)] = 81026, - [SMALL_STATE(1730)] = 81088, - [SMALL_STATE(1731)] = 81156, - [SMALL_STATE(1732)] = 81224, - [SMALL_STATE(1733)] = 81284, - [SMALL_STATE(1734)] = 81344, - [SMALL_STATE(1735)] = 81404, - [SMALL_STATE(1736)] = 81464, - [SMALL_STATE(1737)] = 81524, - [SMALL_STATE(1738)] = 81590, - [SMALL_STATE(1739)] = 81650, - [SMALL_STATE(1740)] = 81710, - [SMALL_STATE(1741)] = 81770, - [SMALL_STATE(1742)] = 81830, - [SMALL_STATE(1743)] = 81894, - [SMALL_STATE(1744)] = 81956, - [SMALL_STATE(1745)] = 82018, - [SMALL_STATE(1746)] = 82078, - [SMALL_STATE(1747)] = 82142, - [SMALL_STATE(1748)] = 82202, - [SMALL_STATE(1749)] = 82316, - [SMALL_STATE(1750)] = 82376, - [SMALL_STATE(1751)] = 82440, - [SMALL_STATE(1752)] = 82504, - [SMALL_STATE(1753)] = 82572, - [SMALL_STATE(1754)] = 82686, - [SMALL_STATE(1755)] = 82750, - [SMALL_STATE(1756)] = 82810, - [SMALL_STATE(1757)] = 82870, - [SMALL_STATE(1758)] = 82930, - [SMALL_STATE(1759)] = 82996, - [SMALL_STATE(1760)] = 83056, - [SMALL_STATE(1761)] = 83116, - [SMALL_STATE(1762)] = 83176, - [SMALL_STATE(1763)] = 83238, - [SMALL_STATE(1764)] = 83298, - [SMALL_STATE(1765)] = 83360, - [SMALL_STATE(1766)] = 83426, - [SMALL_STATE(1767)] = 83488, - [SMALL_STATE(1768)] = 83550, - [SMALL_STATE(1769)] = 83614, - [SMALL_STATE(1770)] = 83728, - [SMALL_STATE(1771)] = 83788, - [SMALL_STATE(1772)] = 83902, - [SMALL_STATE(1773)] = 83962, - [SMALL_STATE(1774)] = 84030, - [SMALL_STATE(1775)] = 84098, - [SMALL_STATE(1776)] = 84158, - [SMALL_STATE(1777)] = 84224, - [SMALL_STATE(1778)] = 84284, - [SMALL_STATE(1779)] = 84344, - [SMALL_STATE(1780)] = 84404, - [SMALL_STATE(1781)] = 84463, - [SMALL_STATE(1782)] = 84522, - [SMALL_STATE(1783)] = 84581, - [SMALL_STATE(1784)] = 84640, - [SMALL_STATE(1785)] = 84699, - [SMALL_STATE(1786)] = 84810, - [SMALL_STATE(1787)] = 84869, - [SMALL_STATE(1788)] = 84928, - [SMALL_STATE(1789)] = 84987, - [SMALL_STATE(1790)] = 85046, - [SMALL_STATE(1791)] = 85105, - [SMALL_STATE(1792)] = 85164, - [SMALL_STATE(1793)] = 85223, - [SMALL_STATE(1794)] = 85282, - [SMALL_STATE(1795)] = 85341, - [SMALL_STATE(1796)] = 85400, - [SMALL_STATE(1797)] = 85511, - [SMALL_STATE(1798)] = 85578, - [SMALL_STATE(1799)] = 85637, - [SMALL_STATE(1800)] = 85696, - [SMALL_STATE(1801)] = 85755, - [SMALL_STATE(1802)] = 85814, - [SMALL_STATE(1803)] = 85873, - [SMALL_STATE(1804)] = 85934, - [SMALL_STATE(1805)] = 85993, - [SMALL_STATE(1806)] = 86054, - [SMALL_STATE(1807)] = 86121, - [SMALL_STATE(1808)] = 86188, - [SMALL_STATE(1809)] = 86299, - [SMALL_STATE(1810)] = 86360, - [SMALL_STATE(1811)] = 86419, - [SMALL_STATE(1812)] = 86482, - [SMALL_STATE(1813)] = 86593, - [SMALL_STATE(1814)] = 86652, - [SMALL_STATE(1815)] = 86715, - [SMALL_STATE(1816)] = 86774, - [SMALL_STATE(1817)] = 86837, - [SMALL_STATE(1818)] = 86896, - [SMALL_STATE(1819)] = 86963, - [SMALL_STATE(1820)] = 87074, - [SMALL_STATE(1821)] = 87133, - [SMALL_STATE(1822)] = 87192, - [SMALL_STATE(1823)] = 87251, - [SMALL_STATE(1824)] = 87314, - [SMALL_STATE(1825)] = 87373, - [SMALL_STATE(1826)] = 87440, - [SMALL_STATE(1827)] = 87499, - [SMALL_STATE(1828)] = 87558, - [SMALL_STATE(1829)] = 87617, - [SMALL_STATE(1830)] = 87676, - [SMALL_STATE(1831)] = 87739, - [SMALL_STATE(1832)] = 87798, - [SMALL_STATE(1833)] = 87857, - [SMALL_STATE(1834)] = 87920, - [SMALL_STATE(1835)] = 87983, - [SMALL_STATE(1836)] = 88044, - [SMALL_STATE(1837)] = 88103, - [SMALL_STATE(1838)] = 88162, - [SMALL_STATE(1839)] = 88221, - [SMALL_STATE(1840)] = 88280, - [SMALL_STATE(1841)] = 88345, - [SMALL_STATE(1842)] = 88404, - [SMALL_STATE(1843)] = 88463, - [SMALL_STATE(1844)] = 88522, - [SMALL_STATE(1845)] = 88581, - [SMALL_STATE(1846)] = 88640, - [SMALL_STATE(1847)] = 88699, - [SMALL_STATE(1848)] = 88760, - [SMALL_STATE(1849)] = 88819, - [SMALL_STATE(1850)] = 88878, - [SMALL_STATE(1851)] = 88937, - [SMALL_STATE(1852)] = 88996, - [SMALL_STATE(1853)] = 89055, - [SMALL_STATE(1854)] = 89116, - [SMALL_STATE(1855)] = 89227, - [SMALL_STATE(1856)] = 89296, - [SMALL_STATE(1857)] = 89363, - [SMALL_STATE(1858)] = 89422, - [SMALL_STATE(1859)] = 89491, - [SMALL_STATE(1860)] = 89550, - [SMALL_STATE(1861)] = 89611, - [SMALL_STATE(1862)] = 89670, - [SMALL_STATE(1863)] = 89737, - [SMALL_STATE(1864)] = 89796, - [SMALL_STATE(1865)] = 89855, - [SMALL_STATE(1866)] = 89914, - [SMALL_STATE(1867)] = 89973, - [SMALL_STATE(1868)] = 90032, - [SMALL_STATE(1869)] = 90091, - [SMALL_STATE(1870)] = 90150, - [SMALL_STATE(1871)] = 90213, - [SMALL_STATE(1872)] = 90272, - [SMALL_STATE(1873)] = 90335, - [SMALL_STATE(1874)] = 90398, - [SMALL_STATE(1875)] = 90509, - [SMALL_STATE(1876)] = 90578, - [SMALL_STATE(1877)] = 90637, - [SMALL_STATE(1878)] = 90696, - [SMALL_STATE(1879)] = 90755, - [SMALL_STATE(1880)] = 90824, - [SMALL_STATE(1881)] = 90883, - [SMALL_STATE(1882)] = 90942, - [SMALL_STATE(1883)] = 91001, - [SMALL_STATE(1884)] = 91060, - [SMALL_STATE(1885)] = 91119, - [SMALL_STATE(1886)] = 91178, - [SMALL_STATE(1887)] = 91237, - [SMALL_STATE(1888)] = 91296, - [SMALL_STATE(1889)] = 91355, - [SMALL_STATE(1890)] = 91414, - [SMALL_STATE(1891)] = 91475, - [SMALL_STATE(1892)] = 91536, - [SMALL_STATE(1893)] = 91597, - [SMALL_STATE(1894)] = 91658, - [SMALL_STATE(1895)] = 91721, - [SMALL_STATE(1896)] = 91784, - [SMALL_STATE(1897)] = 91843, - [SMALL_STATE(1898)] = 91902, - [SMALL_STATE(1899)] = 91961, - [SMALL_STATE(1900)] = 92030, - [SMALL_STATE(1901)] = 92089, - [SMALL_STATE(1902)] = 92148, - [SMALL_STATE(1903)] = 92209, - [SMALL_STATE(1904)] = 92268, - [SMALL_STATE(1905)] = 92327, - [SMALL_STATE(1906)] = 92396, - [SMALL_STATE(1907)] = 92455, - [SMALL_STATE(1908)] = 92520, - [SMALL_STATE(1909)] = 92579, - [SMALL_STATE(1910)] = 92638, - [SMALL_STATE(1911)] = 92697, - [SMALL_STATE(1912)] = 92757, - [SMALL_STATE(1913)] = 92847, - [SMALL_STATE(1914)] = 92907, - [SMALL_STATE(1915)] = 92965, - [SMALL_STATE(1916)] = 93055, - [SMALL_STATE(1917)] = 93113, - [SMALL_STATE(1918)] = 93171, - [SMALL_STATE(1919)] = 93259, - [SMALL_STATE(1920)] = 93317, - [SMALL_STATE(1921)] = 93375, - [SMALL_STATE(1922)] = 93453, - [SMALL_STATE(1923)] = 93511, - [SMALL_STATE(1924)] = 93569, - [SMALL_STATE(1925)] = 93629, - [SMALL_STATE(1926)] = 93693, - [SMALL_STATE(1927)] = 93751, - [SMALL_STATE(1928)] = 93809, - [SMALL_STATE(1929)] = 93867, - [SMALL_STATE(1930)] = 93925, - [SMALL_STATE(1931)] = 93983, - [SMALL_STATE(1932)] = 94041, - [SMALL_STATE(1933)] = 94109, - [SMALL_STATE(1934)] = 94197, - [SMALL_STATE(1935)] = 94255, - [SMALL_STATE(1936)] = 94313, - [SMALL_STATE(1937)] = 94371, - [SMALL_STATE(1938)] = 94429, - [SMALL_STATE(1939)] = 94487, - [SMALL_STATE(1940)] = 94545, - [SMALL_STATE(1941)] = 94607, - [SMALL_STATE(1942)] = 94693, - [SMALL_STATE(1943)] = 94751, - [SMALL_STATE(1944)] = 94809, - [SMALL_STATE(1945)] = 94871, - [SMALL_STATE(1946)] = 94931, - [SMALL_STATE(1947)] = 94993, - [SMALL_STATE(1948)] = 95051, - [SMALL_STATE(1949)] = 95109, - [SMALL_STATE(1950)] = 95175, - [SMALL_STATE(1951)] = 95233, - [SMALL_STATE(1952)] = 95291, - [SMALL_STATE(1953)] = 95349, - [SMALL_STATE(1954)] = 95407, - [SMALL_STATE(1955)] = 95467, - [SMALL_STATE(1956)] = 95525, - [SMALL_STATE(1957)] = 95587, - [SMALL_STATE(1958)] = 95649, - [SMALL_STATE(1959)] = 95711, - [SMALL_STATE(1960)] = 95773, - [SMALL_STATE(1961)] = 95833, - [SMALL_STATE(1962)] = 95891, - [SMALL_STATE(1963)] = 95953, - [SMALL_STATE(1964)] = 96043, - [SMALL_STATE(1965)] = 96101, - [SMALL_STATE(1966)] = 96159, - [SMALL_STATE(1967)] = 96247, - [SMALL_STATE(1968)] = 96311, - [SMALL_STATE(1969)] = 96369, - [SMALL_STATE(1970)] = 96427, - [SMALL_STATE(1971)] = 96485, - [SMALL_STATE(1972)] = 96573, - [SMALL_STATE(1973)] = 96639, - [SMALL_STATE(1974)] = 96707, - [SMALL_STATE(1975)] = 96773, - [SMALL_STATE(1976)] = 96831, - [SMALL_STATE(1977)] = 96907, - [SMALL_STATE(1978)] = 96965, - [SMALL_STATE(1979)] = 97037, - [SMALL_STATE(1980)] = 97101, - [SMALL_STATE(1981)] = 97177, - [SMALL_STATE(1982)] = 97259, - [SMALL_STATE(1983)] = 97339, - [SMALL_STATE(1984)] = 97423, - [SMALL_STATE(1985)] = 97501, - [SMALL_STATE(1986)] = 97565, - [SMALL_STATE(1987)] = 97633, - [SMALL_STATE(1988)] = 97691, - [SMALL_STATE(1989)] = 97749, - [SMALL_STATE(1990)] = 97809, - [SMALL_STATE(1991)] = 97867, - [SMALL_STATE(1992)] = 97925, - [SMALL_STATE(1993)] = 97983, - [SMALL_STATE(1994)] = 98051, - [SMALL_STATE(1995)] = 98109, - [SMALL_STATE(1996)] = 98167, - [SMALL_STATE(1997)] = 98255, - [SMALL_STATE(1998)] = 98313, - [SMALL_STATE(1999)] = 98371, - [SMALL_STATE(2000)] = 98429, - [SMALL_STATE(2001)] = 98487, - [SMALL_STATE(2002)] = 98545, - [SMALL_STATE(2003)] = 98607, - [SMALL_STATE(2004)] = 98689, - [SMALL_STATE(2005)] = 98751, - [SMALL_STATE(2006)] = 98813, - [SMALL_STATE(2007)] = 98871, - [SMALL_STATE(2008)] = 98959, - [SMALL_STATE(2009)] = 99017, - [SMALL_STATE(2010)] = 99077, - [SMALL_STATE(2011)] = 99137, - [SMALL_STATE(2012)] = 99221, - [SMALL_STATE(2013)] = 99281, - [SMALL_STATE(2014)] = 99341, - [SMALL_STATE(2015)] = 99429, - [SMALL_STATE(2016)] = 99489, - [SMALL_STATE(2017)] = 99551, - [SMALL_STATE(2018)] = 99611, - [SMALL_STATE(2019)] = 99683, - [SMALL_STATE(2020)] = 99745, - [SMALL_STATE(2021)] = 99803, - [SMALL_STATE(2022)] = 99861, - [SMALL_STATE(2023)] = 99921, - [SMALL_STATE(2024)] = 99979, - [SMALL_STATE(2025)] = 100037, - [SMALL_STATE(2026)] = 100095, - [SMALL_STATE(2027)] = 100153, - [SMALL_STATE(2028)] = 100211, - [SMALL_STATE(2029)] = 100269, - [SMALL_STATE(2030)] = 100331, - [SMALL_STATE(2031)] = 100389, - [SMALL_STATE(2032)] = 100447, - [SMALL_STATE(2033)] = 100505, - [SMALL_STATE(2034)] = 100585, - [SMALL_STATE(2035)] = 100643, - [SMALL_STATE(2036)] = 100701, - [SMALL_STATE(2037)] = 100763, - [SMALL_STATE(2038)] = 100821, - [SMALL_STATE(2039)] = 100879, - [SMALL_STATE(2040)] = 100937, - [SMALL_STATE(2041)] = 100995, - [SMALL_STATE(2042)] = 101057, - [SMALL_STATE(2043)] = 101115, - [SMALL_STATE(2044)] = 101173, - [SMALL_STATE(2045)] = 101235, - [SMALL_STATE(2046)] = 101297, - [SMALL_STATE(2047)] = 101355, - [SMALL_STATE(2048)] = 101413, - [SMALL_STATE(2049)] = 101471, - [SMALL_STATE(2050)] = 101529, - [SMALL_STATE(2051)] = 101587, - [SMALL_STATE(2052)] = 101649, - [SMALL_STATE(2053)] = 101711, - [SMALL_STATE(2054)] = 101771, - [SMALL_STATE(2055)] = 101831, - [SMALL_STATE(2056)] = 101891, - [SMALL_STATE(2057)] = 101951, - [SMALL_STATE(2058)] = 102011, - [SMALL_STATE(2059)] = 102071, - [SMALL_STATE(2060)] = 102131, - [SMALL_STATE(2061)] = 102191, - [SMALL_STATE(2062)] = 102249, - [SMALL_STATE(2063)] = 102307, - [SMALL_STATE(2064)] = 102369, - [SMALL_STATE(2065)] = 102431, - [SMALL_STATE(2066)] = 102491, - [SMALL_STATE(2067)] = 102549, - [SMALL_STATE(2068)] = 102621, - [SMALL_STATE(2069)] = 102685, - [SMALL_STATE(2070)] = 102761, - [SMALL_STATE(2071)] = 102843, - [SMALL_STATE(2072)] = 102933, - [SMALL_STATE(2073)] = 103023, - [SMALL_STATE(2074)] = 103103, - [SMALL_STATE(2075)] = 103193, - [SMALL_STATE(2076)] = 103261, - [SMALL_STATE(2077)] = 103351, - [SMALL_STATE(2078)] = 103435, - [SMALL_STATE(2079)] = 103493, - [SMALL_STATE(2080)] = 103557, - [SMALL_STATE(2081)] = 103615, - [SMALL_STATE(2082)] = 103673, - [SMALL_STATE(2083)] = 103731, - [SMALL_STATE(2084)] = 103821, - [SMALL_STATE(2085)] = 103881, - [SMALL_STATE(2086)] = 103939, - [SMALL_STATE(2087)] = 104027, - [SMALL_STATE(2088)] = 104105, - [SMALL_STATE(2089)] = 104169, - [SMALL_STATE(2090)] = 104237, - [SMALL_STATE(2091)] = 104305, - [SMALL_STATE(2092)] = 104363, - [SMALL_STATE(2093)] = 104421, - [SMALL_STATE(2094)] = 104479, - [SMALL_STATE(2095)] = 104543, - [SMALL_STATE(2096)] = 104601, - [SMALL_STATE(2097)] = 104659, - [SMALL_STATE(2098)] = 104725, - [SMALL_STATE(2099)] = 104815, - [SMALL_STATE(2100)] = 104905, - [SMALL_STATE(2101)] = 104965, - [SMALL_STATE(2102)] = 105024, - [SMALL_STATE(2103)] = 105081, - [SMALL_STATE(2104)] = 105168, - [SMALL_STATE(2105)] = 105255, - [SMALL_STATE(2106)] = 105312, - [SMALL_STATE(2107)] = 105369, - [SMALL_STATE(2108)] = 105426, - [SMALL_STATE(2109)] = 105483, - [SMALL_STATE(2110)] = 105540, - [SMALL_STATE(2111)] = 105597, - [SMALL_STATE(2112)] = 105654, - [SMALL_STATE(2113)] = 105741, - [SMALL_STATE(2114)] = 105798, - [SMALL_STATE(2115)] = 105855, - [SMALL_STATE(2116)] = 105912, - [SMALL_STATE(2117)] = 105983, - [SMALL_STATE(2118)] = 106046, - [SMALL_STATE(2119)] = 106121, - [SMALL_STATE(2120)] = 106178, - [SMALL_STATE(2121)] = 106259, - [SMALL_STATE(2122)] = 106338, - [SMALL_STATE(2123)] = 106421, - [SMALL_STATE(2124)] = 106498, - [SMALL_STATE(2125)] = 106561, - [SMALL_STATE(2126)] = 106628, - [SMALL_STATE(2127)] = 106699, - [SMALL_STATE(2128)] = 106762, - [SMALL_STATE(2129)] = 106837, - [SMALL_STATE(2130)] = 106918, - [SMALL_STATE(2131)] = 106997, - [SMALL_STATE(2132)] = 107080, - [SMALL_STATE(2133)] = 107141, - [SMALL_STATE(2134)] = 107218, - [SMALL_STATE(2135)] = 107279, - [SMALL_STATE(2136)] = 107338, - [SMALL_STATE(2137)] = 107401, - [SMALL_STATE(2138)] = 107468, - [SMALL_STATE(2139)] = 107525, - [SMALL_STATE(2140)] = 107612, - [SMALL_STATE(2141)] = 107673, - [SMALL_STATE(2142)] = 107730, - [SMALL_STATE(2143)] = 107787, - [SMALL_STATE(2144)] = 107874, - [SMALL_STATE(2145)] = 107961, - [SMALL_STATE(2146)] = 108018, - [SMALL_STATE(2147)] = 108107, - [SMALL_STATE(2148)] = 108164, - [SMALL_STATE(2149)] = 108225, - [SMALL_STATE(2150)] = 108282, - [SMALL_STATE(2151)] = 108339, - [SMALL_STATE(2152)] = 108396, - [SMALL_STATE(2153)] = 108481, - [SMALL_STATE(2154)] = 108538, - [SMALL_STATE(2155)] = 108625, - [SMALL_STATE(2156)] = 108712, - [SMALL_STATE(2157)] = 108769, - [SMALL_STATE(2158)] = 108828, - [SMALL_STATE(2159)] = 108885, - [SMALL_STATE(2160)] = 108946, - [SMALL_STATE(2161)] = 109035, - [SMALL_STATE(2162)] = 109122, - [SMALL_STATE(2163)] = 109181, - [SMALL_STATE(2164)] = 109238, - [SMALL_STATE(2165)] = 109295, - [SMALL_STATE(2166)] = 109352, - [SMALL_STATE(2167)] = 109409, - [SMALL_STATE(2168)] = 109466, - [SMALL_STATE(2169)] = 109523, - [SMALL_STATE(2170)] = 109580, - [SMALL_STATE(2171)] = 109637, - [SMALL_STATE(2172)] = 109702, - [SMALL_STATE(2173)] = 109759, - [SMALL_STATE(2174)] = 109816, - [SMALL_STATE(2175)] = 109873, - [SMALL_STATE(2176)] = 109930, - [SMALL_STATE(2177)] = 109987, - [SMALL_STATE(2178)] = 110044, - [SMALL_STATE(2179)] = 110101, - [SMALL_STATE(2180)] = 110158, - [SMALL_STATE(2181)] = 110215, - [SMALL_STATE(2182)] = 110274, - [SMALL_STATE(2183)] = 110335, - [SMALL_STATE(2184)] = 110400, - [SMALL_STATE(2185)] = 110457, - [SMALL_STATE(2186)] = 110514, - [SMALL_STATE(2187)] = 110571, - [SMALL_STATE(2188)] = 110628, - [SMALL_STATE(2189)] = 110685, - [SMALL_STATE(2190)] = 110742, - [SMALL_STATE(2191)] = 110799, - [SMALL_STATE(2192)] = 110856, - [SMALL_STATE(2193)] = 110913, - [SMALL_STATE(2194)] = 110970, - [SMALL_STATE(2195)] = 111059, - [SMALL_STATE(2196)] = 111116, - [SMALL_STATE(2197)] = 111175, - [SMALL_STATE(2198)] = 111232, - [SMALL_STATE(2199)] = 111295, - [SMALL_STATE(2200)] = 111370, - [SMALL_STATE(2201)] = 111451, - [SMALL_STATE(2202)] = 111530, - [SMALL_STATE(2203)] = 111613, - [SMALL_STATE(2204)] = 111690, - [SMALL_STATE(2205)] = 111753, - [SMALL_STATE(2206)] = 111820, - [SMALL_STATE(2207)] = 111909, - [SMALL_STATE(2208)] = 111966, - [SMALL_STATE(2209)] = 112023, - [SMALL_STATE(2210)] = 112080, - [SMALL_STATE(2211)] = 112167, - [SMALL_STATE(2212)] = 112224, - [SMALL_STATE(2213)] = 112281, - [SMALL_STATE(2214)] = 112338, - [SMALL_STATE(2215)] = 112425, - [SMALL_STATE(2216)] = 112496, - [SMALL_STATE(2217)] = 112559, - [SMALL_STATE(2218)] = 112634, - [SMALL_STATE(2219)] = 112715, - [SMALL_STATE(2220)] = 112794, - [SMALL_STATE(2221)] = 112877, - [SMALL_STATE(2222)] = 112954, - [SMALL_STATE(2223)] = 113017, - [SMALL_STATE(2224)] = 113084, - [SMALL_STATE(2225)] = 113141, - [SMALL_STATE(2226)] = 113198, - [SMALL_STATE(2227)] = 113257, - [SMALL_STATE(2228)] = 113314, - [SMALL_STATE(2229)] = 113371, - [SMALL_STATE(2230)] = 113428, - [SMALL_STATE(2231)] = 113491, - [SMALL_STATE(2232)] = 113550, - [SMALL_STATE(2233)] = 113609, - [SMALL_STATE(2234)] = 113668, - [SMALL_STATE(2235)] = 113727, - [SMALL_STATE(2236)] = 113816, - [SMALL_STATE(2237)] = 113903, - [SMALL_STATE(2238)] = 113964, - [SMALL_STATE(2239)] = 114025, - [SMALL_STATE(2240)] = 114086, - [SMALL_STATE(2241)] = 114145, - [SMALL_STATE(2242)] = 114202, - [SMALL_STATE(2243)] = 114263, - [SMALL_STATE(2244)] = 114320, - [SMALL_STATE(2245)] = 114377, - [SMALL_STATE(2246)] = 114434, - [SMALL_STATE(2247)] = 114491, - [SMALL_STATE(2248)] = 114580, - [SMALL_STATE(2249)] = 114669, - [SMALL_STATE(2250)] = 114726, - [SMALL_STATE(2251)] = 114815, - [SMALL_STATE(2252)] = 114872, - [SMALL_STATE(2253)] = 114933, - [SMALL_STATE(2254)] = 114994, - [SMALL_STATE(2255)] = 115055, - [SMALL_STATE(2256)] = 115114, - [SMALL_STATE(2257)] = 115203, - [SMALL_STATE(2258)] = 115292, - [SMALL_STATE(2259)] = 115353, - [SMALL_STATE(2260)] = 115414, - [SMALL_STATE(2261)] = 115471, - [SMALL_STATE(2262)] = 115528, - [SMALL_STATE(2263)] = 115587, - [SMALL_STATE(2264)] = 115646, - [SMALL_STATE(2265)] = 115707, - [SMALL_STATE(2266)] = 115774, - [SMALL_STATE(2267)] = 115831, - [SMALL_STATE(2268)] = 115888, - [SMALL_STATE(2269)] = 115947, - [SMALL_STATE(2270)] = 116004, - [SMALL_STATE(2271)] = 116061, - [SMALL_STATE(2272)] = 116118, - [SMALL_STATE(2273)] = 116179, - [SMALL_STATE(2274)] = 116236, - [SMALL_STATE(2275)] = 116293, - [SMALL_STATE(2276)] = 116352, - [SMALL_STATE(2277)] = 116437, - [SMALL_STATE(2278)] = 116496, - [SMALL_STATE(2279)] = 116553, - [SMALL_STATE(2280)] = 116612, - [SMALL_STATE(2281)] = 116671, - [SMALL_STATE(2282)] = 116730, - [SMALL_STATE(2283)] = 116787, - [SMALL_STATE(2284)] = 116858, - [SMALL_STATE(2285)] = 116916, - [SMALL_STATE(2286)] = 117018, - [SMALL_STATE(2287)] = 117120, - [SMALL_STATE(2288)] = 117180, - [SMALL_STATE(2289)] = 117282, - [SMALL_STATE(2290)] = 117384, - [SMALL_STATE(2291)] = 117486, - [SMALL_STATE(2292)] = 117588, - [SMALL_STATE(2293)] = 117690, - [SMALL_STATE(2294)] = 117792, - [SMALL_STATE(2295)] = 117894, - [SMALL_STATE(2296)] = 117952, - [SMALL_STATE(2297)] = 118054, - [SMALL_STATE(2298)] = 118156, - [SMALL_STATE(2299)] = 118258, - [SMALL_STATE(2300)] = 118360, - [SMALL_STATE(2301)] = 118462, - [SMALL_STATE(2302)] = 118522, - [SMALL_STATE(2303)] = 118624, - [SMALL_STATE(2304)] = 118726, - [SMALL_STATE(2305)] = 118828, - [SMALL_STATE(2306)] = 118930, - [SMALL_STATE(2307)] = 119032, - [SMALL_STATE(2308)] = 119134, - [SMALL_STATE(2309)] = 119236, - [SMALL_STATE(2310)] = 119338, - [SMALL_STATE(2311)] = 119440, - [SMALL_STATE(2312)] = 119542, - [SMALL_STATE(2313)] = 119644, - [SMALL_STATE(2314)] = 119746, - [SMALL_STATE(2315)] = 119848, - [SMALL_STATE(2316)] = 119950, - [SMALL_STATE(2317)] = 120052, - [SMALL_STATE(2318)] = 120140, - [SMALL_STATE(2319)] = 120242, - [SMALL_STATE(2320)] = 120344, - [SMALL_STATE(2321)] = 120446, - [SMALL_STATE(2322)] = 120548, - [SMALL_STATE(2323)] = 120650, - [SMALL_STATE(2324)] = 120752, - [SMALL_STATE(2325)] = 120854, - [SMALL_STATE(2326)] = 120956, - [SMALL_STATE(2327)] = 121020, - [SMALL_STATE(2328)] = 121122, - [SMALL_STATE(2329)] = 121224, - [SMALL_STATE(2330)] = 121312, - [SMALL_STATE(2331)] = 121414, - [SMALL_STATE(2332)] = 121516, - [SMALL_STATE(2333)] = 121618, - [SMALL_STATE(2334)] = 121720, - [SMALL_STATE(2335)] = 121822, - [SMALL_STATE(2336)] = 121924, - [SMALL_STATE(2337)] = 122026, - [SMALL_STATE(2338)] = 122128, - [SMALL_STATE(2339)] = 122230, - [SMALL_STATE(2340)] = 122332, - [SMALL_STATE(2341)] = 122434, - [SMALL_STATE(2342)] = 122536, - [SMALL_STATE(2343)] = 122638, - [SMALL_STATE(2344)] = 122698, - [SMALL_STATE(2345)] = 122758, - [SMALL_STATE(2346)] = 122816, - [SMALL_STATE(2347)] = 122874, - [SMALL_STATE(2348)] = 122932, - [SMALL_STATE(2349)] = 122990, - [SMALL_STATE(2350)] = 123092, - [SMALL_STATE(2351)] = 123194, - [SMALL_STATE(2352)] = 123296, - [SMALL_STATE(2353)] = 123398, - [SMALL_STATE(2354)] = 123500, - [SMALL_STATE(2355)] = 123560, - [SMALL_STATE(2356)] = 123620, - [SMALL_STATE(2357)] = 123722, - [SMALL_STATE(2358)] = 123824, - [SMALL_STATE(2359)] = 123926, - [SMALL_STATE(2360)] = 124028, - [SMALL_STATE(2361)] = 124088, - [SMALL_STATE(2362)] = 124148, - [SMALL_STATE(2363)] = 124206, - [SMALL_STATE(2364)] = 124264, - [SMALL_STATE(2365)] = 124322, - [SMALL_STATE(2366)] = 124424, - [SMALL_STATE(2367)] = 124512, - [SMALL_STATE(2368)] = 124572, - [SMALL_STATE(2369)] = 124674, - [SMALL_STATE(2370)] = 124732, - [SMALL_STATE(2371)] = 124790, - [SMALL_STATE(2372)] = 124892, - [SMALL_STATE(2373)] = 124980, - [SMALL_STATE(2374)] = 125082, - [SMALL_STATE(2375)] = 125140, - [SMALL_STATE(2376)] = 125198, - [SMALL_STATE(2377)] = 125300, - [SMALL_STATE(2378)] = 125402, - [SMALL_STATE(2379)] = 125504, - [SMALL_STATE(2380)] = 125606, - [SMALL_STATE(2381)] = 125708, - [SMALL_STATE(2382)] = 125810, - [SMALL_STATE(2383)] = 125912, - [SMALL_STATE(2384)] = 126014, - [SMALL_STATE(2385)] = 126116, - [SMALL_STATE(2386)] = 126218, - [SMALL_STATE(2387)] = 126320, - [SMALL_STATE(2388)] = 126422, - [SMALL_STATE(2389)] = 126524, - [SMALL_STATE(2390)] = 126582, - [SMALL_STATE(2391)] = 126640, - [SMALL_STATE(2392)] = 126742, - [SMALL_STATE(2393)] = 126844, - [SMALL_STATE(2394)] = 126908, - [SMALL_STATE(2395)] = 126968, - [SMALL_STATE(2396)] = 127028, - [SMALL_STATE(2397)] = 127086, - [SMALL_STATE(2398)] = 127188, - [SMALL_STATE(2399)] = 127248, - [SMALL_STATE(2400)] = 127308, - [SMALL_STATE(2401)] = 127368, - [SMALL_STATE(2402)] = 127470, - [SMALL_STATE(2403)] = 127572, - [SMALL_STATE(2404)] = 127674, - [SMALL_STATE(2405)] = 127744, - [SMALL_STATE(2406)] = 127804, - [SMALL_STATE(2407)] = 127906, - [SMALL_STATE(2408)] = 127968, - [SMALL_STATE(2409)] = 128042, - [SMALL_STATE(2410)] = 128122, - [SMALL_STATE(2411)] = 128200, - [SMALL_STATE(2412)] = 128282, - [SMALL_STATE(2413)] = 128358, - [SMALL_STATE(2414)] = 128420, - [SMALL_STATE(2415)] = 128486, - [SMALL_STATE(2416)] = 128552, - [SMALL_STATE(2417)] = 128640, - [SMALL_STATE(2418)] = 128706, - [SMALL_STATE(2419)] = 128808, - [SMALL_STATE(2420)] = 128866, - [SMALL_STATE(2421)] = 128968, - [SMALL_STATE(2422)] = 129070, - [SMALL_STATE(2423)] = 129172, - [SMALL_STATE(2424)] = 129258, - [SMALL_STATE(2425)] = 129360, - [SMALL_STATE(2426)] = 129462, - [SMALL_STATE(2427)] = 129564, - [SMALL_STATE(2428)] = 129666, - [SMALL_STATE(2429)] = 129768, - [SMALL_STATE(2430)] = 129826, - [SMALL_STATE(2431)] = 129884, - [SMALL_STATE(2432)] = 129986, - [SMALL_STATE(2433)] = 130088, - [SMALL_STATE(2434)] = 130190, - [SMALL_STATE(2435)] = 130292, - [SMALL_STATE(2436)] = 130394, - [SMALL_STATE(2437)] = 130454, - [SMALL_STATE(2438)] = 130527, - [SMALL_STATE(2439)] = 130602, - [SMALL_STATE(2440)] = 130661, - [SMALL_STATE(2441)] = 130722, - [SMALL_STATE(2442)] = 130783, - [SMALL_STATE(2443)] = 130868, - [SMALL_STATE(2444)] = 130933, - [SMALL_STATE(2445)] = 131018, - [SMALL_STATE(2446)] = 131103, - [SMALL_STATE(2447)] = 131180, - [SMALL_STATE(2448)] = 131239, - [SMALL_STATE(2449)] = 131296, - [SMALL_STATE(2450)] = 131379, - [SMALL_STATE(2451)] = 131436, - [SMALL_STATE(2452)] = 131495, - [SMALL_STATE(2453)] = 131556, - [SMALL_STATE(2454)] = 131621, - [SMALL_STATE(2455)] = 131706, - [SMALL_STATE(2456)] = 131787, - [SMALL_STATE(2457)] = 131872, - [SMALL_STATE(2458)] = 131931, - [SMALL_STATE(2459)] = 131990, - [SMALL_STATE(2460)] = 132047, - [SMALL_STATE(2461)] = 132126, - [SMALL_STATE(2462)] = 132195, - [SMALL_STATE(2463)] = 132252, - [SMALL_STATE(2464)] = 132309, - [SMALL_STATE(2465)] = 132392, - [SMALL_STATE(2466)] = 132449, - [SMALL_STATE(2467)] = 132510, - [SMALL_STATE(2468)] = 132567, - [SMALL_STATE(2469)] = 132624, - [SMALL_STATE(2470)] = 132681, - [SMALL_STATE(2471)] = 132738, - [SMALL_STATE(2472)] = 132815, - [SMALL_STATE(2473)] = 132874, - [SMALL_STATE(2474)] = 132933, - [SMALL_STATE(2475)] = 132992, - [SMALL_STATE(2476)] = 133057, - [SMALL_STATE(2477)] = 133114, - [SMALL_STATE(2478)] = 133171, - [SMALL_STATE(2479)] = 133256, - [SMALL_STATE(2480)] = 133313, - [SMALL_STATE(2481)] = 133372, - [SMALL_STATE(2482)] = 133431, - [SMALL_STATE(2483)] = 133494, - [SMALL_STATE(2484)] = 133579, - [SMALL_STATE(2485)] = 133664, - [SMALL_STATE(2486)] = 133723, - [SMALL_STATE(2487)] = 133808, - [SMALL_STATE(2488)] = 133893, - [SMALL_STATE(2489)] = 133966, - [SMALL_STATE(2490)] = 134041, - [SMALL_STATE(2491)] = 134120, - [SMALL_STATE(2492)] = 134189, - [SMALL_STATE(2493)] = 134270, - [SMALL_STATE(2494)] = 134335, - [SMALL_STATE(2495)] = 134392, - [SMALL_STATE(2496)] = 134451, - [SMALL_STATE(2497)] = 134511, - [SMALL_STATE(2498)] = 134567, - [SMALL_STATE(2499)] = 134623, - [SMALL_STATE(2500)] = 134679, - [SMALL_STATE(2501)] = 134735, - [SMALL_STATE(2502)] = 134793, - [SMALL_STATE(2503)] = 134873, - [SMALL_STATE(2504)] = 134941, - [SMALL_STATE(2505)] = 135017, - [SMALL_STATE(2506)] = 135075, - [SMALL_STATE(2507)] = 135133, - [SMALL_STATE(2508)] = 135193, - [SMALL_STATE(2509)] = 135269, - [SMALL_STATE(2510)] = 135353, - [SMALL_STATE(2511)] = 135425, - [SMALL_STATE(2512)] = 135483, - [SMALL_STATE(2513)] = 135567, - [SMALL_STATE(2514)] = 135631, - [SMALL_STATE(2515)] = 135687, - [SMALL_STATE(2516)] = 135745, - [SMALL_STATE(2517)] = 135829, - [SMALL_STATE(2518)] = 135885, - [SMALL_STATE(2519)] = 135965, - [SMALL_STATE(2520)] = 136039, - [SMALL_STATE(2521)] = 136123, - [SMALL_STATE(2522)] = 136207, - [SMALL_STATE(2523)] = 136291, - [SMALL_STATE(2524)] = 136375, - [SMALL_STATE(2525)] = 136459, - [SMALL_STATE(2526)] = 136513, - [SMALL_STATE(2527)] = 136573, - [SMALL_STATE(2528)] = 136647, - [SMALL_STATE(2529)] = 136729, - [SMALL_STATE(2530)] = 136793, - [SMALL_STATE(2531)] = 136849, - [SMALL_STATE(2532)] = 136933, - [SMALL_STATE(2533)] = 137015, - [SMALL_STATE(2534)] = 137099, - [SMALL_STATE(2535)] = 137177, - [SMALL_STATE(2536)] = 137245, - [SMALL_STATE(2537)] = 137305, - [SMALL_STATE(2538)] = 137377, - [SMALL_STATE(2539)] = 137455, - [SMALL_STATE(2540)] = 137513, - [SMALL_STATE(2541)] = 137596, - [SMALL_STATE(2542)] = 137653, - [SMALL_STATE(2543)] = 137710, - [SMALL_STATE(2544)] = 137765, - [SMALL_STATE(2545)] = 137848, - [SMALL_STATE(2546)] = 137939, - [SMALL_STATE(2547)] = 137994, - [SMALL_STATE(2548)] = 138049, - [SMALL_STATE(2549)] = 138104, - [SMALL_STATE(2550)] = 138179, - [SMALL_STATE(2551)] = 138258, - [SMALL_STATE(2552)] = 138329, - [SMALL_STATE(2553)] = 138384, - [SMALL_STATE(2554)] = 138475, - [SMALL_STATE(2555)] = 138548, - [SMALL_STATE(2556)] = 138615, - [SMALL_STATE(2557)] = 138694, - [SMALL_STATE(2558)] = 138751, - [SMALL_STATE(2559)] = 138834, - [SMALL_STATE(2560)] = 138897, - [SMALL_STATE(2561)] = 138984, - [SMALL_STATE(2562)] = 139075, - [SMALL_STATE(2563)] = 139132, - [SMALL_STATE(2564)] = 139217, - [SMALL_STATE(2565)] = 139274, - [SMALL_STATE(2566)] = 139365, - [SMALL_STATE(2567)] = 139452, - [SMALL_STATE(2568)] = 139525, - [SMALL_STATE(2569)] = 139584, - [SMALL_STATE(2570)] = 139641, - [SMALL_STATE(2571)] = 139696, - [SMALL_STATE(2572)] = 139751, - [SMALL_STATE(2573)] = 139806, - [SMALL_STATE(2574)] = 139865, - [SMALL_STATE(2575)] = 139950, - [SMALL_STATE(2576)] = 140013, - [SMALL_STATE(2577)] = 140090, - [SMALL_STATE(2578)] = 140145, - [SMALL_STATE(2579)] = 140232, - [SMALL_STATE(2580)] = 140315, - [SMALL_STATE(2581)] = 140382, - [SMALL_STATE(2582)] = 140457, - [SMALL_STATE(2583)] = 140514, - [SMALL_STATE(2584)] = 140573, - [SMALL_STATE(2585)] = 140628, - [SMALL_STATE(2586)] = 140695, - [SMALL_STATE(2587)] = 140754, - [SMALL_STATE(2588)] = 140835, - [SMALL_STATE(2589)] = 140892, - [SMALL_STATE(2590)] = 140975, - [SMALL_STATE(2591)] = 141032, - [SMALL_STATE(2592)] = 141123, - [SMALL_STATE(2593)] = 141194, - [SMALL_STATE(2594)] = 141271, - [SMALL_STATE(2595)] = 141356, - [SMALL_STATE(2596)] = 141447, - [SMALL_STATE(2597)] = 141529, - [SMALL_STATE(2598)] = 141587, - [SMALL_STATE(2599)] = 141657, - [SMALL_STATE(2600)] = 141745, - [SMALL_STATE(2601)] = 141821, - [SMALL_STATE(2602)] = 141895, - [SMALL_STATE(2603)] = 141973, - [SMALL_STATE(2604)] = 142039, - [SMALL_STATE(2605)] = 142097, - [SMALL_STATE(2606)] = 142159, - [SMALL_STATE(2607)] = 142247, - [SMALL_STATE(2608)] = 142331, - [SMALL_STATE(2609)] = 142413, - [SMALL_STATE(2610)] = 142479, - [SMALL_STATE(2611)] = 142537, - [SMALL_STATE(2612)] = 142607, - [SMALL_STATE(2613)] = 142683, - [SMALL_STATE(2614)] = 142757, - [SMALL_STATE(2615)] = 142841, - [SMALL_STATE(2616)] = 142919, - [SMALL_STATE(2617)] = 142991, - [SMALL_STATE(2618)] = 143049, - [SMALL_STATE(2619)] = 143111, - [SMALL_STATE(2620)] = 143167, - [SMALL_STATE(2621)] = 143223, - [SMALL_STATE(2622)] = 143277, - [SMALL_STATE(2623)] = 143359, - [SMALL_STATE(2624)] = 143413, - [SMALL_STATE(2625)] = 143467, - [SMALL_STATE(2626)] = 143547, - [SMALL_STATE(2627)] = 143631, - [SMALL_STATE(2628)] = 143685, - [SMALL_STATE(2629)] = 143739, - [SMALL_STATE(2630)] = 143829, - [SMALL_STATE(2631)] = 143911, - [SMALL_STATE(2632)] = 143999, - [SMALL_STATE(2633)] = 144087, - [SMALL_STATE(2634)] = 144153, - [SMALL_STATE(2635)] = 144241, - [SMALL_STATE(2636)] = 144299, - [SMALL_STATE(2637)] = 144369, - [SMALL_STATE(2638)] = 144445, - [SMALL_STATE(2639)] = 144519, - [SMALL_STATE(2640)] = 144597, - [SMALL_STATE(2641)] = 144669, - [SMALL_STATE(2642)] = 144735, - [SMALL_STATE(2643)] = 144793, - [SMALL_STATE(2644)] = 144863, - [SMALL_STATE(2645)] = 144939, - [SMALL_STATE(2646)] = 145013, - [SMALL_STATE(2647)] = 145091, - [SMALL_STATE(2648)] = 145163, - [SMALL_STATE(2649)] = 145221, - [SMALL_STATE(2650)] = 145283, - [SMALL_STATE(2651)] = 145339, - [SMALL_STATE(2652)] = 145395, - [SMALL_STATE(2653)] = 145453, - [SMALL_STATE(2654)] = 145515, - [SMALL_STATE(2655)] = 145603, - [SMALL_STATE(2656)] = 145683, - [SMALL_STATE(2657)] = 145771, - [SMALL_STATE(2658)] = 145859, - [SMALL_STATE(2659)] = 145947, - [SMALL_STATE(2660)] = 146029, - [SMALL_STATE(2661)] = 146115, - [SMALL_STATE(2662)] = 146203, - [SMALL_STATE(2663)] = 146291, - [SMALL_STATE(2664)] = 146363, - [SMALL_STATE(2665)] = 146448, - [SMALL_STATE(2666)] = 146505, - [SMALL_STATE(2667)] = 146588, - [SMALL_STATE(2668)] = 146653, - [SMALL_STATE(2669)] = 146728, - [SMALL_STATE(2670)] = 146801, - [SMALL_STATE(2671)] = 146878, - [SMALL_STATE(2672)] = 146949, - [SMALL_STATE(2673)] = 147006, - [SMALL_STATE(2674)] = 147067, - [SMALL_STATE(2675)] = 147150, - [SMALL_STATE(2676)] = 147235, - [SMALL_STATE(2677)] = 147320, - [SMALL_STATE(2678)] = 147405, - [SMALL_STATE(2679)] = 147490, - [SMALL_STATE(2680)] = 147575, - [SMALL_STATE(2681)] = 147660, - [SMALL_STATE(2682)] = 147741, - [SMALL_STATE(2683)] = 147822, - [SMALL_STATE(2684)] = 147907, - [SMALL_STATE(2685)] = 147992, - [SMALL_STATE(2686)] = 148077, - [SMALL_STATE(2687)] = 148162, - [SMALL_STATE(2688)] = 148247, - [SMALL_STATE(2689)] = 148332, - [SMALL_STATE(2690)] = 148401, - [SMALL_STATE(2691)] = 148481, - [SMALL_STATE(2692)] = 148563, - [SMALL_STATE(2693)] = 148631, - [SMALL_STATE(2694)] = 148711, - [SMALL_STATE(2695)] = 148793, - [SMALL_STATE(2696)] = 148873, - [SMALL_STATE(2697)] = 148947, - [SMALL_STATE(2698)] = 149019, - [SMALL_STATE(2699)] = 149101, - [SMALL_STATE(2700)] = 149183, - [SMALL_STATE(2701)] = 149265, - [SMALL_STATE(2702)] = 149347, - [SMALL_STATE(2703)] = 149427, - [SMALL_STATE(2704)] = 149509, - [SMALL_STATE(2705)] = 149585, - [SMALL_STATE(2706)] = 149645, - [SMALL_STATE(2707)] = 149727, - [SMALL_STATE(2708)] = 149807, - [SMALL_STATE(2709)] = 149889, - [SMALL_STATE(2710)] = 149969, - [SMALL_STATE(2711)] = 150047, - [SMALL_STATE(2712)] = 150129, - [SMALL_STATE(2713)] = 150209, - [SMALL_STATE(2714)] = 150289, - [SMALL_STATE(2715)] = 150359, - [SMALL_STATE(2716)] = 150439, - [SMALL_STATE(2717)] = 150521, - [SMALL_STATE(2718)] = 150585, - [SMALL_STATE(2719)] = 150641, - [SMALL_STATE(2720)] = 150697, - [SMALL_STATE(2721)] = 150765, - [SMALL_STATE(2722)] = 150839, - [SMALL_STATE(2723)] = 150911, - [SMALL_STATE(2724)] = 150987, - [SMALL_STATE(2725)] = 151069, - [SMALL_STATE(2726)] = 151139, - [SMALL_STATE(2727)] = 151195, - [SMALL_STATE(2728)] = 151255, - [SMALL_STATE(2729)] = 151337, - [SMALL_STATE(2730)] = 151419, - [SMALL_STATE(2731)] = 151501, - [SMALL_STATE(2732)] = 151581, - [SMALL_STATE(2733)] = 151661, - [SMALL_STATE(2734)] = 151717, - [SMALL_STATE(2735)] = 151797, - [SMALL_STATE(2736)] = 151879, - [SMALL_STATE(2737)] = 151961, - [SMALL_STATE(2738)] = 152041, - [SMALL_STATE(2739)] = 152119, - [SMALL_STATE(2740)] = 152201, - [SMALL_STATE(2741)] = 152283, - [SMALL_STATE(2742)] = 152363, - [SMALL_STATE(2743)] = 152443, - [SMALL_STATE(2744)] = 152525, - [SMALL_STATE(2745)] = 152607, - [SMALL_STATE(2746)] = 152689, - [SMALL_STATE(2747)] = 152753, - [SMALL_STATE(2748)] = 152832, - [SMALL_STATE(2749)] = 152911, - [SMALL_STATE(2750)] = 152990, - [SMALL_STATE(2751)] = 153069, - [SMALL_STATE(2752)] = 153148, - [SMALL_STATE(2753)] = 153227, - [SMALL_STATE(2754)] = 153306, - [SMALL_STATE(2755)] = 153369, - [SMALL_STATE(2756)] = 153424, - [SMALL_STATE(2757)] = 153503, - [SMALL_STATE(2758)] = 153570, - [SMALL_STATE(2759)] = 153643, - [SMALL_STATE(2760)] = 153714, - [SMALL_STATE(2761)] = 153789, - [SMALL_STATE(2762)] = 153858, - [SMALL_STATE(2763)] = 153913, - [SMALL_STATE(2764)] = 153972, - [SMALL_STATE(2765)] = 154051, - [SMALL_STATE(2766)] = 154130, - [SMALL_STATE(2767)] = 154209, - [SMALL_STATE(2768)] = 154288, - [SMALL_STATE(2769)] = 154367, - [SMALL_STATE(2770)] = 154430, - [SMALL_STATE(2771)] = 154485, - [SMALL_STATE(2772)] = 154564, - [SMALL_STATE(2773)] = 154643, - [SMALL_STATE(2774)] = 154710, - [SMALL_STATE(2775)] = 154783, - [SMALL_STATE(2776)] = 154854, - [SMALL_STATE(2777)] = 154929, - [SMALL_STATE(2778)] = 154998, - [SMALL_STATE(2779)] = 155053, - [SMALL_STATE(2780)] = 155112, - [SMALL_STATE(2781)] = 155191, - [SMALL_STATE(2782)] = 155268, - [SMALL_STATE(2783)] = 155347, - [SMALL_STATE(2784)] = 155426, - [SMALL_STATE(2785)] = 155505, - [SMALL_STATE(2786)] = 155584, - [SMALL_STATE(2787)] = 155663, - [SMALL_STATE(2788)] = 155742, - [SMALL_STATE(2789)] = 155821, - [SMALL_STATE(2790)] = 155900, - [SMALL_STATE(2791)] = 155979, - [SMALL_STATE(2792)] = 156058, - [SMALL_STATE(2793)] = 156107, - [SMALL_STATE(2794)] = 156186, - [SMALL_STATE(2795)] = 156265, - [SMALL_STATE(2796)] = 156344, - [SMALL_STATE(2797)] = 156393, - [SMALL_STATE(2798)] = 156472, - [SMALL_STATE(2799)] = 156551, - [SMALL_STATE(2800)] = 156630, - [SMALL_STATE(2801)] = 156709, - [SMALL_STATE(2802)] = 156788, - [SMALL_STATE(2803)] = 156845, - [SMALL_STATE(2804)] = 156922, - [SMALL_STATE(2805)] = 157001, - [SMALL_STATE(2806)] = 157080, - [SMALL_STATE(2807)] = 157159, - [SMALL_STATE(2808)] = 157238, - [SMALL_STATE(2809)] = 157317, - [SMALL_STATE(2810)] = 157396, - [SMALL_STATE(2811)] = 157475, - [SMALL_STATE(2812)] = 157554, - [SMALL_STATE(2813)] = 157633, - [SMALL_STATE(2814)] = 157712, - [SMALL_STATE(2815)] = 157791, - [SMALL_STATE(2816)] = 157870, - [SMALL_STATE(2817)] = 157949, - [SMALL_STATE(2818)] = 157997, - [SMALL_STATE(2819)] = 158045, - [SMALL_STATE(2820)] = 158093, - [SMALL_STATE(2821)] = 158141, - [SMALL_STATE(2822)] = 158189, - [SMALL_STATE(2823)] = 158237, - [SMALL_STATE(2824)] = 158285, - [SMALL_STATE(2825)] = 158333, - [SMALL_STATE(2826)] = 158381, - [SMALL_STATE(2827)] = 158435, - [SMALL_STATE(2828)] = 158483, - [SMALL_STATE(2829)] = 158531, - [SMALL_STATE(2830)] = 158579, - [SMALL_STATE(2831)] = 158627, - [SMALL_STATE(2832)] = 158675, - [SMALL_STATE(2833)] = 158723, - [SMALL_STATE(2834)] = 158771, - [SMALL_STATE(2835)] = 158819, - [SMALL_STATE(2836)] = 158868, - [SMALL_STATE(2837)] = 158915, - [SMALL_STATE(2838)] = 158962, - [SMALL_STATE(2839)] = 159007, - [SMALL_STATE(2840)] = 159052, - [SMALL_STATE(2841)] = 159097, - [SMALL_STATE(2842)] = 159142, - [SMALL_STATE(2843)] = 159187, - [SMALL_STATE(2844)] = 159232, - [SMALL_STATE(2845)] = 159275, - [SMALL_STATE(2846)] = 159347, - [SMALL_STATE(2847)] = 159419, - [SMALL_STATE(2848)] = 159491, - [SMALL_STATE(2849)] = 159563, - [SMALL_STATE(2850)] = 159635, - [SMALL_STATE(2851)] = 159707, - [SMALL_STATE(2852)] = 159779, - [SMALL_STATE(2853)] = 159851, - [SMALL_STATE(2854)] = 159923, - [SMALL_STATE(2855)] = 159995, - [SMALL_STATE(2856)] = 160067, - [SMALL_STATE(2857)] = 160139, - [SMALL_STATE(2858)] = 160211, - [SMALL_STATE(2859)] = 160278, - [SMALL_STATE(2860)] = 160345, - [SMALL_STATE(2861)] = 160412, - [SMALL_STATE(2862)] = 160479, - [SMALL_STATE(2863)] = 160548, - [SMALL_STATE(2864)] = 160617, - [SMALL_STATE(2865)] = 160684, - [SMALL_STATE(2866)] = 160753, - [SMALL_STATE(2867)] = 160820, - [SMALL_STATE(2868)] = 160887, - [SMALL_STATE(2869)] = 160956, - [SMALL_STATE(2870)] = 161025, - [SMALL_STATE(2871)] = 161094, - [SMALL_STATE(2872)] = 161163, - [SMALL_STATE(2873)] = 161230, - [SMALL_STATE(2874)] = 161297, - [SMALL_STATE(2875)] = 161363, - [SMALL_STATE(2876)] = 161429, - [SMALL_STATE(2877)] = 161495, - [SMALL_STATE(2878)] = 161561, - [SMALL_STATE(2879)] = 161624, - [SMALL_STATE(2880)] = 161687, - [SMALL_STATE(2881)] = 161750, - [SMALL_STATE(2882)] = 161813, - [SMALL_STATE(2883)] = 161876, - [SMALL_STATE(2884)] = 161939, - [SMALL_STATE(2885)] = 162002, - [SMALL_STATE(2886)] = 162065, - [SMALL_STATE(2887)] = 162128, - [SMALL_STATE(2888)] = 162191, - [SMALL_STATE(2889)] = 162254, - [SMALL_STATE(2890)] = 162317, - [SMALL_STATE(2891)] = 162380, - [SMALL_STATE(2892)] = 162443, - [SMALL_STATE(2893)] = 162506, - [SMALL_STATE(2894)] = 162569, - [SMALL_STATE(2895)] = 162634, - [SMALL_STATE(2896)] = 162671, - [SMALL_STATE(2897)] = 162736, - [SMALL_STATE(2898)] = 162801, - [SMALL_STATE(2899)] = 162866, - [SMALL_STATE(2900)] = 162931, - [SMALL_STATE(2901)] = 162984, - [SMALL_STATE(2902)] = 163049, - [SMALL_STATE(2903)] = 163086, - [SMALL_STATE(2904)] = 163123, - [SMALL_STATE(2905)] = 163181, - [SMALL_STATE(2906)] = 163225, - [SMALL_STATE(2907)] = 163283, - [SMALL_STATE(2908)] = 163341, - [SMALL_STATE(2909)] = 163399, - [SMALL_STATE(2910)] = 163457, - [SMALL_STATE(2911)] = 163515, - [SMALL_STATE(2912)] = 163571, - [SMALL_STATE(2913)] = 163629, - [SMALL_STATE(2914)] = 163687, - [SMALL_STATE(2915)] = 163727, - [SMALL_STATE(2916)] = 163771, - [SMALL_STATE(2917)] = 163827, - [SMALL_STATE(2918)] = 163885, - [SMALL_STATE(2919)] = 163943, - [SMALL_STATE(2920)] = 164001, - [SMALL_STATE(2921)] = 164056, - [SMALL_STATE(2922)] = 164111, - [SMALL_STATE(2923)] = 164146, - [SMALL_STATE(2924)] = 164201, - [SMALL_STATE(2925)] = 164256, - [SMALL_STATE(2926)] = 164311, - [SMALL_STATE(2927)] = 164350, - [SMALL_STATE(2928)] = 164405, - [SMALL_STATE(2929)] = 164460, - [SMALL_STATE(2930)] = 164515, - [SMALL_STATE(2931)] = 164550, - [SMALL_STATE(2932)] = 164605, - [SMALL_STATE(2933)] = 164660, - [SMALL_STATE(2934)] = 164715, - [SMALL_STATE(2935)] = 164770, - [SMALL_STATE(2936)] = 164809, - [SMALL_STATE(2937)] = 164864, - [SMALL_STATE(2938)] = 164919, - [SMALL_STATE(2939)] = 164975, - [SMALL_STATE(2940)] = 165027, - [SMALL_STATE(2941)] = 165083, - [SMALL_STATE(2942)] = 165135, - [SMALL_STATE(2943)] = 165187, - [SMALL_STATE(2944)] = 165239, - [SMALL_STATE(2945)] = 165295, - [SMALL_STATE(2946)] = 165347, - [SMALL_STATE(2947)] = 165399, - [SMALL_STATE(2948)] = 165455, - [SMALL_STATE(2949)] = 165507, - [SMALL_STATE(2950)] = 165563, - [SMALL_STATE(2951)] = 165597, - [SMALL_STATE(2952)] = 165653, - [SMALL_STATE(2953)] = 165709, - [SMALL_STATE(2954)] = 165761, - [SMALL_STATE(2955)] = 165797, - [SMALL_STATE(2956)] = 165853, - [SMALL_STATE(2957)] = 165891, - [SMALL_STATE(2958)] = 165933, - [SMALL_STATE(2959)] = 165989, - [SMALL_STATE(2960)] = 166043, - [SMALL_STATE(2961)] = 166095, - [SMALL_STATE(2962)] = 166151, - [SMALL_STATE(2963)] = 166203, - [SMALL_STATE(2964)] = 166237, - [SMALL_STATE(2965)] = 166289, - [SMALL_STATE(2966)] = 166341, - [SMALL_STATE(2967)] = 166397, - [SMALL_STATE(2968)] = 166453, - [SMALL_STATE(2969)] = 166505, - [SMALL_STATE(2970)] = 166561, - [SMALL_STATE(2971)] = 166595, - [SMALL_STATE(2972)] = 166651, - [SMALL_STATE(2973)] = 166700, - [SMALL_STATE(2974)] = 166741, - [SMALL_STATE(2975)] = 166790, - [SMALL_STATE(2976)] = 166825, - [SMALL_STATE(2977)] = 166866, - [SMALL_STATE(2978)] = 166915, - [SMALL_STATE(2979)] = 166964, - [SMALL_STATE(2980)] = 166997, - [SMALL_STATE(2981)] = 167030, - [SMALL_STATE(2982)] = 167063, - [SMALL_STATE(2983)] = 167112, - [SMALL_STATE(2984)] = 167161, - [SMALL_STATE(2985)] = 167210, - [SMALL_STATE(2986)] = 167243, - [SMALL_STATE(2987)] = 167280, - [SMALL_STATE(2988)] = 167313, - [SMALL_STATE(2989)] = 167362, - [SMALL_STATE(2990)] = 167397, - [SMALL_STATE(2991)] = 167446, - [SMALL_STATE(2992)] = 167489, - [SMALL_STATE(2993)] = 167526, - [SMALL_STATE(2994)] = 167563, - [SMALL_STATE(2995)] = 167600, - [SMALL_STATE(2996)] = 167649, - [SMALL_STATE(2997)] = 167698, - [SMALL_STATE(2998)] = 167747, - [SMALL_STATE(2999)] = 167796, - [SMALL_STATE(3000)] = 167829, - [SMALL_STATE(3001)] = 167878, - [SMALL_STATE(3002)] = 167911, - [SMALL_STATE(3003)] = 167944, - [SMALL_STATE(3004)] = 167993, - [SMALL_STATE(3005)] = 168042, - [SMALL_STATE(3006)] = 168091, - [SMALL_STATE(3007)] = 168140, - [SMALL_STATE(3008)] = 168181, - [SMALL_STATE(3009)] = 168218, - [SMALL_STATE(3010)] = 168250, - [SMALL_STATE(3011)] = 168298, - [SMALL_STATE(3012)] = 168346, - [SMALL_STATE(3013)] = 168378, - [SMALL_STATE(3014)] = 168410, - [SMALL_STATE(3015)] = 168442, - [SMALL_STATE(3016)] = 168490, - [SMALL_STATE(3017)] = 168522, - [SMALL_STATE(3018)] = 168570, - [SMALL_STATE(3019)] = 168618, - [SMALL_STATE(3020)] = 168650, - [SMALL_STATE(3021)] = 168686, - [SMALL_STATE(3022)] = 168718, - [SMALL_STATE(3023)] = 168750, - [SMALL_STATE(3024)] = 168782, - [SMALL_STATE(3025)] = 168818, - [SMALL_STATE(3026)] = 168850, - [SMALL_STATE(3027)] = 168886, - [SMALL_STATE(3028)] = 168918, - [SMALL_STATE(3029)] = 168950, - [SMALL_STATE(3030)] = 168990, - [SMALL_STATE(3031)] = 169022, - [SMALL_STATE(3032)] = 169068, - [SMALL_STATE(3033)] = 169100, - [SMALL_STATE(3034)] = 169138, - [SMALL_STATE(3035)] = 169170, - [SMALL_STATE(3036)] = 169206, - [SMALL_STATE(3037)] = 169238, - [SMALL_STATE(3038)] = 169270, - [SMALL_STATE(3039)] = 169302, - [SMALL_STATE(3040)] = 169334, - [SMALL_STATE(3041)] = 169366, - [SMALL_STATE(3042)] = 169398, - [SMALL_STATE(3043)] = 169430, - [SMALL_STATE(3044)] = 169462, - [SMALL_STATE(3045)] = 169494, - [SMALL_STATE(3046)] = 169526, - [SMALL_STATE(3047)] = 169572, - [SMALL_STATE(3048)] = 169604, - [SMALL_STATE(3049)] = 169652, - [SMALL_STATE(3050)] = 169684, - [SMALL_STATE(3051)] = 169732, - [SMALL_STATE(3052)] = 169764, - [SMALL_STATE(3053)] = 169796, - [SMALL_STATE(3054)] = 169828, - [SMALL_STATE(3055)] = 169860, - [SMALL_STATE(3056)] = 169892, - [SMALL_STATE(3057)] = 169924, - [SMALL_STATE(3058)] = 169956, - [SMALL_STATE(3059)] = 169988, - [SMALL_STATE(3060)] = 170020, - [SMALL_STATE(3061)] = 170052, - [SMALL_STATE(3062)] = 170084, - [SMALL_STATE(3063)] = 170116, - [SMALL_STATE(3064)] = 170148, - [SMALL_STATE(3065)] = 170180, - [SMALL_STATE(3066)] = 170212, - [SMALL_STATE(3067)] = 170244, - [SMALL_STATE(3068)] = 170276, - [SMALL_STATE(3069)] = 170324, - [SMALL_STATE(3070)] = 170356, - [SMALL_STATE(3071)] = 170402, - [SMALL_STATE(3072)] = 170434, - [SMALL_STATE(3073)] = 170482, - [SMALL_STATE(3074)] = 170514, - [SMALL_STATE(3075)] = 170562, - [SMALL_STATE(3076)] = 170594, - [SMALL_STATE(3077)] = 170640, - [SMALL_STATE(3078)] = 170688, - [SMALL_STATE(3079)] = 170724, - [SMALL_STATE(3080)] = 170756, - [SMALL_STATE(3081)] = 170804, - [SMALL_STATE(3082)] = 170852, - [SMALL_STATE(3083)] = 170884, - [SMALL_STATE(3084)] = 170916, - [SMALL_STATE(3085)] = 170948, - [SMALL_STATE(3086)] = 170980, - [SMALL_STATE(3087)] = 171012, - [SMALL_STATE(3088)] = 171044, - [SMALL_STATE(3089)] = 171076, - [SMALL_STATE(3090)] = 171124, - [SMALL_STATE(3091)] = 171156, - [SMALL_STATE(3092)] = 171188, - [SMALL_STATE(3093)] = 171222, - [SMALL_STATE(3094)] = 171254, - [SMALL_STATE(3095)] = 171286, - [SMALL_STATE(3096)] = 171334, - [SMALL_STATE(3097)] = 171366, - [SMALL_STATE(3098)] = 171398, - [SMALL_STATE(3099)] = 171430, - [SMALL_STATE(3100)] = 171478, - [SMALL_STATE(3101)] = 171526, - [SMALL_STATE(3102)] = 171572, - [SMALL_STATE(3103)] = 171604, - [SMALL_STATE(3104)] = 171636, - [SMALL_STATE(3105)] = 171668, - [SMALL_STATE(3106)] = 171700, - [SMALL_STATE(3107)] = 171748, - [SMALL_STATE(3108)] = 171796, - [SMALL_STATE(3109)] = 171828, - [SMALL_STATE(3110)] = 171866, - [SMALL_STATE(3111)] = 171898, - [SMALL_STATE(3112)] = 171930, - [SMALL_STATE(3113)] = 171962, - [SMALL_STATE(3114)] = 171994, - [SMALL_STATE(3115)] = 172026, - [SMALL_STATE(3116)] = 172058, - [SMALL_STATE(3117)] = 172090, - [SMALL_STATE(3118)] = 172122, - [SMALL_STATE(3119)] = 172154, - [SMALL_STATE(3120)] = 172186, - [SMALL_STATE(3121)] = 172232, - [SMALL_STATE(3122)] = 172265, - [SMALL_STATE(3123)] = 172302, - [SMALL_STATE(3124)] = 172349, - [SMALL_STATE(3125)] = 172396, - [SMALL_STATE(3126)] = 172443, - [SMALL_STATE(3127)] = 172478, - [SMALL_STATE(3128)] = 172511, - [SMALL_STATE(3129)] = 172544, - [SMALL_STATE(3130)] = 172577, - [SMALL_STATE(3131)] = 172608, - [SMALL_STATE(3132)] = 172641, - [SMALL_STATE(3133)] = 172686, - [SMALL_STATE(3134)] = 172729, - [SMALL_STATE(3135)] = 172774, - [SMALL_STATE(3136)] = 172819, - [SMALL_STATE(3137)] = 172862, - [SMALL_STATE(3138)] = 172897, - [SMALL_STATE(3139)] = 172932, - [SMALL_STATE(3140)] = 172965, - [SMALL_STATE(3141)] = 173000, - [SMALL_STATE(3142)] = 173035, - [SMALL_STATE(3143)] = 173070, - [SMALL_STATE(3144)] = 173105, - [SMALL_STATE(3145)] = 173140, - [SMALL_STATE(3146)] = 173175, - [SMALL_STATE(3147)] = 173208, - [SMALL_STATE(3148)] = 173253, - [SMALL_STATE(3149)] = 173286, - [SMALL_STATE(3150)] = 173333, - [SMALL_STATE(3151)] = 173366, - [SMALL_STATE(3152)] = 173399, - [SMALL_STATE(3153)] = 173446, - [SMALL_STATE(3154)] = 173489, - [SMALL_STATE(3155)] = 173534, - [SMALL_STATE(3156)] = 173581, - [SMALL_STATE(3157)] = 173624, - [SMALL_STATE(3158)] = 173667, - [SMALL_STATE(3159)] = 173714, - [SMALL_STATE(3160)] = 173751, - [SMALL_STATE(3161)] = 173786, - [SMALL_STATE(3162)] = 173821, - [SMALL_STATE(3163)] = 173858, - [SMALL_STATE(3164)] = 173901, - [SMALL_STATE(3165)] = 173944, - [SMALL_STATE(3166)] = 173991, - [SMALL_STATE(3167)] = 174038, - [SMALL_STATE(3168)] = 174071, - [SMALL_STATE(3169)] = 174118, - [SMALL_STATE(3170)] = 174165, - [SMALL_STATE(3171)] = 174196, - [SMALL_STATE(3172)] = 174231, - [SMALL_STATE(3173)] = 174276, - [SMALL_STATE(3174)] = 174323, - [SMALL_STATE(3175)] = 174356, - [SMALL_STATE(3176)] = 174389, - [SMALL_STATE(3177)] = 174432, - [SMALL_STATE(3178)] = 174462, - [SMALL_STATE(3179)] = 174492, - [SMALL_STATE(3180)] = 174534, - [SMALL_STATE(3181)] = 174576, - [SMALL_STATE(3182)] = 174606, - [SMALL_STATE(3183)] = 174636, - [SMALL_STATE(3184)] = 174666, - [SMALL_STATE(3185)] = 174696, - [SMALL_STATE(3186)] = 174726, - [SMALL_STATE(3187)] = 174768, - [SMALL_STATE(3188)] = 174798, - [SMALL_STATE(3189)] = 174830, - [SMALL_STATE(3190)] = 174860, - [SMALL_STATE(3191)] = 174890, - [SMALL_STATE(3192)] = 174922, - [SMALL_STATE(3193)] = 174956, - [SMALL_STATE(3194)] = 174998, - [SMALL_STATE(3195)] = 175028, - [SMALL_STATE(3196)] = 175062, - [SMALL_STATE(3197)] = 175092, - [SMALL_STATE(3198)] = 175122, - [SMALL_STATE(3199)] = 175156, - [SMALL_STATE(3200)] = 175190, - [SMALL_STATE(3201)] = 175222, - [SMALL_STATE(3202)] = 175256, - [SMALL_STATE(3203)] = 175290, - [SMALL_STATE(3204)] = 175332, - [SMALL_STATE(3205)] = 175364, - [SMALL_STATE(3206)] = 175398, - [SMALL_STATE(3207)] = 175438, - [SMALL_STATE(3208)] = 175480, - [SMALL_STATE(3209)] = 175510, - [SMALL_STATE(3210)] = 175540, - [SMALL_STATE(3211)] = 175570, - [SMALL_STATE(3212)] = 175600, - [SMALL_STATE(3213)] = 175630, - [SMALL_STATE(3214)] = 175660, - [SMALL_STATE(3215)] = 175690, - [SMALL_STATE(3216)] = 175732, - [SMALL_STATE(3217)] = 175764, - [SMALL_STATE(3218)] = 175806, - [SMALL_STATE(3219)] = 175848, - [SMALL_STATE(3220)] = 175878, - [SMALL_STATE(3221)] = 175914, - [SMALL_STATE(3222)] = 175944, - [SMALL_STATE(3223)] = 175974, - [SMALL_STATE(3224)] = 176004, - [SMALL_STATE(3225)] = 176034, - [SMALL_STATE(3226)] = 176064, - [SMALL_STATE(3227)] = 176098, - [SMALL_STATE(3228)] = 176130, - [SMALL_STATE(3229)] = 176160, - [SMALL_STATE(3230)] = 176190, - [SMALL_STATE(3231)] = 176222, - [SMALL_STATE(3232)] = 176252, - [SMALL_STATE(3233)] = 176294, - [SMALL_STATE(3234)] = 176324, - [SMALL_STATE(3235)] = 176364, - [SMALL_STATE(3236)] = 176398, - [SMALL_STATE(3237)] = 176442, - [SMALL_STATE(3238)] = 176472, - [SMALL_STATE(3239)] = 176502, - [SMALL_STATE(3240)] = 176544, - [SMALL_STATE(3241)] = 176578, - [SMALL_STATE(3242)] = 176610, - [SMALL_STATE(3243)] = 176640, - [SMALL_STATE(3244)] = 176670, - [SMALL_STATE(3245)] = 176702, - [SMALL_STATE(3246)] = 176734, - [SMALL_STATE(3247)] = 176766, - [SMALL_STATE(3248)] = 176798, - [SMALL_STATE(3249)] = 176828, - [SMALL_STATE(3250)] = 176856, - [SMALL_STATE(3251)] = 176898, - [SMALL_STATE(3252)] = 176928, - [SMALL_STATE(3253)] = 176962, - [SMALL_STATE(3254)] = 176996, - [SMALL_STATE(3255)] = 177026, - [SMALL_STATE(3256)] = 177056, - [SMALL_STATE(3257)] = 177098, - [SMALL_STATE(3258)] = 177128, - [SMALL_STATE(3259)] = 177171, - [SMALL_STATE(3260)] = 177210, - [SMALL_STATE(3261)] = 177243, - [SMALL_STATE(3262)] = 177272, - [SMALL_STATE(3263)] = 177299, - [SMALL_STATE(3264)] = 177332, - [SMALL_STATE(3265)] = 177359, - [SMALL_STATE(3266)] = 177402, - [SMALL_STATE(3267)] = 177445, - [SMALL_STATE(3268)] = 177476, - [SMALL_STATE(3269)] = 177505, - [SMALL_STATE(3270)] = 177534, - [SMALL_STATE(3271)] = 177563, - [SMALL_STATE(3272)] = 177590, - [SMALL_STATE(3273)] = 177619, - [SMALL_STATE(3274)] = 177646, - [SMALL_STATE(3275)] = 177675, - [SMALL_STATE(3276)] = 177702, - [SMALL_STATE(3277)] = 177729, - [SMALL_STATE(3278)] = 177756, - [SMALL_STATE(3279)] = 177787, - [SMALL_STATE(3280)] = 177818, - [SMALL_STATE(3281)] = 177855, - [SMALL_STATE(3282)] = 177898, - [SMALL_STATE(3283)] = 177931, - [SMALL_STATE(3284)] = 177964, - [SMALL_STATE(3285)] = 177995, - [SMALL_STATE(3286)] = 178028, - [SMALL_STATE(3287)] = 178061, - [SMALL_STATE(3288)] = 178092, - [SMALL_STATE(3289)] = 178121, - [SMALL_STATE(3290)] = 178152, - [SMALL_STATE(3291)] = 178183, - [SMALL_STATE(3292)] = 178212, - [SMALL_STATE(3293)] = 178243, - [SMALL_STATE(3294)] = 178274, - [SMALL_STATE(3295)] = 178317, - [SMALL_STATE(3296)] = 178348, - [SMALL_STATE(3297)] = 178381, - [SMALL_STATE(3298)] = 178424, - [SMALL_STATE(3299)] = 178451, - [SMALL_STATE(3300)] = 178482, - [SMALL_STATE(3301)] = 178509, - [SMALL_STATE(3302)] = 178538, - [SMALL_STATE(3303)] = 178565, - [SMALL_STATE(3304)] = 178600, - [SMALL_STATE(3305)] = 178627, - [SMALL_STATE(3306)] = 178658, - [SMALL_STATE(3307)] = 178689, - [SMALL_STATE(3308)] = 178720, - [SMALL_STATE(3309)] = 178751, - [SMALL_STATE(3310)] = 178786, - [SMALL_STATE(3311)] = 178815, - [SMALL_STATE(3312)] = 178844, - [SMALL_STATE(3313)] = 178873, - [SMALL_STATE(3314)] = 178916, - [SMALL_STATE(3315)] = 178949, - [SMALL_STATE(3316)] = 178992, - [SMALL_STATE(3317)] = 179021, - [SMALL_STATE(3318)] = 179050, - [SMALL_STATE(3319)] = 179079, - [SMALL_STATE(3320)] = 179108, - [SMALL_STATE(3321)] = 179137, - [SMALL_STATE(3322)] = 179164, - [SMALL_STATE(3323)] = 179193, - [SMALL_STATE(3324)] = 179230, - [SMALL_STATE(3325)] = 179259, - [SMALL_STATE(3326)] = 179299, - [SMALL_STATE(3327)] = 179333, - [SMALL_STATE(3328)] = 179373, - [SMALL_STATE(3329)] = 179413, - [SMALL_STATE(3330)] = 179447, - [SMALL_STATE(3331)] = 179483, - [SMALL_STATE(3332)] = 179523, - [SMALL_STATE(3333)] = 179553, - [SMALL_STATE(3334)] = 179583, - [SMALL_STATE(3335)] = 179611, - [SMALL_STATE(3336)] = 179647, - [SMALL_STATE(3337)] = 179681, - [SMALL_STATE(3338)] = 179711, - [SMALL_STATE(3339)] = 179741, - [SMALL_STATE(3340)] = 179769, - [SMALL_STATE(3341)] = 179797, - [SMALL_STATE(3342)] = 179827, - [SMALL_STATE(3343)] = 179857, - [SMALL_STATE(3344)] = 179885, - [SMALL_STATE(3345)] = 179913, - [SMALL_STATE(3346)] = 179951, - [SMALL_STATE(3347)] = 179985, - [SMALL_STATE(3348)] = 180015, - [SMALL_STATE(3349)] = 180049, - [SMALL_STATE(3350)] = 180083, - [SMALL_STATE(3351)] = 180115, - [SMALL_STATE(3352)] = 180145, - [SMALL_STATE(3353)] = 180171, - [SMALL_STATE(3354)] = 180199, - [SMALL_STATE(3355)] = 180229, - [SMALL_STATE(3356)] = 180263, - [SMALL_STATE(3357)] = 180297, - [SMALL_STATE(3358)] = 180323, - [SMALL_STATE(3359)] = 180353, - [SMALL_STATE(3360)] = 180381, - [SMALL_STATE(3361)] = 180417, - [SMALL_STATE(3362)] = 180445, - [SMALL_STATE(3363)] = 180475, - [SMALL_STATE(3364)] = 180503, - [SMALL_STATE(3365)] = 180531, - [SMALL_STATE(3366)] = 180571, - [SMALL_STATE(3367)] = 180601, - [SMALL_STATE(3368)] = 180631, - [SMALL_STATE(3369)] = 180661, - [SMALL_STATE(3370)] = 180701, - [SMALL_STATE(3371)] = 180731, - [SMALL_STATE(3372)] = 180771, - [SMALL_STATE(3373)] = 180805, - [SMALL_STATE(3374)] = 180845, - [SMALL_STATE(3375)] = 180879, - [SMALL_STATE(3376)] = 180913, - [SMALL_STATE(3377)] = 180947, - [SMALL_STATE(3378)] = 180987, - [SMALL_STATE(3379)] = 181017, - [SMALL_STATE(3380)] = 181047, - [SMALL_STATE(3381)] = 181077, - [SMALL_STATE(3382)] = 181105, - [SMALL_STATE(3383)] = 181139, - [SMALL_STATE(3384)] = 181173, - [SMALL_STATE(3385)] = 181203, - [SMALL_STATE(3386)] = 181233, - [SMALL_STATE(3387)] = 181259, - [SMALL_STATE(3388)] = 181289, - [SMALL_STATE(3389)] = 181329, - [SMALL_STATE(3390)] = 181357, - [SMALL_STATE(3391)] = 181385, - [SMALL_STATE(3392)] = 181413, - [SMALL_STATE(3393)] = 181441, - [SMALL_STATE(3394)] = 181467, - [SMALL_STATE(3395)] = 181497, - [SMALL_STATE(3396)] = 181527, - [SMALL_STATE(3397)] = 181567, - [SMALL_STATE(3398)] = 181607, - [SMALL_STATE(3399)] = 181647, - [SMALL_STATE(3400)] = 181687, - [SMALL_STATE(3401)] = 181715, - [SMALL_STATE(3402)] = 181743, - [SMALL_STATE(3403)] = 181771, - [SMALL_STATE(3404)] = 181799, - [SMALL_STATE(3405)] = 181839, - [SMALL_STATE(3406)] = 181879, - [SMALL_STATE(3407)] = 181907, - [SMALL_STATE(3408)] = 181947, - [SMALL_STATE(3409)] = 181977, - [SMALL_STATE(3410)] = 182003, - [SMALL_STATE(3411)] = 182031, - [SMALL_STATE(3412)] = 182071, - [SMALL_STATE(3413)] = 182107, - [SMALL_STATE(3414)] = 182145, - [SMALL_STATE(3415)] = 182173, - [SMALL_STATE(3416)] = 182201, - [SMALL_STATE(3417)] = 182231, - [SMALL_STATE(3418)] = 182259, - [SMALL_STATE(3419)] = 182287, - [SMALL_STATE(3420)] = 182321, - [SMALL_STATE(3421)] = 182350, - [SMALL_STATE(3422)] = 182381, - [SMALL_STATE(3423)] = 182408, - [SMALL_STATE(3424)] = 182435, - [SMALL_STATE(3425)] = 182466, - [SMALL_STATE(3426)] = 182495, - [SMALL_STATE(3427)] = 182522, - [SMALL_STATE(3428)] = 182549, - [SMALL_STATE(3429)] = 182580, - [SMALL_STATE(3430)] = 182607, - [SMALL_STATE(3431)] = 182634, - [SMALL_STATE(3432)] = 182665, - [SMALL_STATE(3433)] = 182694, - [SMALL_STATE(3434)] = 182723, - [SMALL_STATE(3435)] = 182752, - [SMALL_STATE(3436)] = 182777, - [SMALL_STATE(3437)] = 182802, - [SMALL_STATE(3438)] = 182831, - [SMALL_STATE(3439)] = 182860, - [SMALL_STATE(3440)] = 182891, - [SMALL_STATE(3441)] = 182916, - [SMALL_STATE(3442)] = 182947, - [SMALL_STATE(3443)] = 182978, - [SMALL_STATE(3444)] = 183005, - [SMALL_STATE(3445)] = 183036, - [SMALL_STATE(3446)] = 183067, - [SMALL_STATE(3447)] = 183092, - [SMALL_STATE(3448)] = 183123, - [SMALL_STATE(3449)] = 183154, - [SMALL_STATE(3450)] = 183181, - [SMALL_STATE(3451)] = 183208, - [SMALL_STATE(3452)] = 183235, - [SMALL_STATE(3453)] = 183262, - [SMALL_STATE(3454)] = 183293, - [SMALL_STATE(3455)] = 183324, - [SMALL_STATE(3456)] = 183351, - [SMALL_STATE(3457)] = 183388, - [SMALL_STATE(3458)] = 183415, - [SMALL_STATE(3459)] = 183446, - [SMALL_STATE(3460)] = 183471, - [SMALL_STATE(3461)] = 183498, - [SMALL_STATE(3462)] = 183529, - [SMALL_STATE(3463)] = 183556, - [SMALL_STATE(3464)] = 183587, - [SMALL_STATE(3465)] = 183618, - [SMALL_STATE(3466)] = 183643, - [SMALL_STATE(3467)] = 183670, - [SMALL_STATE(3468)] = 183707, - [SMALL_STATE(3469)] = 183736, - [SMALL_STATE(3470)] = 183765, - [SMALL_STATE(3471)] = 183798, - [SMALL_STATE(3472)] = 183829, - [SMALL_STATE(3473)] = 183856, - [SMALL_STATE(3474)] = 183885, - [SMALL_STATE(3475)] = 183914, - [SMALL_STATE(3476)] = 183943, - [SMALL_STATE(3477)] = 183974, - [SMALL_STATE(3478)] = 184005, - [SMALL_STATE(3479)] = 184034, - [SMALL_STATE(3480)] = 184063, - [SMALL_STATE(3481)] = 184092, - [SMALL_STATE(3482)] = 184121, - [SMALL_STATE(3483)] = 184152, - [SMALL_STATE(3484)] = 184183, - [SMALL_STATE(3485)] = 184212, - [SMALL_STATE(3486)] = 184241, - [SMALL_STATE(3487)] = 184272, - [SMALL_STATE(3488)] = 184297, - [SMALL_STATE(3489)] = 184328, - [SMALL_STATE(3490)] = 184353, - [SMALL_STATE(3491)] = 184378, - [SMALL_STATE(3492)] = 184403, - [SMALL_STATE(3493)] = 184434, - [SMALL_STATE(3494)] = 184465, - [SMALL_STATE(3495)] = 184494, - [SMALL_STATE(3496)] = 184521, - [SMALL_STATE(3497)] = 184555, - [SMALL_STATE(3498)] = 184581, - [SMALL_STATE(3499)] = 184607, - [SMALL_STATE(3500)] = 184633, - [SMALL_STATE(3501)] = 184659, - [SMALL_STATE(3502)] = 184687, - [SMALL_STATE(3503)] = 184721, - [SMALL_STATE(3504)] = 184745, - [SMALL_STATE(3505)] = 184769, - [SMALL_STATE(3506)] = 184803, - [SMALL_STATE(3507)] = 184837, - [SMALL_STATE(3508)] = 184871, - [SMALL_STATE(3509)] = 184899, - [SMALL_STATE(3510)] = 184927, - [SMALL_STATE(3511)] = 184951, - [SMALL_STATE(3512)] = 184979, - [SMALL_STATE(3513)] = 185007, - [SMALL_STATE(3514)] = 185031, - [SMALL_STATE(3515)] = 185065, - [SMALL_STATE(3516)] = 185093, - [SMALL_STATE(3517)] = 185121, - [SMALL_STATE(3518)] = 185147, - [SMALL_STATE(3519)] = 185175, - [SMALL_STATE(3520)] = 185199, - [SMALL_STATE(3521)] = 185223, - [SMALL_STATE(3522)] = 185257, - [SMALL_STATE(3523)] = 185291, - [SMALL_STATE(3524)] = 185319, - [SMALL_STATE(3525)] = 185345, - [SMALL_STATE(3526)] = 185379, - [SMALL_STATE(3527)] = 185403, - [SMALL_STATE(3528)] = 185427, - [SMALL_STATE(3529)] = 185461, - [SMALL_STATE(3530)] = 185495, - [SMALL_STATE(3531)] = 185529, - [SMALL_STATE(3532)] = 185563, - [SMALL_STATE(3533)] = 185587, - [SMALL_STATE(3534)] = 185621, - [SMALL_STATE(3535)] = 185647, - [SMALL_STATE(3536)] = 185681, - [SMALL_STATE(3537)] = 185707, - [SMALL_STATE(3538)] = 185741, - [SMALL_STATE(3539)] = 185775, - [SMALL_STATE(3540)] = 185805, - [SMALL_STATE(3541)] = 185829, - [SMALL_STATE(3542)] = 185863, - [SMALL_STATE(3543)] = 185891, - [SMALL_STATE(3544)] = 185919, - [SMALL_STATE(3545)] = 185953, - [SMALL_STATE(3546)] = 185985, - [SMALL_STATE(3547)] = 186011, - [SMALL_STATE(3548)] = 186039, - [SMALL_STATE(3549)] = 186067, - [SMALL_STATE(3550)] = 186095, - [SMALL_STATE(3551)] = 186123, - [SMALL_STATE(3552)] = 186151, - [SMALL_STATE(3553)] = 186179, - [SMALL_STATE(3554)] = 186207, - [SMALL_STATE(3555)] = 186235, - [SMALL_STATE(3556)] = 186263, - [SMALL_STATE(3557)] = 186291, - [SMALL_STATE(3558)] = 186325, - [SMALL_STATE(3559)] = 186349, - [SMALL_STATE(3560)] = 186377, - [SMALL_STATE(3561)] = 186411, - [SMALL_STATE(3562)] = 186435, - [SMALL_STATE(3563)] = 186463, - [SMALL_STATE(3564)] = 186491, - [SMALL_STATE(3565)] = 186515, - [SMALL_STATE(3566)] = 186539, - [SMALL_STATE(3567)] = 186573, - [SMALL_STATE(3568)] = 186597, - [SMALL_STATE(3569)] = 186625, - [SMALL_STATE(3570)] = 186659, - [SMALL_STATE(3571)] = 186687, - [SMALL_STATE(3572)] = 186715, - [SMALL_STATE(3573)] = 186743, - [SMALL_STATE(3574)] = 186771, - [SMALL_STATE(3575)] = 186805, - [SMALL_STATE(3576)] = 186829, - [SMALL_STATE(3577)] = 186863, - [SMALL_STATE(3578)] = 186887, - [SMALL_STATE(3579)] = 186915, - [SMALL_STATE(3580)] = 186939, - [SMALL_STATE(3581)] = 186967, - [SMALL_STATE(3582)] = 187001, - [SMALL_STATE(3583)] = 187035, - [SMALL_STATE(3584)] = 187061, - [SMALL_STATE(3585)] = 187095, - [SMALL_STATE(3586)] = 187129, - [SMALL_STATE(3587)] = 187159, - [SMALL_STATE(3588)] = 187183, - [SMALL_STATE(3589)] = 187207, - [SMALL_STATE(3590)] = 187235, - [SMALL_STATE(3591)] = 187263, - [SMALL_STATE(3592)] = 187293, - [SMALL_STATE(3593)] = 187317, - [SMALL_STATE(3594)] = 187351, - [SMALL_STATE(3595)] = 187375, - [SMALL_STATE(3596)] = 187409, - [SMALL_STATE(3597)] = 187433, - [SMALL_STATE(3598)] = 187467, - [SMALL_STATE(3599)] = 187493, - [SMALL_STATE(3600)] = 187517, - [SMALL_STATE(3601)] = 187545, - [SMALL_STATE(3602)] = 187573, - [SMALL_STATE(3603)] = 187599, - [SMALL_STATE(3604)] = 187629, - [SMALL_STATE(3605)] = 187653, - [SMALL_STATE(3606)] = 187687, - [SMALL_STATE(3607)] = 187711, - [SMALL_STATE(3608)] = 187735, - [SMALL_STATE(3609)] = 187769, - [SMALL_STATE(3610)] = 187793, - [SMALL_STATE(3611)] = 187819, - [SMALL_STATE(3612)] = 187847, - [SMALL_STATE(3613)] = 187881, - [SMALL_STATE(3614)] = 187905, - [SMALL_STATE(3615)] = 187929, - [SMALL_STATE(3616)] = 187957, - [SMALL_STATE(3617)] = 187985, - [SMALL_STATE(3618)] = 188009, - [SMALL_STATE(3619)] = 188043, - [SMALL_STATE(3620)] = 188069, - [SMALL_STATE(3621)] = 188103, - [SMALL_STATE(3622)] = 188129, - [SMALL_STATE(3623)] = 188163, - [SMALL_STATE(3624)] = 188187, - [SMALL_STATE(3625)] = 188213, - [SMALL_STATE(3626)] = 188241, - [SMALL_STATE(3627)] = 188265, - [SMALL_STATE(3628)] = 188299, - [SMALL_STATE(3629)] = 188333, - [SMALL_STATE(3630)] = 188367, - [SMALL_STATE(3631)] = 188396, - [SMALL_STATE(3632)] = 188427, - [SMALL_STATE(3633)] = 188456, - [SMALL_STATE(3634)] = 188487, - [SMALL_STATE(3635)] = 188514, - [SMALL_STATE(3636)] = 188541, - [SMALL_STATE(3637)] = 188564, - [SMALL_STATE(3638)] = 188595, - [SMALL_STATE(3639)] = 188624, - [SMALL_STATE(3640)] = 188653, - [SMALL_STATE(3641)] = 188680, - [SMALL_STATE(3642)] = 188703, - [SMALL_STATE(3643)] = 188734, - [SMALL_STATE(3644)] = 188761, - [SMALL_STATE(3645)] = 188790, - [SMALL_STATE(3646)] = 188821, - [SMALL_STATE(3647)] = 188848, - [SMALL_STATE(3648)] = 188873, - [SMALL_STATE(3649)] = 188900, - [SMALL_STATE(3650)] = 188927, - [SMALL_STATE(3651)] = 188952, - [SMALL_STATE(3652)] = 188979, - [SMALL_STATE(3653)] = 189008, - [SMALL_STATE(3654)] = 189035, - [SMALL_STATE(3655)] = 189062, - [SMALL_STATE(3656)] = 189091, - [SMALL_STATE(3657)] = 189118, - [SMALL_STATE(3658)] = 189141, - [SMALL_STATE(3659)] = 189166, - [SMALL_STATE(3660)] = 189193, - [SMALL_STATE(3661)] = 189220, - [SMALL_STATE(3662)] = 189245, - [SMALL_STATE(3663)] = 189274, - [SMALL_STATE(3664)] = 189299, - [SMALL_STATE(3665)] = 189324, - [SMALL_STATE(3666)] = 189351, - [SMALL_STATE(3667)] = 189380, - [SMALL_STATE(3668)] = 189407, - [SMALL_STATE(3669)] = 189434, - [SMALL_STATE(3670)] = 189461, - [SMALL_STATE(3671)] = 189488, - [SMALL_STATE(3672)] = 189517, - [SMALL_STATE(3673)] = 189544, - [SMALL_STATE(3674)] = 189571, - [SMALL_STATE(3675)] = 189598, - [SMALL_STATE(3676)] = 189625, - [SMALL_STATE(3677)] = 189652, - [SMALL_STATE(3678)] = 189677, - [SMALL_STATE(3679)] = 189704, - [SMALL_STATE(3680)] = 189729, - [SMALL_STATE(3681)] = 189754, - [SMALL_STATE(3682)] = 189781, - [SMALL_STATE(3683)] = 189812, - [SMALL_STATE(3684)] = 189837, - [SMALL_STATE(3685)] = 189860, - [SMALL_STATE(3686)] = 189889, - [SMALL_STATE(3687)] = 189914, - [SMALL_STATE(3688)] = 189941, - [SMALL_STATE(3689)] = 189968, - [SMALL_STATE(3690)] = 189991, - [SMALL_STATE(3691)] = 190016, - [SMALL_STATE(3692)] = 190041, - [SMALL_STATE(3693)] = 190072, - [SMALL_STATE(3694)] = 190095, - [SMALL_STATE(3695)] = 190122, - [SMALL_STATE(3696)] = 190145, - [SMALL_STATE(3697)] = 190170, - [SMALL_STATE(3698)] = 190193, - [SMALL_STATE(3699)] = 190216, - [SMALL_STATE(3700)] = 190243, - [SMALL_STATE(3701)] = 190272, - [SMALL_STATE(3702)] = 190299, - [SMALL_STATE(3703)] = 190326, - [SMALL_STATE(3704)] = 190353, - [SMALL_STATE(3705)] = 190380, - [SMALL_STATE(3706)] = 190409, - [SMALL_STATE(3707)] = 190436, - [SMALL_STATE(3708)] = 190463, - [SMALL_STATE(3709)] = 190490, - [SMALL_STATE(3710)] = 190515, - [SMALL_STATE(3711)] = 190542, - [SMALL_STATE(3712)] = 190567, - [SMALL_STATE(3713)] = 190594, - [SMALL_STATE(3714)] = 190621, - [SMALL_STATE(3715)] = 190644, - [SMALL_STATE(3716)] = 190669, - [SMALL_STATE(3717)] = 190700, - [SMALL_STATE(3718)] = 190727, - [SMALL_STATE(3719)] = 190754, - [SMALL_STATE(3720)] = 190781, - [SMALL_STATE(3721)] = 190810, - [SMALL_STATE(3722)] = 190835, - [SMALL_STATE(3723)] = 190858, - [SMALL_STATE(3724)] = 190885, - [SMALL_STATE(3725)] = 190914, - [SMALL_STATE(3726)] = 190939, - [SMALL_STATE(3727)] = 190964, - [SMALL_STATE(3728)] = 190991, - [SMALL_STATE(3729)] = 191022, - [SMALL_STATE(3730)] = 191051, - [SMALL_STATE(3731)] = 191078, - [SMALL_STATE(3732)] = 191105, - [SMALL_STATE(3733)] = 191130, - [SMALL_STATE(3734)] = 191155, - [SMALL_STATE(3735)] = 191186, - [SMALL_STATE(3736)] = 191213, - [SMALL_STATE(3737)] = 191240, - [SMALL_STATE(3738)] = 191267, - [SMALL_STATE(3739)] = 191294, - [SMALL_STATE(3740)] = 191319, - [SMALL_STATE(3741)] = 191346, - [SMALL_STATE(3742)] = 191371, - [SMALL_STATE(3743)] = 191402, - [SMALL_STATE(3744)] = 191429, - [SMALL_STATE(3745)] = 191456, - [SMALL_STATE(3746)] = 191483, - [SMALL_STATE(3747)] = 191510, - [SMALL_STATE(3748)] = 191537, - [SMALL_STATE(3749)] = 191568, - [SMALL_STATE(3750)] = 191599, - [SMALL_STATE(3751)] = 191630, - [SMALL_STATE(3752)] = 191659, - [SMALL_STATE(3753)] = 191688, - [SMALL_STATE(3754)] = 191715, - [SMALL_STATE(3755)] = 191742, - [SMALL_STATE(3756)] = 191769, - [SMALL_STATE(3757)] = 191794, - [SMALL_STATE(3758)] = 191819, - [SMALL_STATE(3759)] = 191846, - [SMALL_STATE(3760)] = 191875, - [SMALL_STATE(3761)] = 191902, - [SMALL_STATE(3762)] = 191932, - [SMALL_STATE(3763)] = 191962, - [SMALL_STATE(3764)] = 191990, - [SMALL_STATE(3765)] = 192018, - [SMALL_STATE(3766)] = 192046, - [SMALL_STATE(3767)] = 192068, - [SMALL_STATE(3768)] = 192096, - [SMALL_STATE(3769)] = 192124, - [SMALL_STATE(3770)] = 192154, - [SMALL_STATE(3771)] = 192182, - [SMALL_STATE(3772)] = 192210, - [SMALL_STATE(3773)] = 192238, - [SMALL_STATE(3774)] = 192266, - [SMALL_STATE(3775)] = 192294, - [SMALL_STATE(3776)] = 192322, - [SMALL_STATE(3777)] = 192352, - [SMALL_STATE(3778)] = 192380, - [SMALL_STATE(3779)] = 192408, - [SMALL_STATE(3780)] = 192438, - [SMALL_STATE(3781)] = 192466, - [SMALL_STATE(3782)] = 192494, - [SMALL_STATE(3783)] = 192522, - [SMALL_STATE(3784)] = 192550, - [SMALL_STATE(3785)] = 192578, - [SMALL_STATE(3786)] = 192606, - [SMALL_STATE(3787)] = 192634, - [SMALL_STATE(3788)] = 192662, - [SMALL_STATE(3789)] = 192690, - [SMALL_STATE(3790)] = 192718, - [SMALL_STATE(3791)] = 192746, - [SMALL_STATE(3792)] = 192776, - [SMALL_STATE(3793)] = 192804, - [SMALL_STATE(3794)] = 192832, - [SMALL_STATE(3795)] = 192860, - [SMALL_STATE(3796)] = 192888, - [SMALL_STATE(3797)] = 192918, - [SMALL_STATE(3798)] = 192948, - [SMALL_STATE(3799)] = 192978, - [SMALL_STATE(3800)] = 193006, - [SMALL_STATE(3801)] = 193034, - [SMALL_STATE(3802)] = 193062, - [SMALL_STATE(3803)] = 193084, - [SMALL_STATE(3804)] = 193112, - [SMALL_STATE(3805)] = 193140, - [SMALL_STATE(3806)] = 193170, - [SMALL_STATE(3807)] = 193200, - [SMALL_STATE(3808)] = 193228, - [SMALL_STATE(3809)] = 193256, - [SMALL_STATE(3810)] = 193282, - [SMALL_STATE(3811)] = 193310, - [SMALL_STATE(3812)] = 193338, - [SMALL_STATE(3813)] = 193366, - [SMALL_STATE(3814)] = 193394, - [SMALL_STATE(3815)] = 193422, - [SMALL_STATE(3816)] = 193450, - [SMALL_STATE(3817)] = 193478, - [SMALL_STATE(3818)] = 193506, - [SMALL_STATE(3819)] = 193534, - [SMALL_STATE(3820)] = 193562, - [SMALL_STATE(3821)] = 193588, - [SMALL_STATE(3822)] = 193616, - [SMALL_STATE(3823)] = 193644, - [SMALL_STATE(3824)] = 193666, - [SMALL_STATE(3825)] = 193694, - [SMALL_STATE(3826)] = 193722, - [SMALL_STATE(3827)] = 193748, - [SMALL_STATE(3828)] = 193776, - [SMALL_STATE(3829)] = 193804, - [SMALL_STATE(3830)] = 193832, - [SMALL_STATE(3831)] = 193860, - [SMALL_STATE(3832)] = 193888, - [SMALL_STATE(3833)] = 193916, - [SMALL_STATE(3834)] = 193946, - [SMALL_STATE(3835)] = 193970, - [SMALL_STATE(3836)] = 193998, - [SMALL_STATE(3837)] = 194026, - [SMALL_STATE(3838)] = 194048, - [SMALL_STATE(3839)] = 194072, - [SMALL_STATE(3840)] = 194100, - [SMALL_STATE(3841)] = 194128, - [SMALL_STATE(3842)] = 194156, - [SMALL_STATE(3843)] = 194178, - [SMALL_STATE(3844)] = 194202, - [SMALL_STATE(3845)] = 194230, - [SMALL_STATE(3846)] = 194254, - [SMALL_STATE(3847)] = 194282, - [SMALL_STATE(3848)] = 194310, - [SMALL_STATE(3849)] = 194338, - [SMALL_STATE(3850)] = 194366, - [SMALL_STATE(3851)] = 194396, - [SMALL_STATE(3852)] = 194422, - [SMALL_STATE(3853)] = 194450, - [SMALL_STATE(3854)] = 194478, - [SMALL_STATE(3855)] = 194506, - [SMALL_STATE(3856)] = 194534, - [SMALL_STATE(3857)] = 194564, - [SMALL_STATE(3858)] = 194590, - [SMALL_STATE(3859)] = 194618, - [SMALL_STATE(3860)] = 194648, - [SMALL_STATE(3861)] = 194676, - [SMALL_STATE(3862)] = 194704, - [SMALL_STATE(3863)] = 194732, - [SMALL_STATE(3864)] = 194758, - [SMALL_STATE(3865)] = 194786, - [SMALL_STATE(3866)] = 194816, - [SMALL_STATE(3867)] = 194844, - [SMALL_STATE(3868)] = 194872, - [SMALL_STATE(3869)] = 194900, - [SMALL_STATE(3870)] = 194928, - [SMALL_STATE(3871)] = 194956, - [SMALL_STATE(3872)] = 194984, - [SMALL_STATE(3873)] = 195014, - [SMALL_STATE(3874)] = 195042, - [SMALL_STATE(3875)] = 195070, - [SMALL_STATE(3876)] = 195094, - [SMALL_STATE(3877)] = 195122, - [SMALL_STATE(3878)] = 195152, - [SMALL_STATE(3879)] = 195180, - [SMALL_STATE(3880)] = 195208, - [SMALL_STATE(3881)] = 195238, - [SMALL_STATE(3882)] = 195266, - [SMALL_STATE(3883)] = 195294, - [SMALL_STATE(3884)] = 195324, - [SMALL_STATE(3885)] = 195350, - [SMALL_STATE(3886)] = 195378, - [SMALL_STATE(3887)] = 195408, - [SMALL_STATE(3888)] = 195436, - [SMALL_STATE(3889)] = 195466, - [SMALL_STATE(3890)] = 195494, - [SMALL_STATE(3891)] = 195524, - [SMALL_STATE(3892)] = 195554, - [SMALL_STATE(3893)] = 195576, - [SMALL_STATE(3894)] = 195606, - [SMALL_STATE(3895)] = 195632, - [SMALL_STATE(3896)] = 195660, - [SMALL_STATE(3897)] = 195688, - [SMALL_STATE(3898)] = 195716, - [SMALL_STATE(3899)] = 195744, - [SMALL_STATE(3900)] = 195772, - [SMALL_STATE(3901)] = 195802, - [SMALL_STATE(3902)] = 195828, - [SMALL_STATE(3903)] = 195850, - [SMALL_STATE(3904)] = 195878, - [SMALL_STATE(3905)] = 195906, - [SMALL_STATE(3906)] = 195936, - [SMALL_STATE(3907)] = 195964, - [SMALL_STATE(3908)] = 195990, - [SMALL_STATE(3909)] = 196020, - [SMALL_STATE(3910)] = 196048, - [SMALL_STATE(3911)] = 196076, - [SMALL_STATE(3912)] = 196098, - [SMALL_STATE(3913)] = 196126, - [SMALL_STATE(3914)] = 196154, - [SMALL_STATE(3915)] = 196182, - [SMALL_STATE(3916)] = 196210, - [SMALL_STATE(3917)] = 196238, - [SMALL_STATE(3918)] = 196266, - [SMALL_STATE(3919)] = 196288, - [SMALL_STATE(3920)] = 196316, - [SMALL_STATE(3921)] = 196344, - [SMALL_STATE(3922)] = 196374, - [SMALL_STATE(3923)] = 196404, - [SMALL_STATE(3924)] = 196432, - [SMALL_STATE(3925)] = 196460, - [SMALL_STATE(3926)] = 196488, - [SMALL_STATE(3927)] = 196518, - [SMALL_STATE(3928)] = 196546, - [SMALL_STATE(3929)] = 196574, - [SMALL_STATE(3930)] = 196604, - [SMALL_STATE(3931)] = 196632, - [SMALL_STATE(3932)] = 196662, - [SMALL_STATE(3933)] = 196692, - [SMALL_STATE(3934)] = 196720, - [SMALL_STATE(3935)] = 196748, - [SMALL_STATE(3936)] = 196776, - [SMALL_STATE(3937)] = 196804, - [SMALL_STATE(3938)] = 196834, - [SMALL_STATE(3939)] = 196864, - [SMALL_STATE(3940)] = 196894, - [SMALL_STATE(3941)] = 196922, - [SMALL_STATE(3942)] = 196950, - [SMALL_STATE(3943)] = 196978, - [SMALL_STATE(3944)] = 197006, - [SMALL_STATE(3945)] = 197036, - [SMALL_STATE(3946)] = 197064, - [SMALL_STATE(3947)] = 197092, - [SMALL_STATE(3948)] = 197120, - [SMALL_STATE(3949)] = 197148, - [SMALL_STATE(3950)] = 197176, - [SMALL_STATE(3951)] = 197204, - [SMALL_STATE(3952)] = 197232, - [SMALL_STATE(3953)] = 197262, - [SMALL_STATE(3954)] = 197292, - [SMALL_STATE(3955)] = 197320, - [SMALL_STATE(3956)] = 197348, - [SMALL_STATE(3957)] = 197376, - [SMALL_STATE(3958)] = 197404, - [SMALL_STATE(3959)] = 197432, - [SMALL_STATE(3960)] = 197460, - [SMALL_STATE(3961)] = 197490, - [SMALL_STATE(3962)] = 197520, - [SMALL_STATE(3963)] = 197548, - [SMALL_STATE(3964)] = 197576, - [SMALL_STATE(3965)] = 197604, - [SMALL_STATE(3966)] = 197634, - [SMALL_STATE(3967)] = 197662, - [SMALL_STATE(3968)] = 197690, - [SMALL_STATE(3969)] = 197718, - [SMALL_STATE(3970)] = 197746, - [SMALL_STATE(3971)] = 197774, - [SMALL_STATE(3972)] = 197802, - [SMALL_STATE(3973)] = 197832, - [SMALL_STATE(3974)] = 197860, - [SMALL_STATE(3975)] = 197888, - [SMALL_STATE(3976)] = 197916, - [SMALL_STATE(3977)] = 197944, - [SMALL_STATE(3978)] = 197972, - [SMALL_STATE(3979)] = 198000, - [SMALL_STATE(3980)] = 198028, - [SMALL_STATE(3981)] = 198058, - [SMALL_STATE(3982)] = 198086, - [SMALL_STATE(3983)] = 198114, - [SMALL_STATE(3984)] = 198142, - [SMALL_STATE(3985)] = 198170, - [SMALL_STATE(3986)] = 198198, - [SMALL_STATE(3987)] = 198228, - [SMALL_STATE(3988)] = 198256, - [SMALL_STATE(3989)] = 198284, - [SMALL_STATE(3990)] = 198312, - [SMALL_STATE(3991)] = 198340, - [SMALL_STATE(3992)] = 198370, - [SMALL_STATE(3993)] = 198398, - [SMALL_STATE(3994)] = 198426, - [SMALL_STATE(3995)] = 198454, - [SMALL_STATE(3996)] = 198482, - [SMALL_STATE(3997)] = 198510, - [SMALL_STATE(3998)] = 198538, - [SMALL_STATE(3999)] = 198566, - [SMALL_STATE(4000)] = 198594, - [SMALL_STATE(4001)] = 198622, - [SMALL_STATE(4002)] = 198652, - [SMALL_STATE(4003)] = 198682, - [SMALL_STATE(4004)] = 198710, - [SMALL_STATE(4005)] = 198738, - [SMALL_STATE(4006)] = 198766, - [SMALL_STATE(4007)] = 198794, - [SMALL_STATE(4008)] = 198822, - [SMALL_STATE(4009)] = 198852, - [SMALL_STATE(4010)] = 198880, - [SMALL_STATE(4011)] = 198910, - [SMALL_STATE(4012)] = 198938, - [SMALL_STATE(4013)] = 198966, - [SMALL_STATE(4014)] = 198994, - [SMALL_STATE(4015)] = 199022, - [SMALL_STATE(4016)] = 199050, - [SMALL_STATE(4017)] = 199080, - [SMALL_STATE(4018)] = 199108, - [SMALL_STATE(4019)] = 199136, - [SMALL_STATE(4020)] = 199166, - [SMALL_STATE(4021)] = 199194, - [SMALL_STATE(4022)] = 199222, - [SMALL_STATE(4023)] = 199250, - [SMALL_STATE(4024)] = 199272, - [SMALL_STATE(4025)] = 199296, - [SMALL_STATE(4026)] = 199324, - [SMALL_STATE(4027)] = 199352, - [SMALL_STATE(4028)] = 199374, - [SMALL_STATE(4029)] = 199402, - [SMALL_STATE(4030)] = 199426, - [SMALL_STATE(4031)] = 199452, - [SMALL_STATE(4032)] = 199474, - [SMALL_STATE(4033)] = 199504, - [SMALL_STATE(4034)] = 199532, - [SMALL_STATE(4035)] = 199554, - [SMALL_STATE(4036)] = 199584, - [SMALL_STATE(4037)] = 199606, - [SMALL_STATE(4038)] = 199634, - [SMALL_STATE(4039)] = 199662, - [SMALL_STATE(4040)] = 199692, - [SMALL_STATE(4041)] = 199720, - [SMALL_STATE(4042)] = 199750, - [SMALL_STATE(4043)] = 199778, - [SMALL_STATE(4044)] = 199808, - [SMALL_STATE(4045)] = 199836, - [SMALL_STATE(4046)] = 199864, - [SMALL_STATE(4047)] = 199892, - [SMALL_STATE(4048)] = 199920, - [SMALL_STATE(4049)] = 199948, - [SMALL_STATE(4050)] = 199976, - [SMALL_STATE(4051)] = 200004, - [SMALL_STATE(4052)] = 200032, - [SMALL_STATE(4053)] = 200062, - [SMALL_STATE(4054)] = 200090, - [SMALL_STATE(4055)] = 200116, - [SMALL_STATE(4056)] = 200143, - [SMALL_STATE(4057)] = 200166, - [SMALL_STATE(4058)] = 200191, - [SMALL_STATE(4059)] = 200216, - [SMALL_STATE(4060)] = 200243, - [SMALL_STATE(4061)] = 200264, - [SMALL_STATE(4062)] = 200291, - [SMALL_STATE(4063)] = 200318, - [SMALL_STATE(4064)] = 200345, - [SMALL_STATE(4065)] = 200372, - [SMALL_STATE(4066)] = 200397, - [SMALL_STATE(4067)] = 200424, - [SMALL_STATE(4068)] = 200451, - [SMALL_STATE(4069)] = 200478, - [SMALL_STATE(4070)] = 200503, - [SMALL_STATE(4071)] = 200530, - [SMALL_STATE(4072)] = 200557, - [SMALL_STATE(4073)] = 200584, - [SMALL_STATE(4074)] = 200613, - [SMALL_STATE(4075)] = 200640, - [SMALL_STATE(4076)] = 200667, - [SMALL_STATE(4077)] = 200694, - [SMALL_STATE(4078)] = 200721, - [SMALL_STATE(4079)] = 200748, - [SMALL_STATE(4080)] = 200771, - [SMALL_STATE(4081)] = 200798, - [SMALL_STATE(4082)] = 200823, - [SMALL_STATE(4083)] = 200850, - [SMALL_STATE(4084)] = 200877, - [SMALL_STATE(4085)] = 200906, - [SMALL_STATE(4086)] = 200931, - [SMALL_STATE(4087)] = 200958, - [SMALL_STATE(4088)] = 200983, - [SMALL_STATE(4089)] = 201010, - [SMALL_STATE(4090)] = 201037, - [SMALL_STATE(4091)] = 201064, - [SMALL_STATE(4092)] = 201093, - [SMALL_STATE(4093)] = 201120, - [SMALL_STATE(4094)] = 201147, - [SMALL_STATE(4095)] = 201174, - [SMALL_STATE(4096)] = 201201, - [SMALL_STATE(4097)] = 201226, - [SMALL_STATE(4098)] = 201255, - [SMALL_STATE(4099)] = 201282, - [SMALL_STATE(4100)] = 201309, - [SMALL_STATE(4101)] = 201336, - [SMALL_STATE(4102)] = 201363, - [SMALL_STATE(4103)] = 201390, - [SMALL_STATE(4104)] = 201417, - [SMALL_STATE(4105)] = 201444, - [SMALL_STATE(4106)] = 201471, - [SMALL_STATE(4107)] = 201500, - [SMALL_STATE(4108)] = 201527, - [SMALL_STATE(4109)] = 201554, - [SMALL_STATE(4110)] = 201583, - [SMALL_STATE(4111)] = 201610, - [SMALL_STATE(4112)] = 201637, - [SMALL_STATE(4113)] = 201664, - [SMALL_STATE(4114)] = 201687, - [SMALL_STATE(4115)] = 201714, - [SMALL_STATE(4116)] = 201741, - [SMALL_STATE(4117)] = 201770, - [SMALL_STATE(4118)] = 201797, - [SMALL_STATE(4119)] = 201822, - [SMALL_STATE(4120)] = 201849, - [SMALL_STATE(4121)] = 201870, - [SMALL_STATE(4122)] = 201893, - [SMALL_STATE(4123)] = 201918, - [SMALL_STATE(4124)] = 201945, - [SMALL_STATE(4125)] = 201972, - [SMALL_STATE(4126)] = 201999, - [SMALL_STATE(4127)] = 202026, - [SMALL_STATE(4128)] = 202055, - [SMALL_STATE(4129)] = 202082, - [SMALL_STATE(4130)] = 202109, - [SMALL_STATE(4131)] = 202134, - [SMALL_STATE(4132)] = 202155, - [SMALL_STATE(4133)] = 202182, - [SMALL_STATE(4134)] = 202209, - [SMALL_STATE(4135)] = 202236, - [SMALL_STATE(4136)] = 202263, - [SMALL_STATE(4137)] = 202290, - [SMALL_STATE(4138)] = 202317, - [SMALL_STATE(4139)] = 202344, - [SMALL_STATE(4140)] = 202371, - [SMALL_STATE(4141)] = 202398, - [SMALL_STATE(4142)] = 202425, - [SMALL_STATE(4143)] = 202452, - [SMALL_STATE(4144)] = 202473, - [SMALL_STATE(4145)] = 202498, - [SMALL_STATE(4146)] = 202525, - [SMALL_STATE(4147)] = 202552, - [SMALL_STATE(4148)] = 202579, - [SMALL_STATE(4149)] = 202606, - [SMALL_STATE(4150)] = 202631, - [SMALL_STATE(4151)] = 202658, - [SMALL_STATE(4152)] = 202685, - [SMALL_STATE(4153)] = 202714, - [SMALL_STATE(4154)] = 202739, - [SMALL_STATE(4155)] = 202764, - [SMALL_STATE(4156)] = 202787, - [SMALL_STATE(4157)] = 202814, - [SMALL_STATE(4158)] = 202841, - [SMALL_STATE(4159)] = 202868, - [SMALL_STATE(4160)] = 202893, - [SMALL_STATE(4161)] = 202920, - [SMALL_STATE(4162)] = 202949, - [SMALL_STATE(4163)] = 202974, - [SMALL_STATE(4164)] = 202999, - [SMALL_STATE(4165)] = 203022, - [SMALL_STATE(4166)] = 203049, - [SMALL_STATE(4167)] = 203074, - [SMALL_STATE(4168)] = 203099, - [SMALL_STATE(4169)] = 203126, - [SMALL_STATE(4170)] = 203151, - [SMALL_STATE(4171)] = 203178, - [SMALL_STATE(4172)] = 203203, - [SMALL_STATE(4173)] = 203230, - [SMALL_STATE(4174)] = 203257, - [SMALL_STATE(4175)] = 203286, - [SMALL_STATE(4176)] = 203313, - [SMALL_STATE(4177)] = 203338, - [SMALL_STATE(4178)] = 203365, - [SMALL_STATE(4179)] = 203390, - [SMALL_STATE(4180)] = 203415, - [SMALL_STATE(4181)] = 203442, - [SMALL_STATE(4182)] = 203471, - [SMALL_STATE(4183)] = 203498, - [SMALL_STATE(4184)] = 203527, - [SMALL_STATE(4185)] = 203554, - [SMALL_STATE(4186)] = 203581, - [SMALL_STATE(4187)] = 203610, - [SMALL_STATE(4188)] = 203633, - [SMALL_STATE(4189)] = 203660, - [SMALL_STATE(4190)] = 203683, - [SMALL_STATE(4191)] = 203710, - [SMALL_STATE(4192)] = 203737, - [SMALL_STATE(4193)] = 203764, - [SMALL_STATE(4194)] = 203791, - [SMALL_STATE(4195)] = 203820, - [SMALL_STATE(4196)] = 203847, - [SMALL_STATE(4197)] = 203874, - [SMALL_STATE(4198)] = 203899, - [SMALL_STATE(4199)] = 203926, - [SMALL_STATE(4200)] = 203953, - [SMALL_STATE(4201)] = 203980, - [SMALL_STATE(4202)] = 204009, - [SMALL_STATE(4203)] = 204034, - [SMALL_STATE(4204)] = 204059, - [SMALL_STATE(4205)] = 204086, - [SMALL_STATE(4206)] = 204113, - [SMALL_STATE(4207)] = 204140, - [SMALL_STATE(4208)] = 204167, - [SMALL_STATE(4209)] = 204190, - [SMALL_STATE(4210)] = 204217, - [SMALL_STATE(4211)] = 204244, - [SMALL_STATE(4212)] = 204268, - [SMALL_STATE(4213)] = 204290, - [SMALL_STATE(4214)] = 204314, - [SMALL_STATE(4215)] = 204336, - [SMALL_STATE(4216)] = 204358, - [SMALL_STATE(4217)] = 204382, - [SMALL_STATE(4218)] = 204406, - [SMALL_STATE(4219)] = 204428, - [SMALL_STATE(4220)] = 204450, - [SMALL_STATE(4221)] = 204472, - [SMALL_STATE(4222)] = 204494, - [SMALL_STATE(4223)] = 204518, - [SMALL_STATE(4224)] = 204542, - [SMALL_STATE(4225)] = 204566, - [SMALL_STATE(4226)] = 204586, - [SMALL_STATE(4227)] = 204610, - [SMALL_STATE(4228)] = 204634, - [SMALL_STATE(4229)] = 204658, - [SMALL_STATE(4230)] = 204680, - [SMALL_STATE(4231)] = 204704, - [SMALL_STATE(4232)] = 204726, - [SMALL_STATE(4233)] = 204750, - [SMALL_STATE(4234)] = 204772, - [SMALL_STATE(4235)] = 204794, - [SMALL_STATE(4236)] = 204816, - [SMALL_STATE(4237)] = 204840, - [SMALL_STATE(4238)] = 204864, - [SMALL_STATE(4239)] = 204888, - [SMALL_STATE(4240)] = 204912, - [SMALL_STATE(4241)] = 204936, - [SMALL_STATE(4242)] = 204960, - [SMALL_STATE(4243)] = 204984, - [SMALL_STATE(4244)] = 205008, - [SMALL_STATE(4245)] = 205032, - [SMALL_STATE(4246)] = 205056, - [SMALL_STATE(4247)] = 205078, - [SMALL_STATE(4248)] = 205100, - [SMALL_STATE(4249)] = 205122, - [SMALL_STATE(4250)] = 205146, - [SMALL_STATE(4251)] = 205170, - [SMALL_STATE(4252)] = 205194, - [SMALL_STATE(4253)] = 205218, - [SMALL_STATE(4254)] = 205240, - [SMALL_STATE(4255)] = 205264, - [SMALL_STATE(4256)] = 205288, - [SMALL_STATE(4257)] = 205312, - [SMALL_STATE(4258)] = 205336, - [SMALL_STATE(4259)] = 205358, - [SMALL_STATE(4260)] = 205382, - [SMALL_STATE(4261)] = 205406, - [SMALL_STATE(4262)] = 205430, - [SMALL_STATE(4263)] = 205454, - [SMALL_STATE(4264)] = 205476, - [SMALL_STATE(4265)] = 205500, - [SMALL_STATE(4266)] = 205524, - [SMALL_STATE(4267)] = 205546, - [SMALL_STATE(4268)] = 205570, - [SMALL_STATE(4269)] = 205594, - [SMALL_STATE(4270)] = 205618, - [SMALL_STATE(4271)] = 205642, - [SMALL_STATE(4272)] = 205666, - [SMALL_STATE(4273)] = 205690, - [SMALL_STATE(4274)] = 205714, - [SMALL_STATE(4275)] = 205736, - [SMALL_STATE(4276)] = 205758, - [SMALL_STATE(4277)] = 205780, - [SMALL_STATE(4278)] = 205804, - [SMALL_STATE(4279)] = 205826, - [SMALL_STATE(4280)] = 205850, - [SMALL_STATE(4281)] = 205874, - [SMALL_STATE(4282)] = 205898, - [SMALL_STATE(4283)] = 205922, - [SMALL_STATE(4284)] = 205946, - [SMALL_STATE(4285)] = 205970, - [SMALL_STATE(4286)] = 205994, - [SMALL_STATE(4287)] = 206018, - [SMALL_STATE(4288)] = 206042, - [SMALL_STATE(4289)] = 206066, - [SMALL_STATE(4290)] = 206088, - [SMALL_STATE(4291)] = 206110, - [SMALL_STATE(4292)] = 206134, - [SMALL_STATE(4293)] = 206158, - [SMALL_STATE(4294)] = 206182, - [SMALL_STATE(4295)] = 206206, - [SMALL_STATE(4296)] = 206230, - [SMALL_STATE(4297)] = 206252, - [SMALL_STATE(4298)] = 206276, - [SMALL_STATE(4299)] = 206300, - [SMALL_STATE(4300)] = 206324, - [SMALL_STATE(4301)] = 206348, - [SMALL_STATE(4302)] = 206372, - [SMALL_STATE(4303)] = 206396, - [SMALL_STATE(4304)] = 206418, - [SMALL_STATE(4305)] = 206442, - [SMALL_STATE(4306)] = 206466, - [SMALL_STATE(4307)] = 206490, - [SMALL_STATE(4308)] = 206514, - [SMALL_STATE(4309)] = 206534, - [SMALL_STATE(4310)] = 206558, - [SMALL_STATE(4311)] = 206582, - [SMALL_STATE(4312)] = 206602, - [SMALL_STATE(4313)] = 206626, - [SMALL_STATE(4314)] = 206650, - [SMALL_STATE(4315)] = 206674, - [SMALL_STATE(4316)] = 206698, - [SMALL_STATE(4317)] = 206722, - [SMALL_STATE(4318)] = 206746, - [SMALL_STATE(4319)] = 206768, - [SMALL_STATE(4320)] = 206792, - [SMALL_STATE(4321)] = 206812, - [SMALL_STATE(4322)] = 206836, - [SMALL_STATE(4323)] = 206860, - [SMALL_STATE(4324)] = 206884, - [SMALL_STATE(4325)] = 206908, - [SMALL_STATE(4326)] = 206932, - [SMALL_STATE(4327)] = 206956, - [SMALL_STATE(4328)] = 206980, - [SMALL_STATE(4329)] = 207004, - [SMALL_STATE(4330)] = 207028, - [SMALL_STATE(4331)] = 207050, - [SMALL_STATE(4332)] = 207074, - [SMALL_STATE(4333)] = 207098, - [SMALL_STATE(4334)] = 207120, - [SMALL_STATE(4335)] = 207144, - [SMALL_STATE(4336)] = 207164, - [SMALL_STATE(4337)] = 207188, - [SMALL_STATE(4338)] = 207212, - [SMALL_STATE(4339)] = 207236, - [SMALL_STATE(4340)] = 207260, - [SMALL_STATE(4341)] = 207284, - [SMALL_STATE(4342)] = 207308, - [SMALL_STATE(4343)] = 207332, - [SMALL_STATE(4344)] = 207356, - [SMALL_STATE(4345)] = 207380, - [SMALL_STATE(4346)] = 207402, - [SMALL_STATE(4347)] = 207426, - [SMALL_STATE(4348)] = 207450, - [SMALL_STATE(4349)] = 207474, - [SMALL_STATE(4350)] = 207496, - [SMALL_STATE(4351)] = 207520, - [SMALL_STATE(4352)] = 207544, - [SMALL_STATE(4353)] = 207568, - [SMALL_STATE(4354)] = 207592, - [SMALL_STATE(4355)] = 207616, - [SMALL_STATE(4356)] = 207640, - [SMALL_STATE(4357)] = 207664, - [SMALL_STATE(4358)] = 207684, - [SMALL_STATE(4359)] = 207706, - [SMALL_STATE(4360)] = 207730, - [SMALL_STATE(4361)] = 207754, - [SMALL_STATE(4362)] = 207774, - [SMALL_STATE(4363)] = 207798, - [SMALL_STATE(4364)] = 207818, - [SMALL_STATE(4365)] = 207842, - [SMALL_STATE(4366)] = 207866, - [SMALL_STATE(4367)] = 207890, - [SMALL_STATE(4368)] = 207914, - [SMALL_STATE(4369)] = 207938, - [SMALL_STATE(4370)] = 207962, - [SMALL_STATE(4371)] = 207986, - [SMALL_STATE(4372)] = 208010, - [SMALL_STATE(4373)] = 208032, - [SMALL_STATE(4374)] = 208054, - [SMALL_STATE(4375)] = 208078, - [SMALL_STATE(4376)] = 208102, - [SMALL_STATE(4377)] = 208126, - [SMALL_STATE(4378)] = 208148, - [SMALL_STATE(4379)] = 208172, - [SMALL_STATE(4380)] = 208196, - [SMALL_STATE(4381)] = 208220, - [SMALL_STATE(4382)] = 208244, - [SMALL_STATE(4383)] = 208268, - [SMALL_STATE(4384)] = 208292, - [SMALL_STATE(4385)] = 208316, - [SMALL_STATE(4386)] = 208340, - [SMALL_STATE(4387)] = 208364, - [SMALL_STATE(4388)] = 208388, - [SMALL_STATE(4389)] = 208412, - [SMALL_STATE(4390)] = 208436, - [SMALL_STATE(4391)] = 208460, - [SMALL_STATE(4392)] = 208484, - [SMALL_STATE(4393)] = 208508, - [SMALL_STATE(4394)] = 208532, - [SMALL_STATE(4395)] = 208556, - [SMALL_STATE(4396)] = 208580, - [SMALL_STATE(4397)] = 208604, - [SMALL_STATE(4398)] = 208628, - [SMALL_STATE(4399)] = 208652, - [SMALL_STATE(4400)] = 208676, - [SMALL_STATE(4401)] = 208698, - [SMALL_STATE(4402)] = 208722, - [SMALL_STATE(4403)] = 208746, - [SMALL_STATE(4404)] = 208770, - [SMALL_STATE(4405)] = 208794, - [SMALL_STATE(4406)] = 208818, - [SMALL_STATE(4407)] = 208842, - [SMALL_STATE(4408)] = 208866, - [SMALL_STATE(4409)] = 208890, - [SMALL_STATE(4410)] = 208912, - [SMALL_STATE(4411)] = 208934, - [SMALL_STATE(4412)] = 208958, - [SMALL_STATE(4413)] = 208982, - [SMALL_STATE(4414)] = 209006, - [SMALL_STATE(4415)] = 209028, - [SMALL_STATE(4416)] = 209050, - [SMALL_STATE(4417)] = 209074, - [SMALL_STATE(4418)] = 209098, - [SMALL_STATE(4419)] = 209122, - [SMALL_STATE(4420)] = 209142, - [SMALL_STATE(4421)] = 209164, - [SMALL_STATE(4422)] = 209188, - [SMALL_STATE(4423)] = 209210, - [SMALL_STATE(4424)] = 209234, - [SMALL_STATE(4425)] = 209258, - [SMALL_STATE(4426)] = 209282, - [SMALL_STATE(4427)] = 209306, - [SMALL_STATE(4428)] = 209330, - [SMALL_STATE(4429)] = 209352, - [SMALL_STATE(4430)] = 209376, - [SMALL_STATE(4431)] = 209400, - [SMALL_STATE(4432)] = 209424, - [SMALL_STATE(4433)] = 209448, - [SMALL_STATE(4434)] = 209472, - [SMALL_STATE(4435)] = 209496, - [SMALL_STATE(4436)] = 209520, - [SMALL_STATE(4437)] = 209544, - [SMALL_STATE(4438)] = 209568, - [SMALL_STATE(4439)] = 209592, - [SMALL_STATE(4440)] = 209616, - [SMALL_STATE(4441)] = 209640, - [SMALL_STATE(4442)] = 209662, - [SMALL_STATE(4443)] = 209686, - [SMALL_STATE(4444)] = 209710, - [SMALL_STATE(4445)] = 209734, - [SMALL_STATE(4446)] = 209758, - [SMALL_STATE(4447)] = 209782, - [SMALL_STATE(4448)] = 209806, - [SMALL_STATE(4449)] = 209830, - [SMALL_STATE(4450)] = 209854, - [SMALL_STATE(4451)] = 209876, - [SMALL_STATE(4452)] = 209900, - [SMALL_STATE(4453)] = 209924, - [SMALL_STATE(4454)] = 209948, - [SMALL_STATE(4455)] = 209972, - [SMALL_STATE(4456)] = 209996, - [SMALL_STATE(4457)] = 210020, - [SMALL_STATE(4458)] = 210044, - [SMALL_STATE(4459)] = 210068, - [SMALL_STATE(4460)] = 210090, - [SMALL_STATE(4461)] = 210114, - [SMALL_STATE(4462)] = 210136, - [SMALL_STATE(4463)] = 210160, - [SMALL_STATE(4464)] = 210184, - [SMALL_STATE(4465)] = 210208, - [SMALL_STATE(4466)] = 210230, - [SMALL_STATE(4467)] = 210252, - [SMALL_STATE(4468)] = 210276, - [SMALL_STATE(4469)] = 210300, - [SMALL_STATE(4470)] = 210324, - [SMALL_STATE(4471)] = 210348, - [SMALL_STATE(4472)] = 210372, - [SMALL_STATE(4473)] = 210396, - [SMALL_STATE(4474)] = 210420, - [SMALL_STATE(4475)] = 210444, - [SMALL_STATE(4476)] = 210468, - [SMALL_STATE(4477)] = 210492, - [SMALL_STATE(4478)] = 210516, - [SMALL_STATE(4479)] = 210540, - [SMALL_STATE(4480)] = 210564, - [SMALL_STATE(4481)] = 210588, - [SMALL_STATE(4482)] = 210612, - [SMALL_STATE(4483)] = 210636, - [SMALL_STATE(4484)] = 210660, - [SMALL_STATE(4485)] = 210684, - [SMALL_STATE(4486)] = 210708, - [SMALL_STATE(4487)] = 210732, - [SMALL_STATE(4488)] = 210756, - [SMALL_STATE(4489)] = 210780, - [SMALL_STATE(4490)] = 210804, - [SMALL_STATE(4491)] = 210824, - [SMALL_STATE(4492)] = 210848, - [SMALL_STATE(4493)] = 210872, - [SMALL_STATE(4494)] = 210896, - [SMALL_STATE(4495)] = 210920, - [SMALL_STATE(4496)] = 210944, - [SMALL_STATE(4497)] = 210968, - [SMALL_STATE(4498)] = 210992, - [SMALL_STATE(4499)] = 211016, - [SMALL_STATE(4500)] = 211040, - [SMALL_STATE(4501)] = 211064, - [SMALL_STATE(4502)] = 211088, - [SMALL_STATE(4503)] = 211112, - [SMALL_STATE(4504)] = 211136, - [SMALL_STATE(4505)] = 211156, - [SMALL_STATE(4506)] = 211180, - [SMALL_STATE(4507)] = 211204, - [SMALL_STATE(4508)] = 211226, - [SMALL_STATE(4509)] = 211248, - [SMALL_STATE(4510)] = 211270, - [SMALL_STATE(4511)] = 211294, - [SMALL_STATE(4512)] = 211318, - [SMALL_STATE(4513)] = 211342, - [SMALL_STATE(4514)] = 211366, - [SMALL_STATE(4515)] = 211390, - [SMALL_STATE(4516)] = 211412, - [SMALL_STATE(4517)] = 211436, - [SMALL_STATE(4518)] = 211460, - [SMALL_STATE(4519)] = 211484, - [SMALL_STATE(4520)] = 211508, - [SMALL_STATE(4521)] = 211528, - [SMALL_STATE(4522)] = 211552, - [SMALL_STATE(4523)] = 211572, - [SMALL_STATE(4524)] = 211596, - [SMALL_STATE(4525)] = 211620, - [SMALL_STATE(4526)] = 211642, - [SMALL_STATE(4527)] = 211666, - [SMALL_STATE(4528)] = 211690, - [SMALL_STATE(4529)] = 211714, - [SMALL_STATE(4530)] = 211738, - [SMALL_STATE(4531)] = 211760, - [SMALL_STATE(4532)] = 211784, - [SMALL_STATE(4533)] = 211806, - [SMALL_STATE(4534)] = 211830, - [SMALL_STATE(4535)] = 211854, - [SMALL_STATE(4536)] = 211878, - [SMALL_STATE(4537)] = 211902, - [SMALL_STATE(4538)] = 211924, - [SMALL_STATE(4539)] = 211948, - [SMALL_STATE(4540)] = 211972, - [SMALL_STATE(4541)] = 211996, - [SMALL_STATE(4542)] = 212020, - [SMALL_STATE(4543)] = 212044, - [SMALL_STATE(4544)] = 212065, - [SMALL_STATE(4545)] = 212084, - [SMALL_STATE(4546)] = 212103, - [SMALL_STATE(4547)] = 212122, - [SMALL_STATE(4548)] = 212141, - [SMALL_STATE(4549)] = 212162, - [SMALL_STATE(4550)] = 212181, - [SMALL_STATE(4551)] = 212202, - [SMALL_STATE(4552)] = 212221, - [SMALL_STATE(4553)] = 212240, - [SMALL_STATE(4554)] = 212259, - [SMALL_STATE(4555)] = 212280, - [SMALL_STATE(4556)] = 212301, - [SMALL_STATE(4557)] = 212322, - [SMALL_STATE(4558)] = 212341, - [SMALL_STATE(4559)] = 212362, - [SMALL_STATE(4560)] = 212381, - [SMALL_STATE(4561)] = 212400, - [SMALL_STATE(4562)] = 212421, - [SMALL_STATE(4563)] = 212440, - [SMALL_STATE(4564)] = 212459, - [SMALL_STATE(4565)] = 212478, - [SMALL_STATE(4566)] = 212497, - [SMALL_STATE(4567)] = 212516, - [SMALL_STATE(4568)] = 212535, - [SMALL_STATE(4569)] = 212554, - [SMALL_STATE(4570)] = 212575, - [SMALL_STATE(4571)] = 212594, - [SMALL_STATE(4572)] = 212615, - [SMALL_STATE(4573)] = 212634, - [SMALL_STATE(4574)] = 212653, - [SMALL_STATE(4575)] = 212672, - [SMALL_STATE(4576)] = 212691, - [SMALL_STATE(4577)] = 212712, - [SMALL_STATE(4578)] = 212733, - [SMALL_STATE(4579)] = 212752, - [SMALL_STATE(4580)] = 212771, - [SMALL_STATE(4581)] = 212790, - [SMALL_STATE(4582)] = 212811, - [SMALL_STATE(4583)] = 212830, - [SMALL_STATE(4584)] = 212849, - [SMALL_STATE(4585)] = 212868, - [SMALL_STATE(4586)] = 212889, - [SMALL_STATE(4587)] = 212908, - [SMALL_STATE(4588)] = 212927, - [SMALL_STATE(4589)] = 212946, - [SMALL_STATE(4590)] = 212965, - [SMALL_STATE(4591)] = 212984, - [SMALL_STATE(4592)] = 213005, - [SMALL_STATE(4593)] = 213026, - [SMALL_STATE(4594)] = 213045, - [SMALL_STATE(4595)] = 213064, - [SMALL_STATE(4596)] = 213083, - [SMALL_STATE(4597)] = 213104, - [SMALL_STATE(4598)] = 213123, - [SMALL_STATE(4599)] = 213142, - [SMALL_STATE(4600)] = 213163, - [SMALL_STATE(4601)] = 213184, - [SMALL_STATE(4602)] = 213203, - [SMALL_STATE(4603)] = 213224, - [SMALL_STATE(4604)] = 213243, - [SMALL_STATE(4605)] = 213264, - [SMALL_STATE(4606)] = 213283, - [SMALL_STATE(4607)] = 213302, - [SMALL_STATE(4608)] = 213321, - [SMALL_STATE(4609)] = 213340, - [SMALL_STATE(4610)] = 213359, - [SMALL_STATE(4611)] = 213380, - [SMALL_STATE(4612)] = 213399, - [SMALL_STATE(4613)] = 213418, - [SMALL_STATE(4614)] = 213437, - [SMALL_STATE(4615)] = 213456, - [SMALL_STATE(4616)] = 213475, - [SMALL_STATE(4617)] = 213496, - [SMALL_STATE(4618)] = 213515, - [SMALL_STATE(4619)] = 213534, - [SMALL_STATE(4620)] = 213553, - [SMALL_STATE(4621)] = 213572, - [SMALL_STATE(4622)] = 213591, - [SMALL_STATE(4623)] = 213612, - [SMALL_STATE(4624)] = 213631, - [SMALL_STATE(4625)] = 213652, - [SMALL_STATE(4626)] = 213671, - [SMALL_STATE(4627)] = 213690, - [SMALL_STATE(4628)] = 213709, - [SMALL_STATE(4629)] = 213728, - [SMALL_STATE(4630)] = 213747, - [SMALL_STATE(4631)] = 213766, - [SMALL_STATE(4632)] = 213787, - [SMALL_STATE(4633)] = 213806, - [SMALL_STATE(4634)] = 213825, - [SMALL_STATE(4635)] = 213844, - [SMALL_STATE(4636)] = 213863, - [SMALL_STATE(4637)] = 213884, - [SMALL_STATE(4638)] = 213903, - [SMALL_STATE(4639)] = 213922, - [SMALL_STATE(4640)] = 213943, - [SMALL_STATE(4641)] = 213962, - [SMALL_STATE(4642)] = 213983, - [SMALL_STATE(4643)] = 214002, - [SMALL_STATE(4644)] = 214021, - [SMALL_STATE(4645)] = 214040, - [SMALL_STATE(4646)] = 214059, - [SMALL_STATE(4647)] = 214078, - [SMALL_STATE(4648)] = 214097, - [SMALL_STATE(4649)] = 214116, - [SMALL_STATE(4650)] = 214137, - [SMALL_STATE(4651)] = 214156, - [SMALL_STATE(4652)] = 214175, - [SMALL_STATE(4653)] = 214196, - [SMALL_STATE(4654)] = 214215, - [SMALL_STATE(4655)] = 214234, - [SMALL_STATE(4656)] = 214253, - [SMALL_STATE(4657)] = 214272, - [SMALL_STATE(4658)] = 214291, - [SMALL_STATE(4659)] = 214312, - [SMALL_STATE(4660)] = 214331, - [SMALL_STATE(4661)] = 214350, - [SMALL_STATE(4662)] = 214369, - [SMALL_STATE(4663)] = 214390, - [SMALL_STATE(4664)] = 214411, - [SMALL_STATE(4665)] = 214432, - [SMALL_STATE(4666)] = 214453, - [SMALL_STATE(4667)] = 214472, - [SMALL_STATE(4668)] = 214490, - [SMALL_STATE(4669)] = 214508, - [SMALL_STATE(4670)] = 214526, - [SMALL_STATE(4671)] = 214544, - [SMALL_STATE(4672)] = 214562, - [SMALL_STATE(4673)] = 214580, - [SMALL_STATE(4674)] = 214598, - [SMALL_STATE(4675)] = 214616, - [SMALL_STATE(4676)] = 214636, - [SMALL_STATE(4677)] = 214654, - [SMALL_STATE(4678)] = 214672, - [SMALL_STATE(4679)] = 214690, - [SMALL_STATE(4680)] = 214708, - [SMALL_STATE(4681)] = 214726, - [SMALL_STATE(4682)] = 214744, - [SMALL_STATE(4683)] = 214762, - [SMALL_STATE(4684)] = 214780, - [SMALL_STATE(4685)] = 214798, - [SMALL_STATE(4686)] = 214816, - [SMALL_STATE(4687)] = 214834, - [SMALL_STATE(4688)] = 214852, - [SMALL_STATE(4689)] = 214870, - [SMALL_STATE(4690)] = 214888, - [SMALL_STATE(4691)] = 214906, - [SMALL_STATE(4692)] = 214924, - [SMALL_STATE(4693)] = 214942, - [SMALL_STATE(4694)] = 214960, - [SMALL_STATE(4695)] = 214978, - [SMALL_STATE(4696)] = 214996, - [SMALL_STATE(4697)] = 215014, - [SMALL_STATE(4698)] = 215032, - [SMALL_STATE(4699)] = 215050, - [SMALL_STATE(4700)] = 215068, - [SMALL_STATE(4701)] = 215086, - [SMALL_STATE(4702)] = 215104, - [SMALL_STATE(4703)] = 215122, - [SMALL_STATE(4704)] = 215140, - [SMALL_STATE(4705)] = 215158, - [SMALL_STATE(4706)] = 215176, - [SMALL_STATE(4707)] = 215194, - [SMALL_STATE(4708)] = 215212, - [SMALL_STATE(4709)] = 215230, - [SMALL_STATE(4710)] = 215248, - [SMALL_STATE(4711)] = 215266, - [SMALL_STATE(4712)] = 215284, - [SMALL_STATE(4713)] = 215302, - [SMALL_STATE(4714)] = 215320, - [SMALL_STATE(4715)] = 215340, - [SMALL_STATE(4716)] = 215358, - [SMALL_STATE(4717)] = 215376, - [SMALL_STATE(4718)] = 215394, - [SMALL_STATE(4719)] = 215412, - [SMALL_STATE(4720)] = 215430, - [SMALL_STATE(4721)] = 215448, - [SMALL_STATE(4722)] = 215466, - [SMALL_STATE(4723)] = 215484, - [SMALL_STATE(4724)] = 215502, - [SMALL_STATE(4725)] = 215522, - [SMALL_STATE(4726)] = 215540, - [SMALL_STATE(4727)] = 215558, - [SMALL_STATE(4728)] = 215576, - [SMALL_STATE(4729)] = 215596, - [SMALL_STATE(4730)] = 215614, - [SMALL_STATE(4731)] = 215632, - [SMALL_STATE(4732)] = 215650, - [SMALL_STATE(4733)] = 215668, - [SMALL_STATE(4734)] = 215686, - [SMALL_STATE(4735)] = 215704, - [SMALL_STATE(4736)] = 215722, - [SMALL_STATE(4737)] = 215740, - [SMALL_STATE(4738)] = 215758, - [SMALL_STATE(4739)] = 215776, - [SMALL_STATE(4740)] = 215794, - [SMALL_STATE(4741)] = 215812, - [SMALL_STATE(4742)] = 215830, - [SMALL_STATE(4743)] = 215848, - [SMALL_STATE(4744)] = 215866, - [SMALL_STATE(4745)] = 215884, - [SMALL_STATE(4746)] = 215902, - [SMALL_STATE(4747)] = 215920, - [SMALL_STATE(4748)] = 215938, - [SMALL_STATE(4749)] = 215956, - [SMALL_STATE(4750)] = 215974, - [SMALL_STATE(4751)] = 215992, - [SMALL_STATE(4752)] = 216010, - [SMALL_STATE(4753)] = 216028, - [SMALL_STATE(4754)] = 216046, - [SMALL_STATE(4755)] = 216064, - [SMALL_STATE(4756)] = 216082, - [SMALL_STATE(4757)] = 216100, - [SMALL_STATE(4758)] = 216118, - [SMALL_STATE(4759)] = 216136, - [SMALL_STATE(4760)] = 216154, - [SMALL_STATE(4761)] = 216172, - [SMALL_STATE(4762)] = 216190, - [SMALL_STATE(4763)] = 216208, - [SMALL_STATE(4764)] = 216226, - [SMALL_STATE(4765)] = 216244, - [SMALL_STATE(4766)] = 216264, - [SMALL_STATE(4767)] = 216284, - [SMALL_STATE(4768)] = 216302, - [SMALL_STATE(4769)] = 216320, - [SMALL_STATE(4770)] = 216338, - [SMALL_STATE(4771)] = 216356, - [SMALL_STATE(4772)] = 216374, - [SMALL_STATE(4773)] = 216392, - [SMALL_STATE(4774)] = 216410, - [SMALL_STATE(4775)] = 216428, - [SMALL_STATE(4776)] = 216446, - [SMALL_STATE(4777)] = 216466, - [SMALL_STATE(4778)] = 216484, - [SMALL_STATE(4779)] = 216502, - [SMALL_STATE(4780)] = 216520, - [SMALL_STATE(4781)] = 216538, - [SMALL_STATE(4782)] = 216556, - [SMALL_STATE(4783)] = 216576, - [SMALL_STATE(4784)] = 216596, - [SMALL_STATE(4785)] = 216614, - [SMALL_STATE(4786)] = 216632, - [SMALL_STATE(4787)] = 216650, - [SMALL_STATE(4788)] = 216668, - [SMALL_STATE(4789)] = 216686, - [SMALL_STATE(4790)] = 216704, - [SMALL_STATE(4791)] = 216722, - [SMALL_STATE(4792)] = 216740, - [SMALL_STATE(4793)] = 216758, - [SMALL_STATE(4794)] = 216776, - [SMALL_STATE(4795)] = 216794, - [SMALL_STATE(4796)] = 216812, - [SMALL_STATE(4797)] = 216830, - [SMALL_STATE(4798)] = 216848, - [SMALL_STATE(4799)] = 216866, - [SMALL_STATE(4800)] = 216884, - [SMALL_STATE(4801)] = 216902, - [SMALL_STATE(4802)] = 216920, - [SMALL_STATE(4803)] = 216938, - [SMALL_STATE(4804)] = 216956, - [SMALL_STATE(4805)] = 216974, - [SMALL_STATE(4806)] = 216992, - [SMALL_STATE(4807)] = 217012, - [SMALL_STATE(4808)] = 217030, - [SMALL_STATE(4809)] = 217048, - [SMALL_STATE(4810)] = 217066, - [SMALL_STATE(4811)] = 217084, - [SMALL_STATE(4812)] = 217102, - [SMALL_STATE(4813)] = 217120, - [SMALL_STATE(4814)] = 217138, - [SMALL_STATE(4815)] = 217156, - [SMALL_STATE(4816)] = 217174, - [SMALL_STATE(4817)] = 217192, - [SMALL_STATE(4818)] = 217210, - [SMALL_STATE(4819)] = 217228, - [SMALL_STATE(4820)] = 217246, - [SMALL_STATE(4821)] = 217264, - [SMALL_STATE(4822)] = 217282, - [SMALL_STATE(4823)] = 217300, - [SMALL_STATE(4824)] = 217318, - [SMALL_STATE(4825)] = 217336, - [SMALL_STATE(4826)] = 217354, - [SMALL_STATE(4827)] = 217372, - [SMALL_STATE(4828)] = 217390, - [SMALL_STATE(4829)] = 217408, - [SMALL_STATE(4830)] = 217426, - [SMALL_STATE(4831)] = 217444, - [SMALL_STATE(4832)] = 217462, - [SMALL_STATE(4833)] = 217482, - [SMALL_STATE(4834)] = 217500, - [SMALL_STATE(4835)] = 217518, - [SMALL_STATE(4836)] = 217536, - [SMALL_STATE(4837)] = 217554, - [SMALL_STATE(4838)] = 217572, - [SMALL_STATE(4839)] = 217590, - [SMALL_STATE(4840)] = 217608, - [SMALL_STATE(4841)] = 217626, - [SMALL_STATE(4842)] = 217644, - [SMALL_STATE(4843)] = 217662, - [SMALL_STATE(4844)] = 217680, - [SMALL_STATE(4845)] = 217698, - [SMALL_STATE(4846)] = 217716, - [SMALL_STATE(4847)] = 217734, - [SMALL_STATE(4848)] = 217752, - [SMALL_STATE(4849)] = 217770, - [SMALL_STATE(4850)] = 217788, - [SMALL_STATE(4851)] = 217806, - [SMALL_STATE(4852)] = 217824, - [SMALL_STATE(4853)] = 217842, - [SMALL_STATE(4854)] = 217860, - [SMALL_STATE(4855)] = 217878, - [SMALL_STATE(4856)] = 217896, - [SMALL_STATE(4857)] = 217914, - [SMALL_STATE(4858)] = 217934, - [SMALL_STATE(4859)] = 217952, - [SMALL_STATE(4860)] = 217970, - [SMALL_STATE(4861)] = 217988, - [SMALL_STATE(4862)] = 218006, - [SMALL_STATE(4863)] = 218024, - [SMALL_STATE(4864)] = 218042, - [SMALL_STATE(4865)] = 218060, - [SMALL_STATE(4866)] = 218078, - [SMALL_STATE(4867)] = 218096, - [SMALL_STATE(4868)] = 218114, - [SMALL_STATE(4869)] = 218132, - [SMALL_STATE(4870)] = 218150, - [SMALL_STATE(4871)] = 218168, - [SMALL_STATE(4872)] = 218186, - [SMALL_STATE(4873)] = 218204, - [SMALL_STATE(4874)] = 218222, - [SMALL_STATE(4875)] = 218240, - [SMALL_STATE(4876)] = 218258, - [SMALL_STATE(4877)] = 218276, - [SMALL_STATE(4878)] = 218294, - [SMALL_STATE(4879)] = 218312, - [SMALL_STATE(4880)] = 218330, - [SMALL_STATE(4881)] = 218348, - [SMALL_STATE(4882)] = 218366, - [SMALL_STATE(4883)] = 218384, - [SMALL_STATE(4884)] = 218402, - [SMALL_STATE(4885)] = 218420, - [SMALL_STATE(4886)] = 218438, - [SMALL_STATE(4887)] = 218456, - [SMALL_STATE(4888)] = 218474, - [SMALL_STATE(4889)] = 218492, - [SMALL_STATE(4890)] = 218510, - [SMALL_STATE(4891)] = 218530, - [SMALL_STATE(4892)] = 218548, - [SMALL_STATE(4893)] = 218566, - [SMALL_STATE(4894)] = 218584, - [SMALL_STATE(4895)] = 218602, - [SMALL_STATE(4896)] = 218620, - [SMALL_STATE(4897)] = 218638, - [SMALL_STATE(4898)] = 218656, - [SMALL_STATE(4899)] = 218674, - [SMALL_STATE(4900)] = 218692, - [SMALL_STATE(4901)] = 218710, - [SMALL_STATE(4902)] = 218728, - [SMALL_STATE(4903)] = 218746, - [SMALL_STATE(4904)] = 218764, - [SMALL_STATE(4905)] = 218782, - [SMALL_STATE(4906)] = 218800, - [SMALL_STATE(4907)] = 218818, - [SMALL_STATE(4908)] = 218836, - [SMALL_STATE(4909)] = 218854, - [SMALL_STATE(4910)] = 218872, - [SMALL_STATE(4911)] = 218892, - [SMALL_STATE(4912)] = 218910, - [SMALL_STATE(4913)] = 218928, - [SMALL_STATE(4914)] = 218946, - [SMALL_STATE(4915)] = 218964, - [SMALL_STATE(4916)] = 218982, - [SMALL_STATE(4917)] = 219000, - [SMALL_STATE(4918)] = 219018, - [SMALL_STATE(4919)] = 219036, - [SMALL_STATE(4920)] = 219054, - [SMALL_STATE(4921)] = 219072, - [SMALL_STATE(4922)] = 219090, - [SMALL_STATE(4923)] = 219108, - [SMALL_STATE(4924)] = 219126, - [SMALL_STATE(4925)] = 219144, - [SMALL_STATE(4926)] = 219162, - [SMALL_STATE(4927)] = 219180, - [SMALL_STATE(4928)] = 219198, - [SMALL_STATE(4929)] = 219216, - [SMALL_STATE(4930)] = 219234, - [SMALL_STATE(4931)] = 219252, - [SMALL_STATE(4932)] = 219270, - [SMALL_STATE(4933)] = 219288, - [SMALL_STATE(4934)] = 219308, - [SMALL_STATE(4935)] = 219326, - [SMALL_STATE(4936)] = 219344, - [SMALL_STATE(4937)] = 219362, - [SMALL_STATE(4938)] = 219380, - [SMALL_STATE(4939)] = 219398, - [SMALL_STATE(4940)] = 219416, - [SMALL_STATE(4941)] = 219434, - [SMALL_STATE(4942)] = 219452, - [SMALL_STATE(4943)] = 219470, - [SMALL_STATE(4944)] = 219488, - [SMALL_STATE(4945)] = 219506, - [SMALL_STATE(4946)] = 219524, - [SMALL_STATE(4947)] = 219542, - [SMALL_STATE(4948)] = 219560, - [SMALL_STATE(4949)] = 219578, - [SMALL_STATE(4950)] = 219596, - [SMALL_STATE(4951)] = 219614, - [SMALL_STATE(4952)] = 219632, - [SMALL_STATE(4953)] = 219650, - [SMALL_STATE(4954)] = 219668, - [SMALL_STATE(4955)] = 219686, - [SMALL_STATE(4956)] = 219704, - [SMALL_STATE(4957)] = 219722, - [SMALL_STATE(4958)] = 219740, - [SMALL_STATE(4959)] = 219758, - [SMALL_STATE(4960)] = 219776, - [SMALL_STATE(4961)] = 219794, - [SMALL_STATE(4962)] = 219812, - [SMALL_STATE(4963)] = 219830, - [SMALL_STATE(4964)] = 219850, - [SMALL_STATE(4965)] = 219868, - [SMALL_STATE(4966)] = 219886, - [SMALL_STATE(4967)] = 219904, - [SMALL_STATE(4968)] = 219922, - [SMALL_STATE(4969)] = 219940, - [SMALL_STATE(4970)] = 219958, - [SMALL_STATE(4971)] = 219976, - [SMALL_STATE(4972)] = 219994, - [SMALL_STATE(4973)] = 220012, - [SMALL_STATE(4974)] = 220032, - [SMALL_STATE(4975)] = 220052, - [SMALL_STATE(4976)] = 220070, - [SMALL_STATE(4977)] = 220088, - [SMALL_STATE(4978)] = 220106, - [SMALL_STATE(4979)] = 220124, - [SMALL_STATE(4980)] = 220142, - [SMALL_STATE(4981)] = 220160, - [SMALL_STATE(4982)] = 220178, - [SMALL_STATE(4983)] = 220196, - [SMALL_STATE(4984)] = 220214, - [SMALL_STATE(4985)] = 220232, - [SMALL_STATE(4986)] = 220250, - [SMALL_STATE(4987)] = 220268, - [SMALL_STATE(4988)] = 220286, - [SMALL_STATE(4989)] = 220304, - [SMALL_STATE(4990)] = 220322, - [SMALL_STATE(4991)] = 220340, - [SMALL_STATE(4992)] = 220358, - [SMALL_STATE(4993)] = 220376, - [SMALL_STATE(4994)] = 220394, - [SMALL_STATE(4995)] = 220412, - [SMALL_STATE(4996)] = 220430, - [SMALL_STATE(4997)] = 220448, - [SMALL_STATE(4998)] = 220466, - [SMALL_STATE(4999)] = 220484, - [SMALL_STATE(5000)] = 220502, - [SMALL_STATE(5001)] = 220520, - [SMALL_STATE(5002)] = 220538, - [SMALL_STATE(5003)] = 220556, - [SMALL_STATE(5004)] = 220574, - [SMALL_STATE(5005)] = 220592, - [SMALL_STATE(5006)] = 220610, - [SMALL_STATE(5007)] = 220628, - [SMALL_STATE(5008)] = 220646, - [SMALL_STATE(5009)] = 220664, - [SMALL_STATE(5010)] = 220682, - [SMALL_STATE(5011)] = 220700, - [SMALL_STATE(5012)] = 220718, - [SMALL_STATE(5013)] = 220736, - [SMALL_STATE(5014)] = 220754, - [SMALL_STATE(5015)] = 220772, - [SMALL_STATE(5016)] = 220790, - [SMALL_STATE(5017)] = 220808, - [SMALL_STATE(5018)] = 220826, - [SMALL_STATE(5019)] = 220844, - [SMALL_STATE(5020)] = 220862, - [SMALL_STATE(5021)] = 220880, - [SMALL_STATE(5022)] = 220898, - [SMALL_STATE(5023)] = 220916, - [SMALL_STATE(5024)] = 220936, - [SMALL_STATE(5025)] = 220954, - [SMALL_STATE(5026)] = 220972, - [SMALL_STATE(5027)] = 220990, - [SMALL_STATE(5028)] = 221008, - [SMALL_STATE(5029)] = 221026, - [SMALL_STATE(5030)] = 221044, - [SMALL_STATE(5031)] = 221062, - [SMALL_STATE(5032)] = 221080, - [SMALL_STATE(5033)] = 221098, - [SMALL_STATE(5034)] = 221116, - [SMALL_STATE(5035)] = 221134, - [SMALL_STATE(5036)] = 221152, - [SMALL_STATE(5037)] = 221170, - [SMALL_STATE(5038)] = 221188, - [SMALL_STATE(5039)] = 221206, - [SMALL_STATE(5040)] = 221224, - [SMALL_STATE(5041)] = 221242, - [SMALL_STATE(5042)] = 221260, - [SMALL_STATE(5043)] = 221278, - [SMALL_STATE(5044)] = 221298, - [SMALL_STATE(5045)] = 221316, - [SMALL_STATE(5046)] = 221334, - [SMALL_STATE(5047)] = 221352, - [SMALL_STATE(5048)] = 221370, - [SMALL_STATE(5049)] = 221388, - [SMALL_STATE(5050)] = 221406, - [SMALL_STATE(5051)] = 221424, - [SMALL_STATE(5052)] = 221442, - [SMALL_STATE(5053)] = 221460, - [SMALL_STATE(5054)] = 221478, - [SMALL_STATE(5055)] = 221496, - [SMALL_STATE(5056)] = 221514, - [SMALL_STATE(5057)] = 221534, - [SMALL_STATE(5058)] = 221552, - [SMALL_STATE(5059)] = 221570, - [SMALL_STATE(5060)] = 221588, - [SMALL_STATE(5061)] = 221606, - [SMALL_STATE(5062)] = 221624, - [SMALL_STATE(5063)] = 221642, - [SMALL_STATE(5064)] = 221660, - [SMALL_STATE(5065)] = 221678, - [SMALL_STATE(5066)] = 221696, - [SMALL_STATE(5067)] = 221714, - [SMALL_STATE(5068)] = 221732, - [SMALL_STATE(5069)] = 221750, - [SMALL_STATE(5070)] = 221768, - [SMALL_STATE(5071)] = 221786, - [SMALL_STATE(5072)] = 221804, - [SMALL_STATE(5073)] = 221822, - [SMALL_STATE(5074)] = 221840, - [SMALL_STATE(5075)] = 221858, - [SMALL_STATE(5076)] = 221876, - [SMALL_STATE(5077)] = 221894, - [SMALL_STATE(5078)] = 221912, - [SMALL_STATE(5079)] = 221930, - [SMALL_STATE(5080)] = 221948, - [SMALL_STATE(5081)] = 221966, - [SMALL_STATE(5082)] = 221986, - [SMALL_STATE(5083)] = 222004, - [SMALL_STATE(5084)] = 222008, - [SMALL_STATE(5085)] = 222012, - [SMALL_STATE(5086)] = 222016, - [SMALL_STATE(5087)] = 222020, - [SMALL_STATE(5088)] = 222024, + [SMALL_STATE(750)] = 0, + [SMALL_STATE(751)] = 79, + [SMALL_STATE(752)] = 156, + [SMALL_STATE(753)] = 237, + [SMALL_STATE(754)] = 318, + [SMALL_STATE(755)] = 397, + [SMALL_STATE(756)] = 476, + [SMALL_STATE(757)] = 555, + [SMALL_STATE(758)] = 632, + [SMALL_STATE(759)] = 709, + [SMALL_STATE(760)] = 794, + [SMALL_STATE(761)] = 873, + [SMALL_STATE(762)] = 950, + [SMALL_STATE(763)] = 1027, + [SMALL_STATE(764)] = 1104, + [SMALL_STATE(765)] = 1181, + [SMALL_STATE(766)] = 1258, + [SMALL_STATE(767)] = 1335, + [SMALL_STATE(768)] = 1412, + [SMALL_STATE(769)] = 1489, + [SMALL_STATE(770)] = 1630, + [SMALL_STATE(771)] = 1707, + [SMALL_STATE(772)] = 1784, + [SMALL_STATE(773)] = 1861, + [SMALL_STATE(774)] = 1938, + [SMALL_STATE(775)] = 2015, + [SMALL_STATE(776)] = 2092, + [SMALL_STATE(777)] = 2173, + [SMALL_STATE(778)] = 2250, + [SMALL_STATE(779)] = 2327, + [SMALL_STATE(780)] = 2404, + [SMALL_STATE(781)] = 2481, + [SMALL_STATE(782)] = 2562, + [SMALL_STATE(783)] = 2643, + [SMALL_STATE(784)] = 2720, + [SMALL_STATE(785)] = 2797, + [SMALL_STATE(786)] = 2938, + [SMALL_STATE(787)] = 3019, + [SMALL_STATE(788)] = 3096, + [SMALL_STATE(789)] = 3173, + [SMALL_STATE(790)] = 3250, + [SMALL_STATE(791)] = 3327, + [SMALL_STATE(792)] = 3404, + [SMALL_STATE(793)] = 3481, + [SMALL_STATE(794)] = 3622, + [SMALL_STATE(795)] = 3701, + [SMALL_STATE(796)] = 3778, + [SMALL_STATE(797)] = 3861, + [SMALL_STATE(798)] = 3938, + [SMALL_STATE(799)] = 4079, + [SMALL_STATE(800)] = 4156, + [SMALL_STATE(801)] = 4233, + [SMALL_STATE(802)] = 4310, + [SMALL_STATE(803)] = 4387, + [SMALL_STATE(804)] = 4464, + [SMALL_STATE(805)] = 4545, + [SMALL_STATE(806)] = 4622, + [SMALL_STATE(807)] = 4701, + [SMALL_STATE(808)] = 4777, + [SMALL_STATE(809)] = 4915, + [SMALL_STATE(810)] = 4995, + [SMALL_STATE(811)] = 5133, + [SMALL_STATE(812)] = 5271, + [SMALL_STATE(813)] = 5355, + [SMALL_STATE(814)] = 5431, + [SMALL_STATE(815)] = 5507, + [SMALL_STATE(816)] = 5583, + [SMALL_STATE(817)] = 5659, + [SMALL_STATE(818)] = 5797, + [SMALL_STATE(819)] = 5877, + [SMALL_STATE(820)] = 6015, + [SMALL_STATE(821)] = 6095, + [SMALL_STATE(822)] = 6233, + [SMALL_STATE(823)] = 6371, + [SMALL_STATE(824)] = 6451, + [SMALL_STATE(825)] = 6531, + [SMALL_STATE(826)] = 6606, + [SMALL_STATE(827)] = 6685, + [SMALL_STATE(828)] = 6762, + [SMALL_STATE(829)] = 6839, + [SMALL_STATE(830)] = 6922, + [SMALL_STATE(831)] = 7001, + [SMALL_STATE(832)] = 7078, + [SMALL_STATE(833)] = 7213, + [SMALL_STATE(834)] = 7290, + [SMALL_STATE(835)] = 7367, + [SMALL_STATE(836)] = 7446, + [SMALL_STATE(837)] = 7521, + [SMALL_STATE(838)] = 7600, + [SMALL_STATE(839)] = 7675, + [SMALL_STATE(840)] = 7754, + [SMALL_STATE(841)] = 7833, + [SMALL_STATE(842)] = 7912, + [SMALL_STATE(843)] = 8047, + [SMALL_STATE(844)] = 8182, + [SMALL_STATE(845)] = 8259, + [SMALL_STATE(846)] = 8394, + [SMALL_STATE(847)] = 8471, + [SMALL_STATE(848)] = 8556, + [SMALL_STATE(849)] = 8631, + [SMALL_STATE(850)] = 8766, + [SMALL_STATE(851)] = 8843, + [SMALL_STATE(852)] = 8978, + [SMALL_STATE(853)] = 9113, + [SMALL_STATE(854)] = 9192, + [SMALL_STATE(855)] = 9266, + [SMALL_STATE(856)] = 9340, + [SMALL_STATE(857)] = 9414, + [SMALL_STATE(858)] = 9488, + [SMALL_STATE(859)] = 9562, + [SMALL_STATE(860)] = 9636, + [SMALL_STATE(861)] = 9710, + [SMALL_STATE(862)] = 9784, + [SMALL_STATE(863)] = 9858, + [SMALL_STATE(864)] = 9932, + [SMALL_STATE(865)] = 10006, + [SMALL_STATE(866)] = 10080, + [SMALL_STATE(867)] = 10154, + [SMALL_STATE(868)] = 10228, + [SMALL_STATE(869)] = 10302, + [SMALL_STATE(870)] = 10378, + [SMALL_STATE(871)] = 10452, + [SMALL_STATE(872)] = 10526, + [SMALL_STATE(873)] = 10658, + [SMALL_STATE(874)] = 10736, + [SMALL_STATE(875)] = 10868, + [SMALL_STATE(876)] = 10942, + [SMALL_STATE(877)] = 11016, + [SMALL_STATE(878)] = 11164, + [SMALL_STATE(879)] = 11238, + [SMALL_STATE(880)] = 11370, + [SMALL_STATE(881)] = 11444, + [SMALL_STATE(882)] = 11518, + [SMALL_STATE(883)] = 11592, + [SMALL_STATE(884)] = 11666, + [SMALL_STATE(885)] = 11740, + [SMALL_STATE(886)] = 11814, + [SMALL_STATE(887)] = 11888, + [SMALL_STATE(888)] = 11962, + [SMALL_STATE(889)] = 12036, + [SMALL_STATE(890)] = 12114, + [SMALL_STATE(891)] = 12246, + [SMALL_STATE(892)] = 12394, + [SMALL_STATE(893)] = 12526, + [SMALL_STATE(894)] = 12658, + [SMALL_STATE(895)] = 12732, + [SMALL_STATE(896)] = 12806, + [SMALL_STATE(897)] = 12880, + [SMALL_STATE(898)] = 12954, + [SMALL_STATE(899)] = 13028, + [SMALL_STATE(900)] = 13102, + [SMALL_STATE(901)] = 13176, + [SMALL_STATE(902)] = 13250, + [SMALL_STATE(903)] = 13324, + [SMALL_STATE(904)] = 13398, + [SMALL_STATE(905)] = 13472, + [SMALL_STATE(906)] = 13604, + [SMALL_STATE(907)] = 13736, + [SMALL_STATE(908)] = 13868, + [SMALL_STATE(909)] = 14016, + [SMALL_STATE(910)] = 14090, + [SMALL_STATE(911)] = 14164, + [SMALL_STATE(912)] = 14238, + [SMALL_STATE(913)] = 14312, + [SMALL_STATE(914)] = 14386, + [SMALL_STATE(915)] = 14460, + [SMALL_STATE(916)] = 14534, + [SMALL_STATE(917)] = 14608, + [SMALL_STATE(918)] = 14682, + [SMALL_STATE(919)] = 14756, + [SMALL_STATE(920)] = 14888, + [SMALL_STATE(921)] = 14962, + [SMALL_STATE(922)] = 15036, + [SMALL_STATE(923)] = 15110, + [SMALL_STATE(924)] = 15184, + [SMALL_STATE(925)] = 15258, + [SMALL_STATE(926)] = 15332, + [SMALL_STATE(927)] = 15464, + [SMALL_STATE(928)] = 15538, + [SMALL_STATE(929)] = 15612, + [SMALL_STATE(930)] = 15688, + [SMALL_STATE(931)] = 15762, + [SMALL_STATE(932)] = 15836, + [SMALL_STATE(933)] = 15968, + [SMALL_STATE(934)] = 16042, + [SMALL_STATE(935)] = 16174, + [SMALL_STATE(936)] = 16322, + [SMALL_STATE(937)] = 16396, + [SMALL_STATE(938)] = 16470, + [SMALL_STATE(939)] = 16602, + [SMALL_STATE(940)] = 16688, + [SMALL_STATE(941)] = 16820, + [SMALL_STATE(942)] = 16900, + [SMALL_STATE(943)] = 17004, + [SMALL_STATE(944)] = 17078, + [SMALL_STATE(945)] = 17152, + [SMALL_STATE(946)] = 17256, + [SMALL_STATE(947)] = 17388, + [SMALL_STATE(948)] = 17520, + [SMALL_STATE(949)] = 17652, + [SMALL_STATE(950)] = 17784, + [SMALL_STATE(951)] = 17874, + [SMALL_STATE(952)] = 17948, + [SMALL_STATE(953)] = 18052, + [SMALL_STATE(954)] = 18148, + [SMALL_STATE(955)] = 18252, + [SMALL_STATE(956)] = 18326, + [SMALL_STATE(957)] = 18420, + [SMALL_STATE(958)] = 18494, + [SMALL_STATE(959)] = 18592, + [SMALL_STATE(960)] = 18666, + [SMALL_STATE(961)] = 18758, + [SMALL_STATE(962)] = 18838, + [SMALL_STATE(963)] = 18916, + [SMALL_STATE(964)] = 18990, + [SMALL_STATE(965)] = 19064, + [SMALL_STATE(966)] = 19138, + [SMALL_STATE(967)] = 19220, + [SMALL_STATE(968)] = 19324, + [SMALL_STATE(969)] = 19426, + [SMALL_STATE(970)] = 19574, + [SMALL_STATE(971)] = 19648, + [SMALL_STATE(972)] = 19780, + [SMALL_STATE(973)] = 19854, + [SMALL_STATE(974)] = 19928, + [SMALL_STATE(975)] = 20002, + [SMALL_STATE(976)] = 20134, + [SMALL_STATE(977)] = 20266, + [SMALL_STATE(978)] = 20398, + [SMALL_STATE(979)] = 20472, + [SMALL_STATE(980)] = 20604, + [SMALL_STATE(981)] = 20682, + [SMALL_STATE(982)] = 20814, + [SMALL_STATE(983)] = 20892, + [SMALL_STATE(984)] = 21040, + [SMALL_STATE(985)] = 21116, + [SMALL_STATE(986)] = 21248, + [SMALL_STATE(987)] = 21396, + [SMALL_STATE(988)] = 21470, + [SMALL_STATE(989)] = 21602, + [SMALL_STATE(990)] = 21676, + [SMALL_STATE(991)] = 21752, + [SMALL_STATE(992)] = 21828, + [SMALL_STATE(993)] = 21960, + [SMALL_STATE(994)] = 22036, + [SMALL_STATE(995)] = 22110, + [SMALL_STATE(996)] = 22182, + [SMALL_STATE(997)] = 22270, + [SMALL_STATE(998)] = 22341, + [SMALL_STATE(999)] = 22430, + [SMALL_STATE(1000)] = 22507, + [SMALL_STATE(1001)] = 22586, + [SMALL_STATE(1002)] = 22657, + [SMALL_STATE(1003)] = 22728, + [SMALL_STATE(1004)] = 22799, + [SMALL_STATE(1005)] = 22870, + [SMALL_STATE(1006)] = 22941, + [SMALL_STATE(1007)] = 23012, + [SMALL_STATE(1008)] = 23085, + [SMALL_STATE(1009)] = 23156, + [SMALL_STATE(1010)] = 23227, + [SMALL_STATE(1011)] = 23298, + [SMALL_STATE(1012)] = 23369, + [SMALL_STATE(1013)] = 23440, + [SMALL_STATE(1014)] = 23511, + [SMALL_STATE(1015)] = 23582, + [SMALL_STATE(1016)] = 23723, + [SMALL_STATE(1017)] = 23794, + [SMALL_STATE(1018)] = 23865, + [SMALL_STATE(1019)] = 23944, + [SMALL_STATE(1020)] = 24023, + [SMALL_STATE(1021)] = 24094, + [SMALL_STATE(1022)] = 24165, + [SMALL_STATE(1023)] = 24236, + [SMALL_STATE(1024)] = 24377, + [SMALL_STATE(1025)] = 24448, + [SMALL_STATE(1026)] = 24519, + [SMALL_STATE(1027)] = 24590, + [SMALL_STATE(1028)] = 24661, + [SMALL_STATE(1029)] = 24732, + [SMALL_STATE(1030)] = 24803, + [SMALL_STATE(1031)] = 24874, + [SMALL_STATE(1032)] = 24945, + [SMALL_STATE(1033)] = 25016, + [SMALL_STATE(1034)] = 25117, + [SMALL_STATE(1035)] = 25188, + [SMALL_STATE(1036)] = 25259, + [SMALL_STATE(1037)] = 25360, + [SMALL_STATE(1038)] = 25459, + [SMALL_STATE(1039)] = 25530, + [SMALL_STATE(1040)] = 25613, + [SMALL_STATE(1041)] = 25690, + [SMALL_STATE(1042)] = 25777, + [SMALL_STATE(1043)] = 25848, + [SMALL_STATE(1044)] = 25941, + [SMALL_STATE(1045)] = 26032, + [SMALL_STATE(1046)] = 26127, + [SMALL_STATE(1047)] = 26198, + [SMALL_STATE(1048)] = 26269, + [SMALL_STATE(1049)] = 26340, + [SMALL_STATE(1050)] = 26478, + [SMALL_STATE(1051)] = 26552, + [SMALL_STATE(1052)] = 26638, + [SMALL_STATE(1053)] = 26708, + [SMALL_STATE(1054)] = 26778, + [SMALL_STATE(1055)] = 26911, + [SMALL_STATE(1056)] = 26996, + [SMALL_STATE(1057)] = 27065, + [SMALL_STATE(1058)] = 27200, + [SMALL_STATE(1059)] = 27273, + [SMALL_STATE(1060)] = 27342, + [SMALL_STATE(1061)] = 27411, + [SMALL_STATE(1062)] = 27482, + [SMALL_STATE(1063)] = 27551, + [SMALL_STATE(1064)] = 27636, + [SMALL_STATE(1065)] = 27705, + [SMALL_STATE(1066)] = 27774, + [SMALL_STATE(1067)] = 27859, + [SMALL_STATE(1068)] = 27991, + [SMALL_STATE(1069)] = 28075, + [SMALL_STATE(1070)] = 28207, + [SMALL_STATE(1071)] = 28275, + [SMALL_STATE(1072)] = 28343, + [SMALL_STATE(1073)] = 28411, + [SMALL_STATE(1074)] = 28485, + [SMALL_STATE(1075)] = 28557, + [SMALL_STATE(1076)] = 28641, + [SMALL_STATE(1077)] = 28709, + [SMALL_STATE(1078)] = 28841, + [SMALL_STATE(1079)] = 28973, + [SMALL_STATE(1080)] = 29041, + [SMALL_STATE(1081)] = 29109, + [SMALL_STATE(1082)] = 29181, + [SMALL_STATE(1083)] = 29253, + [SMALL_STATE(1084)] = 29321, + [SMALL_STATE(1085)] = 29393, + [SMALL_STATE(1086)] = 29460, + [SMALL_STATE(1087)] = 29527, + [SMALL_STATE(1088)] = 29594, + [SMALL_STATE(1089)] = 29661, + [SMALL_STATE(1090)] = 29728, + [SMALL_STATE(1091)] = 29795, + [SMALL_STATE(1092)] = 29862, + [SMALL_STATE(1093)] = 29929, + [SMALL_STATE(1094)] = 29996, + [SMALL_STATE(1095)] = 30063, + [SMALL_STATE(1096)] = 30130, + [SMALL_STATE(1097)] = 30197, + [SMALL_STATE(1098)] = 30264, + [SMALL_STATE(1099)] = 30331, + [SMALL_STATE(1100)] = 30398, + [SMALL_STATE(1101)] = 30465, + [SMALL_STATE(1102)] = 30532, + [SMALL_STATE(1103)] = 30599, + [SMALL_STATE(1104)] = 30666, + [SMALL_STATE(1105)] = 30733, + [SMALL_STATE(1106)] = 30800, + [SMALL_STATE(1107)] = 30867, + [SMALL_STATE(1108)] = 30934, + [SMALL_STATE(1109)] = 31001, + [SMALL_STATE(1110)] = 31068, + [SMALL_STATE(1111)] = 31135, + [SMALL_STATE(1112)] = 31202, + [SMALL_STATE(1113)] = 31269, + [SMALL_STATE(1114)] = 31336, + [SMALL_STATE(1115)] = 31403, + [SMALL_STATE(1116)] = 31470, + [SMALL_STATE(1117)] = 31537, + [SMALL_STATE(1118)] = 31604, + [SMALL_STATE(1119)] = 31679, + [SMALL_STATE(1120)] = 31746, + [SMALL_STATE(1121)] = 31813, + [SMALL_STATE(1122)] = 31880, + [SMALL_STATE(1123)] = 31947, + [SMALL_STATE(1124)] = 32014, + [SMALL_STATE(1125)] = 32081, + [SMALL_STATE(1126)] = 32148, + [SMALL_STATE(1127)] = 32215, + [SMALL_STATE(1128)] = 32282, + [SMALL_STATE(1129)] = 32349, + [SMALL_STATE(1130)] = 32416, + [SMALL_STATE(1131)] = 32483, + [SMALL_STATE(1132)] = 32550, + [SMALL_STATE(1133)] = 32617, + [SMALL_STATE(1134)] = 32684, + [SMALL_STATE(1135)] = 32751, + [SMALL_STATE(1136)] = 32818, + [SMALL_STATE(1137)] = 32885, + [SMALL_STATE(1138)] = 32952, + [SMALL_STATE(1139)] = 33019, + [SMALL_STATE(1140)] = 33086, + [SMALL_STATE(1141)] = 33153, + [SMALL_STATE(1142)] = 33220, + [SMALL_STATE(1143)] = 33287, + [SMALL_STATE(1144)] = 33354, + [SMALL_STATE(1145)] = 33421, + [SMALL_STATE(1146)] = 33488, + [SMALL_STATE(1147)] = 33555, + [SMALL_STATE(1148)] = 33622, + [SMALL_STATE(1149)] = 33689, + [SMALL_STATE(1150)] = 33756, + [SMALL_STATE(1151)] = 33823, + [SMALL_STATE(1152)] = 33890, + [SMALL_STATE(1153)] = 33957, + [SMALL_STATE(1154)] = 34024, + [SMALL_STATE(1155)] = 34091, + [SMALL_STATE(1156)] = 34158, + [SMALL_STATE(1157)] = 34225, + [SMALL_STATE(1158)] = 34292, + [SMALL_STATE(1159)] = 34359, + [SMALL_STATE(1160)] = 34426, + [SMALL_STATE(1161)] = 34493, + [SMALL_STATE(1162)] = 34559, + [SMALL_STATE(1163)] = 34685, + [SMALL_STATE(1164)] = 34811, + [SMALL_STATE(1165)] = 34883, + [SMALL_STATE(1166)] = 34957, + [SMALL_STATE(1167)] = 35083, + [SMALL_STATE(1168)] = 35209, + [SMALL_STATE(1169)] = 35275, + [SMALL_STATE(1170)] = 35401, + [SMALL_STATE(1171)] = 35527, + [SMALL_STATE(1172)] = 35653, + [SMALL_STATE(1173)] = 35779, + [SMALL_STATE(1174)] = 35905, + [SMALL_STATE(1175)] = 36031, + [SMALL_STATE(1176)] = 36157, + [SMALL_STATE(1177)] = 36283, + [SMALL_STATE(1178)] = 36409, + [SMALL_STATE(1179)] = 36535, + [SMALL_STATE(1180)] = 36661, + [SMALL_STATE(1181)] = 36787, + [SMALL_STATE(1182)] = 36913, + [SMALL_STATE(1183)] = 37039, + [SMALL_STATE(1184)] = 37165, + [SMALL_STATE(1185)] = 37291, + [SMALL_STATE(1186)] = 37417, + [SMALL_STATE(1187)] = 37543, + [SMALL_STATE(1188)] = 37669, + [SMALL_STATE(1189)] = 37795, + [SMALL_STATE(1190)] = 37921, + [SMALL_STATE(1191)] = 38047, + [SMALL_STATE(1192)] = 38173, + [SMALL_STATE(1193)] = 38299, + [SMALL_STATE(1194)] = 38425, + [SMALL_STATE(1195)] = 38551, + [SMALL_STATE(1196)] = 38677, + [SMALL_STATE(1197)] = 38803, + [SMALL_STATE(1198)] = 38929, + [SMALL_STATE(1199)] = 39055, + [SMALL_STATE(1200)] = 39125, + [SMALL_STATE(1201)] = 39251, + [SMALL_STATE(1202)] = 39377, + [SMALL_STATE(1203)] = 39459, + [SMALL_STATE(1204)] = 39527, + [SMALL_STATE(1205)] = 39595, + [SMALL_STATE(1206)] = 39665, + [SMALL_STATE(1207)] = 39733, + [SMALL_STATE(1208)] = 39801, + [SMALL_STATE(1209)] = 39867, + [SMALL_STATE(1210)] = 39993, + [SMALL_STATE(1211)] = 40119, + [SMALL_STATE(1212)] = 40245, + [SMALL_STATE(1213)] = 40371, + [SMALL_STATE(1214)] = 40497, + [SMALL_STATE(1215)] = 40623, + [SMALL_STATE(1216)] = 40693, + [SMALL_STATE(1217)] = 40763, + [SMALL_STATE(1218)] = 40833, + [SMALL_STATE(1219)] = 40959, + [SMALL_STATE(1220)] = 41041, + [SMALL_STATE(1221)] = 41167, + [SMALL_STATE(1222)] = 41237, + [SMALL_STATE(1223)] = 41305, + [SMALL_STATE(1224)] = 41371, + [SMALL_STATE(1225)] = 41497, + [SMALL_STATE(1226)] = 41623, + [SMALL_STATE(1227)] = 41688, + [SMALL_STATE(1228)] = 41811, + [SMALL_STATE(1229)] = 41876, + [SMALL_STATE(1230)] = 41999, + [SMALL_STATE(1231)] = 42122, + [SMALL_STATE(1232)] = 42245, + [SMALL_STATE(1233)] = 42310, + [SMALL_STATE(1234)] = 42375, + [SMALL_STATE(1235)] = 42440, + [SMALL_STATE(1236)] = 42563, + [SMALL_STATE(1237)] = 42628, + [SMALL_STATE(1238)] = 42693, + [SMALL_STATE(1239)] = 42758, + [SMALL_STATE(1240)] = 42827, + [SMALL_STATE(1241)] = 42896, + [SMALL_STATE(1242)] = 43019, + [SMALL_STATE(1243)] = 43084, + [SMALL_STATE(1244)] = 43149, + [SMALL_STATE(1245)] = 43272, + [SMALL_STATE(1246)] = 43337, + [SMALL_STATE(1247)] = 43402, + [SMALL_STATE(1248)] = 43467, + [SMALL_STATE(1249)] = 43590, + [SMALL_STATE(1250)] = 43713, + [SMALL_STATE(1251)] = 43836, + [SMALL_STATE(1252)] = 43959, + [SMALL_STATE(1253)] = 44082, + [SMALL_STATE(1254)] = 44205, + [SMALL_STATE(1255)] = 44328, + [SMALL_STATE(1256)] = 44451, + [SMALL_STATE(1257)] = 44574, + [SMALL_STATE(1258)] = 44697, + [SMALL_STATE(1259)] = 44820, + [SMALL_STATE(1260)] = 44885, + [SMALL_STATE(1261)] = 45008, + [SMALL_STATE(1262)] = 45131, + [SMALL_STATE(1263)] = 45254, + [SMALL_STATE(1264)] = 45321, + [SMALL_STATE(1265)] = 45444, + [SMALL_STATE(1266)] = 45511, + [SMALL_STATE(1267)] = 45634, + [SMALL_STATE(1268)] = 45757, + [SMALL_STATE(1269)] = 45880, + [SMALL_STATE(1270)] = 46003, + [SMALL_STATE(1271)] = 46070, + [SMALL_STATE(1272)] = 46193, + [SMALL_STATE(1273)] = 46316, + [SMALL_STATE(1274)] = 46381, + [SMALL_STATE(1275)] = 46446, + [SMALL_STATE(1276)] = 46569, + [SMALL_STATE(1277)] = 46634, + [SMALL_STATE(1278)] = 46757, + [SMALL_STATE(1279)] = 46880, + [SMALL_STATE(1280)] = 47003, + [SMALL_STATE(1281)] = 47126, + [SMALL_STATE(1282)] = 47249, + [SMALL_STATE(1283)] = 47372, + [SMALL_STATE(1284)] = 47495, + [SMALL_STATE(1285)] = 47618, + [SMALL_STATE(1286)] = 47683, + [SMALL_STATE(1287)] = 47750, + [SMALL_STATE(1288)] = 47873, + [SMALL_STATE(1289)] = 47996, + [SMALL_STATE(1290)] = 48063, + [SMALL_STATE(1291)] = 48186, + [SMALL_STATE(1292)] = 48309, + [SMALL_STATE(1293)] = 48432, + [SMALL_STATE(1294)] = 48513, + [SMALL_STATE(1295)] = 48578, + [SMALL_STATE(1296)] = 48647, + [SMALL_STATE(1297)] = 48770, + [SMALL_STATE(1298)] = 48893, + [SMALL_STATE(1299)] = 48958, + [SMALL_STATE(1300)] = 49023, + [SMALL_STATE(1301)] = 49088, + [SMALL_STATE(1302)] = 49153, + [SMALL_STATE(1303)] = 49218, + [SMALL_STATE(1304)] = 49283, + [SMALL_STATE(1305)] = 49406, + [SMALL_STATE(1306)] = 49529, + [SMALL_STATE(1307)] = 49652, + [SMALL_STATE(1308)] = 49775, + [SMALL_STATE(1309)] = 49840, + [SMALL_STATE(1310)] = 49963, + [SMALL_STATE(1311)] = 50086, + [SMALL_STATE(1312)] = 50155, + [SMALL_STATE(1313)] = 50220, + [SMALL_STATE(1314)] = 50343, + [SMALL_STATE(1315)] = 50466, + [SMALL_STATE(1316)] = 50589, + [SMALL_STATE(1317)] = 50712, + [SMALL_STATE(1318)] = 50777, + [SMALL_STATE(1319)] = 50900, + [SMALL_STATE(1320)] = 50969, + [SMALL_STATE(1321)] = 51034, + [SMALL_STATE(1322)] = 51101, + [SMALL_STATE(1323)] = 51224, + [SMALL_STATE(1324)] = 51347, + [SMALL_STATE(1325)] = 51470, + [SMALL_STATE(1326)] = 51593, + [SMALL_STATE(1327)] = 51716, + [SMALL_STATE(1328)] = 51839, + [SMALL_STATE(1329)] = 51962, + [SMALL_STATE(1330)] = 52085, + [SMALL_STATE(1331)] = 52208, + [SMALL_STATE(1332)] = 52275, + [SMALL_STATE(1333)] = 52398, + [SMALL_STATE(1334)] = 52521, + [SMALL_STATE(1335)] = 52644, + [SMALL_STATE(1336)] = 52767, + [SMALL_STATE(1337)] = 52890, + [SMALL_STATE(1338)] = 53013, + [SMALL_STATE(1339)] = 53136, + [SMALL_STATE(1340)] = 53201, + [SMALL_STATE(1341)] = 53324, + [SMALL_STATE(1342)] = 53447, + [SMALL_STATE(1343)] = 53512, + [SMALL_STATE(1344)] = 53577, + [SMALL_STATE(1345)] = 53642, + [SMALL_STATE(1346)] = 53765, + [SMALL_STATE(1347)] = 53830, + [SMALL_STATE(1348)] = 53953, + [SMALL_STATE(1349)] = 54018, + [SMALL_STATE(1350)] = 54141, + [SMALL_STATE(1351)] = 54264, + [SMALL_STATE(1352)] = 54387, + [SMALL_STATE(1353)] = 54510, + [SMALL_STATE(1354)] = 54633, + [SMALL_STATE(1355)] = 54756, + [SMALL_STATE(1356)] = 54879, + [SMALL_STATE(1357)] = 55002, + [SMALL_STATE(1358)] = 55125, + [SMALL_STATE(1359)] = 55190, + [SMALL_STATE(1360)] = 55313, + [SMALL_STATE(1361)] = 55382, + [SMALL_STATE(1362)] = 55505, + [SMALL_STATE(1363)] = 55628, + [SMALL_STATE(1364)] = 55751, + [SMALL_STATE(1365)] = 55874, + [SMALL_STATE(1366)] = 55997, + [SMALL_STATE(1367)] = 56120, + [SMALL_STATE(1368)] = 56243, + [SMALL_STATE(1369)] = 56308, + [SMALL_STATE(1370)] = 56431, + [SMALL_STATE(1371)] = 56496, + [SMALL_STATE(1372)] = 56619, + [SMALL_STATE(1373)] = 56742, + [SMALL_STATE(1374)] = 56865, + [SMALL_STATE(1375)] = 56988, + [SMALL_STATE(1376)] = 57111, + [SMALL_STATE(1377)] = 57234, + [SMALL_STATE(1378)] = 57357, + [SMALL_STATE(1379)] = 57426, + [SMALL_STATE(1380)] = 57549, + [SMALL_STATE(1381)] = 57672, + [SMALL_STATE(1382)] = 57795, + [SMALL_STATE(1383)] = 57860, + [SMALL_STATE(1384)] = 57983, + [SMALL_STATE(1385)] = 58106, + [SMALL_STATE(1386)] = 58229, + [SMALL_STATE(1387)] = 58294, + [SMALL_STATE(1388)] = 58375, + [SMALL_STATE(1389)] = 58498, + [SMALL_STATE(1390)] = 58563, + [SMALL_STATE(1391)] = 58686, + [SMALL_STATE(1392)] = 58809, + [SMALL_STATE(1393)] = 58932, + [SMALL_STATE(1394)] = 59055, + [SMALL_STATE(1395)] = 59120, + [SMALL_STATE(1396)] = 59243, + [SMALL_STATE(1397)] = 59366, + [SMALL_STATE(1398)] = 59431, + [SMALL_STATE(1399)] = 59554, + [SMALL_STATE(1400)] = 59677, + [SMALL_STATE(1401)] = 59742, + [SMALL_STATE(1402)] = 59865, + [SMALL_STATE(1403)] = 59934, + [SMALL_STATE(1404)] = 60057, + [SMALL_STATE(1405)] = 60180, + [SMALL_STATE(1406)] = 60245, + [SMALL_STATE(1407)] = 60368, + [SMALL_STATE(1408)] = 60437, + [SMALL_STATE(1409)] = 60501, + [SMALL_STATE(1410)] = 60565, + [SMALL_STATE(1411)] = 60629, + [SMALL_STATE(1412)] = 60697, + [SMALL_STATE(1413)] = 60767, + [SMALL_STATE(1414)] = 60839, + [SMALL_STATE(1415)] = 60919, + [SMALL_STATE(1416)] = 60985, + [SMALL_STATE(1417)] = 61057, + [SMALL_STATE(1418)] = 61129, + [SMALL_STATE(1419)] = 61200, + [SMALL_STATE(1420)] = 61265, + [SMALL_STATE(1421)] = 61330, + [SMALL_STATE(1422)] = 61393, + [SMALL_STATE(1423)] = 61458, + [SMALL_STATE(1424)] = 61525, + [SMALL_STATE(1425)] = 61590, + [SMALL_STATE(1426)] = 61661, + [SMALL_STATE(1427)] = 61732, + [SMALL_STATE(1428)] = 61803, + [SMALL_STATE(1429)] = 61870, + [SMALL_STATE(1430)] = 61933, + [SMALL_STATE(1431)] = 62002, + [SMALL_STATE(1432)] = 62069, + [SMALL_STATE(1433)] = 62140, + [SMALL_STATE(1434)] = 62206, + [SMALL_STATE(1435)] = 62282, + [SMALL_STATE(1436)] = 62344, + [SMALL_STATE(1437)] = 62420, + [SMALL_STATE(1438)] = 62486, + [SMALL_STATE(1439)] = 62564, + [SMALL_STATE(1440)] = 62630, + [SMALL_STATE(1441)] = 62706, + [SMALL_STATE(1442)] = 62768, + [SMALL_STATE(1443)] = 62834, + [SMALL_STATE(1444)] = 62900, + [SMALL_STATE(1445)] = 62964, + [SMALL_STATE(1446)] = 63030, + [SMALL_STATE(1447)] = 63094, + [SMALL_STATE(1448)] = 63158, + [SMALL_STATE(1449)] = 63222, + [SMALL_STATE(1450)] = 63284, + [SMALL_STATE(1451)] = 63346, + [SMALL_STATE(1452)] = 63408, + [SMALL_STATE(1453)] = 63474, + [SMALL_STATE(1454)] = 63550, + [SMALL_STATE(1455)] = 63616, + [SMALL_STATE(1456)] = 63680, + [SMALL_STATE(1457)] = 63742, + [SMALL_STATE(1458)] = 63810, + [SMALL_STATE(1459)] = 63880, + [SMALL_STATE(1460)] = 63944, + [SMALL_STATE(1461)] = 64008, + [SMALL_STATE(1462)] = 64072, + [SMALL_STATE(1463)] = 64138, + [SMALL_STATE(1464)] = 64204, + [SMALL_STATE(1465)] = 64268, + [SMALL_STATE(1466)] = 64332, + [SMALL_STATE(1467)] = 64394, + [SMALL_STATE(1468)] = 64472, + [SMALL_STATE(1469)] = 64536, + [SMALL_STATE(1470)] = 64598, + [SMALL_STATE(1471)] = 64664, + [SMALL_STATE(1472)] = 64734, + [SMALL_STATE(1473)] = 64800, + [SMALL_STATE(1474)] = 64866, + [SMALL_STATE(1475)] = 64930, + [SMALL_STATE(1476)] = 64992, + [SMALL_STATE(1477)] = 65053, + [SMALL_STATE(1478)] = 65114, + [SMALL_STATE(1479)] = 65175, + [SMALL_STATE(1480)] = 65236, + [SMALL_STATE(1481)] = 65303, + [SMALL_STATE(1482)] = 65364, + [SMALL_STATE(1483)] = 65427, + [SMALL_STATE(1484)] = 65488, + [SMALL_STATE(1485)] = 65549, + [SMALL_STATE(1486)] = 65618, + [SMALL_STATE(1487)] = 65681, + [SMALL_STATE(1488)] = 65742, + [SMALL_STATE(1489)] = 65803, + [SMALL_STATE(1490)] = 65864, + [SMALL_STATE(1491)] = 65925, + [SMALL_STATE(1492)] = 65986, + [SMALL_STATE(1493)] = 66101, + [SMALL_STATE(1494)] = 66166, + [SMALL_STATE(1495)] = 66227, + [SMALL_STATE(1496)] = 66292, + [SMALL_STATE(1497)] = 66355, + [SMALL_STATE(1498)] = 66420, + [SMALL_STATE(1499)] = 66483, + [SMALL_STATE(1500)] = 66548, + [SMALL_STATE(1501)] = 66609, + [SMALL_STATE(1502)] = 66670, + [SMALL_STATE(1503)] = 66739, + [SMALL_STATE(1504)] = 66800, + [SMALL_STATE(1505)] = 66863, + [SMALL_STATE(1506)] = 66926, + [SMALL_STATE(1507)] = 66987, + [SMALL_STATE(1508)] = 67048, + [SMALL_STATE(1509)] = 67113, + [SMALL_STATE(1510)] = 67174, + [SMALL_STATE(1511)] = 67235, + [SMALL_STATE(1512)] = 67298, + [SMALL_STATE(1513)] = 67359, + [SMALL_STATE(1514)] = 67420, + [SMALL_STATE(1515)] = 67491, + [SMALL_STATE(1516)] = 67552, + [SMALL_STATE(1517)] = 67613, + [SMALL_STATE(1518)] = 67678, + [SMALL_STATE(1519)] = 67743, + [SMALL_STATE(1520)] = 67858, + [SMALL_STATE(1521)] = 67919, + [SMALL_STATE(1522)] = 67984, + [SMALL_STATE(1523)] = 68047, + [SMALL_STATE(1524)] = 68108, + [SMALL_STATE(1525)] = 68171, + [SMALL_STATE(1526)] = 68236, + [SMALL_STATE(1527)] = 68301, + [SMALL_STATE(1528)] = 68362, + [SMALL_STATE(1529)] = 68477, + [SMALL_STATE(1530)] = 68540, + [SMALL_STATE(1531)] = 68603, + [SMALL_STATE(1532)] = 68664, + [SMALL_STATE(1533)] = 68725, + [SMALL_STATE(1534)] = 68786, + [SMALL_STATE(1535)] = 68851, + [SMALL_STATE(1536)] = 68916, + [SMALL_STATE(1537)] = 68981, + [SMALL_STATE(1538)] = 69044, + [SMALL_STATE(1539)] = 69105, + [SMALL_STATE(1540)] = 69170, + [SMALL_STATE(1541)] = 69231, + [SMALL_STATE(1542)] = 69346, + [SMALL_STATE(1543)] = 69407, + [SMALL_STATE(1544)] = 69476, + [SMALL_STATE(1545)] = 69591, + [SMALL_STATE(1546)] = 69666, + [SMALL_STATE(1547)] = 69733, + [SMALL_STATE(1548)] = 69798, + [SMALL_STATE(1549)] = 69863, + [SMALL_STATE(1550)] = 69924, + [SMALL_STATE(1551)] = 69987, + [SMALL_STATE(1552)] = 70050, + [SMALL_STATE(1553)] = 70115, + [SMALL_STATE(1554)] = 70176, + [SMALL_STATE(1555)] = 70241, + [SMALL_STATE(1556)] = 70302, + [SMALL_STATE(1557)] = 70367, + [SMALL_STATE(1558)] = 70436, + [SMALL_STATE(1559)] = 70499, + [SMALL_STATE(1560)] = 70562, + [SMALL_STATE(1561)] = 70625, + [SMALL_STATE(1562)] = 70688, + [SMALL_STATE(1563)] = 70755, + [SMALL_STATE(1564)] = 70820, + [SMALL_STATE(1565)] = 70881, + [SMALL_STATE(1566)] = 70942, + [SMALL_STATE(1567)] = 71007, + [SMALL_STATE(1568)] = 71072, + [SMALL_STATE(1569)] = 71137, + [SMALL_STATE(1570)] = 71202, + [SMALL_STATE(1571)] = 71265, + [SMALL_STATE(1572)] = 71328, + [SMALL_STATE(1573)] = 71389, + [SMALL_STATE(1574)] = 71454, + [SMALL_STATE(1575)] = 71519, + [SMALL_STATE(1576)] = 71582, + [SMALL_STATE(1577)] = 71645, + [SMALL_STATE(1578)] = 71706, + [SMALL_STATE(1579)] = 71767, + [SMALL_STATE(1580)] = 71882, + [SMALL_STATE(1581)] = 71945, + [SMALL_STATE(1582)] = 72006, + [SMALL_STATE(1583)] = 72072, + [SMALL_STATE(1584)] = 72132, + [SMALL_STATE(1585)] = 72192, + [SMALL_STATE(1586)] = 72256, + [SMALL_STATE(1587)] = 72318, + [SMALL_STATE(1588)] = 72378, + [SMALL_STATE(1589)] = 72438, + [SMALL_STATE(1590)] = 72498, + [SMALL_STATE(1591)] = 72610, + [SMALL_STATE(1592)] = 72670, + [SMALL_STATE(1593)] = 72730, + [SMALL_STATE(1594)] = 72790, + [SMALL_STATE(1595)] = 72850, + [SMALL_STATE(1596)] = 72910, + [SMALL_STATE(1597)] = 72970, + [SMALL_STATE(1598)] = 73030, + [SMALL_STATE(1599)] = 73090, + [SMALL_STATE(1600)] = 73150, + [SMALL_STATE(1601)] = 73210, + [SMALL_STATE(1602)] = 73274, + [SMALL_STATE(1603)] = 73334, + [SMALL_STATE(1604)] = 73400, + [SMALL_STATE(1605)] = 73464, + [SMALL_STATE(1606)] = 73524, + [SMALL_STATE(1607)] = 73584, + [SMALL_STATE(1608)] = 73644, + [SMALL_STATE(1609)] = 73706, + [SMALL_STATE(1610)] = 73766, + [SMALL_STATE(1611)] = 73878, + [SMALL_STATE(1612)] = 73942, + [SMALL_STATE(1613)] = 74004, + [SMALL_STATE(1614)] = 74064, + [SMALL_STATE(1615)] = 74176, + [SMALL_STATE(1616)] = 74238, + [SMALL_STATE(1617)] = 74304, + [SMALL_STATE(1618)] = 74368, + [SMALL_STATE(1619)] = 74428, + [SMALL_STATE(1620)] = 74492, + [SMALL_STATE(1621)] = 74552, + [SMALL_STATE(1622)] = 74612, + [SMALL_STATE(1623)] = 74676, + [SMALL_STATE(1624)] = 74740, + [SMALL_STATE(1625)] = 74802, + [SMALL_STATE(1626)] = 74864, + [SMALL_STATE(1627)] = 74928, + [SMALL_STATE(1628)] = 74992, + [SMALL_STATE(1629)] = 75060, + [SMALL_STATE(1630)] = 75128, + [SMALL_STATE(1631)] = 75188, + [SMALL_STATE(1632)] = 75252, + [SMALL_STATE(1633)] = 75316, + [SMALL_STATE(1634)] = 75378, + [SMALL_STATE(1635)] = 75438, + [SMALL_STATE(1636)] = 75508, + [SMALL_STATE(1637)] = 75568, + [SMALL_STATE(1638)] = 75628, + [SMALL_STATE(1639)] = 75688, + [SMALL_STATE(1640)] = 75748, + [SMALL_STATE(1641)] = 75808, + [SMALL_STATE(1642)] = 75872, + [SMALL_STATE(1643)] = 75938, + [SMALL_STATE(1644)] = 75998, + [SMALL_STATE(1645)] = 76058, + [SMALL_STATE(1646)] = 76118, + [SMALL_STATE(1647)] = 76178, + [SMALL_STATE(1648)] = 76240, + [SMALL_STATE(1649)] = 76300, + [SMALL_STATE(1650)] = 76360, + [SMALL_STATE(1651)] = 76424, + [SMALL_STATE(1652)] = 76492, + [SMALL_STATE(1653)] = 76554, + [SMALL_STATE(1654)] = 76622, + [SMALL_STATE(1655)] = 76734, + [SMALL_STATE(1656)] = 76798, + [SMALL_STATE(1657)] = 76858, + [SMALL_STATE(1658)] = 76922, + [SMALL_STATE(1659)] = 76982, + [SMALL_STATE(1660)] = 77042, + [SMALL_STATE(1661)] = 77102, + [SMALL_STATE(1662)] = 77170, + [SMALL_STATE(1663)] = 77230, + [SMALL_STATE(1664)] = 77342, + [SMALL_STATE(1665)] = 77410, + [SMALL_STATE(1666)] = 77470, + [SMALL_STATE(1667)] = 77530, + [SMALL_STATE(1668)] = 77590, + [SMALL_STATE(1669)] = 77650, + [SMALL_STATE(1670)] = 77714, + [SMALL_STATE(1671)] = 77776, + [SMALL_STATE(1672)] = 77838, + [SMALL_STATE(1673)] = 77950, + [SMALL_STATE(1674)] = 78012, + [SMALL_STATE(1675)] = 78074, + [SMALL_STATE(1676)] = 78186, + [SMALL_STATE(1677)] = 78250, + [SMALL_STATE(1678)] = 78310, + [SMALL_STATE(1679)] = 78372, + [SMALL_STATE(1680)] = 78433, + [SMALL_STATE(1681)] = 78494, + [SMALL_STATE(1682)] = 78553, + [SMALL_STATE(1683)] = 78612, + [SMALL_STATE(1684)] = 78671, + [SMALL_STATE(1685)] = 78738, + [SMALL_STATE(1686)] = 78797, + [SMALL_STATE(1687)] = 78858, + [SMALL_STATE(1688)] = 78917, + [SMALL_STATE(1689)] = 78976, + [SMALL_STATE(1690)] = 79035, + [SMALL_STATE(1691)] = 79094, + [SMALL_STATE(1692)] = 79153, + [SMALL_STATE(1693)] = 79212, + [SMALL_STATE(1694)] = 79275, + [SMALL_STATE(1695)] = 79334, + [SMALL_STATE(1696)] = 79395, + [SMALL_STATE(1697)] = 79454, + [SMALL_STATE(1698)] = 79513, + [SMALL_STATE(1699)] = 79572, + [SMALL_STATE(1700)] = 79631, + [SMALL_STATE(1701)] = 79690, + [SMALL_STATE(1702)] = 79749, + [SMALL_STATE(1703)] = 79808, + [SMALL_STATE(1704)] = 79877, + [SMALL_STATE(1705)] = 79936, + [SMALL_STATE(1706)] = 79995, + [SMALL_STATE(1707)] = 80054, + [SMALL_STATE(1708)] = 80123, + [SMALL_STATE(1709)] = 80192, + [SMALL_STATE(1710)] = 80251, + [SMALL_STATE(1711)] = 80310, + [SMALL_STATE(1712)] = 80369, + [SMALL_STATE(1713)] = 80428, + [SMALL_STATE(1714)] = 80497, + [SMALL_STATE(1715)] = 80556, + [SMALL_STATE(1716)] = 80615, + [SMALL_STATE(1717)] = 80674, + [SMALL_STATE(1718)] = 80733, + [SMALL_STATE(1719)] = 80792, + [SMALL_STATE(1720)] = 80851, + [SMALL_STATE(1721)] = 80910, + [SMALL_STATE(1722)] = 80969, + [SMALL_STATE(1723)] = 81028, + [SMALL_STATE(1724)] = 81087, + [SMALL_STATE(1725)] = 81146, + [SMALL_STATE(1726)] = 81205, + [SMALL_STATE(1727)] = 81264, + [SMALL_STATE(1728)] = 81323, + [SMALL_STATE(1729)] = 81382, + [SMALL_STATE(1730)] = 81441, + [SMALL_STATE(1731)] = 81500, + [SMALL_STATE(1732)] = 81559, + [SMALL_STATE(1733)] = 81626, + [SMALL_STATE(1734)] = 81685, + [SMALL_STATE(1735)] = 81744, + [SMALL_STATE(1736)] = 81805, + [SMALL_STATE(1737)] = 81864, + [SMALL_STATE(1738)] = 81923, + [SMALL_STATE(1739)] = 81982, + [SMALL_STATE(1740)] = 82041, + [SMALL_STATE(1741)] = 82100, + [SMALL_STATE(1742)] = 82159, + [SMALL_STATE(1743)] = 82218, + [SMALL_STATE(1744)] = 82277, + [SMALL_STATE(1745)] = 82338, + [SMALL_STATE(1746)] = 82397, + [SMALL_STATE(1747)] = 82456, + [SMALL_STATE(1748)] = 82519, + [SMALL_STATE(1749)] = 82586, + [SMALL_STATE(1750)] = 82645, + [SMALL_STATE(1751)] = 82704, + [SMALL_STATE(1752)] = 82765, + [SMALL_STATE(1753)] = 82824, + [SMALL_STATE(1754)] = 82883, + [SMALL_STATE(1755)] = 82942, + [SMALL_STATE(1756)] = 83009, + [SMALL_STATE(1757)] = 83068, + [SMALL_STATE(1758)] = 83137, + [SMALL_STATE(1759)] = 83196, + [SMALL_STATE(1760)] = 83255, + [SMALL_STATE(1761)] = 83314, + [SMALL_STATE(1762)] = 83373, + [SMALL_STATE(1763)] = 83432, + [SMALL_STATE(1764)] = 83491, + [SMALL_STATE(1765)] = 83550, + [SMALL_STATE(1766)] = 83609, + [SMALL_STATE(1767)] = 83668, + [SMALL_STATE(1768)] = 83727, + [SMALL_STATE(1769)] = 83786, + [SMALL_STATE(1770)] = 83845, + [SMALL_STATE(1771)] = 83914, + [SMALL_STATE(1772)] = 83979, + [SMALL_STATE(1773)] = 84038, + [SMALL_STATE(1774)] = 84097, + [SMALL_STATE(1775)] = 84156, + [SMALL_STATE(1776)] = 84215, + [SMALL_STATE(1777)] = 84274, + [SMALL_STATE(1778)] = 84337, + [SMALL_STATE(1779)] = 84396, + [SMALL_STATE(1780)] = 84455, + [SMALL_STATE(1781)] = 84539, + [SMALL_STATE(1782)] = 84603, + [SMALL_STATE(1783)] = 84691, + [SMALL_STATE(1784)] = 84779, + [SMALL_STATE(1785)] = 84867, + [SMALL_STATE(1786)] = 84957, + [SMALL_STATE(1787)] = 85019, + [SMALL_STATE(1788)] = 85107, + [SMALL_STATE(1789)] = 85165, + [SMALL_STATE(1790)] = 85255, + [SMALL_STATE(1791)] = 85315, + [SMALL_STATE(1792)] = 85373, + [SMALL_STATE(1793)] = 85433, + [SMALL_STATE(1794)] = 85523, + [SMALL_STATE(1795)] = 85583, + [SMALL_STATE(1796)] = 85643, + [SMALL_STATE(1797)] = 85715, + [SMALL_STATE(1798)] = 85779, + [SMALL_STATE(1799)] = 85855, + [SMALL_STATE(1800)] = 85937, + [SMALL_STATE(1801)] = 86017, + [SMALL_STATE(1802)] = 86101, + [SMALL_STATE(1803)] = 86179, + [SMALL_STATE(1804)] = 86243, + [SMALL_STATE(1805)] = 86311, + [SMALL_STATE(1806)] = 86401, + [SMALL_STATE(1807)] = 86491, + [SMALL_STATE(1808)] = 86553, + [SMALL_STATE(1809)] = 86611, + [SMALL_STATE(1810)] = 86673, + [SMALL_STATE(1811)] = 86741, + [SMALL_STATE(1812)] = 86801, + [SMALL_STATE(1813)] = 86869, + [SMALL_STATE(1814)] = 86941, + [SMALL_STATE(1815)] = 87029, + [SMALL_STATE(1816)] = 87087, + [SMALL_STATE(1817)] = 87151, + [SMALL_STATE(1818)] = 87237, + [SMALL_STATE(1819)] = 87325, + [SMALL_STATE(1820)] = 87385, + [SMALL_STATE(1821)] = 87453, + [SMALL_STATE(1822)] = 87535, + [SMALL_STATE(1823)] = 87601, + [SMALL_STATE(1824)] = 87691, + [SMALL_STATE(1825)] = 87753, + [SMALL_STATE(1826)] = 87811, + [SMALL_STATE(1827)] = 87901, + [SMALL_STATE(1828)] = 87981, + [SMALL_STATE(1829)] = 88041, + [SMALL_STATE(1830)] = 88099, + [SMALL_STATE(1831)] = 88183, + [SMALL_STATE(1832)] = 88261, + [SMALL_STATE(1833)] = 88321, + [SMALL_STATE(1834)] = 88385, + [SMALL_STATE(1835)] = 88453, + [SMALL_STATE(1836)] = 88511, + [SMALL_STATE(1837)] = 88583, + [SMALL_STATE(1838)] = 88647, + [SMALL_STATE(1839)] = 88723, + [SMALL_STATE(1840)] = 88805, + [SMALL_STATE(1841)] = 88885, + [SMALL_STATE(1842)] = 88973, + [SMALL_STATE(1843)] = 89051, + [SMALL_STATE(1844)] = 89115, + [SMALL_STATE(1845)] = 89183, + [SMALL_STATE(1846)] = 89241, + [SMALL_STATE(1847)] = 89331, + [SMALL_STATE(1848)] = 89421, + [SMALL_STATE(1849)] = 89489, + [SMALL_STATE(1850)] = 89577, + [SMALL_STATE(1851)] = 89635, + [SMALL_STATE(1852)] = 89697, + [SMALL_STATE(1853)] = 89759, + [SMALL_STATE(1854)] = 89817, + [SMALL_STATE(1855)] = 89881, + [SMALL_STATE(1856)] = 89971, + [SMALL_STATE(1857)] = 90037, + [SMALL_STATE(1858)] = 90097, + [SMALL_STATE(1859)] = 90163, + [SMALL_STATE(1860)] = 90239, + [SMALL_STATE(1861)] = 90328, + [SMALL_STATE(1862)] = 90431, + [SMALL_STATE(1863)] = 90534, + [SMALL_STATE(1864)] = 90637, + [SMALL_STATE(1865)] = 90740, + [SMALL_STATE(1866)] = 90843, + [SMALL_STATE(1867)] = 90946, + [SMALL_STATE(1868)] = 91049, + [SMALL_STATE(1869)] = 91106, + [SMALL_STATE(1870)] = 91209, + [SMALL_STATE(1871)] = 91312, + [SMALL_STATE(1872)] = 91373, + [SMALL_STATE(1873)] = 91476, + [SMALL_STATE(1874)] = 91579, + [SMALL_STATE(1875)] = 91640, + [SMALL_STATE(1876)] = 91699, + [SMALL_STATE(1877)] = 91802, + [SMALL_STATE(1878)] = 91905, + [SMALL_STATE(1879)] = 92008, + [SMALL_STATE(1880)] = 92065, + [SMALL_STATE(1881)] = 92168, + [SMALL_STATE(1882)] = 92271, + [SMALL_STATE(1883)] = 92374, + [SMALL_STATE(1884)] = 92433, + [SMALL_STATE(1885)] = 92492, + [SMALL_STATE(1886)] = 92595, + [SMALL_STATE(1887)] = 92682, + [SMALL_STATE(1888)] = 92785, + [SMALL_STATE(1889)] = 92842, + [SMALL_STATE(1890)] = 92903, + [SMALL_STATE(1891)] = 93006, + [SMALL_STATE(1892)] = 93109, + [SMALL_STATE(1893)] = 93166, + [SMALL_STATE(1894)] = 93253, + [SMALL_STATE(1895)] = 93310, + [SMALL_STATE(1896)] = 93367, + [SMALL_STATE(1897)] = 93424, + [SMALL_STATE(1898)] = 93513, + [SMALL_STATE(1899)] = 93598, + [SMALL_STATE(1900)] = 93701, + [SMALL_STATE(1901)] = 93804, + [SMALL_STATE(1902)] = 93865, + [SMALL_STATE(1903)] = 93968, + [SMALL_STATE(1904)] = 94055, + [SMALL_STATE(1905)] = 94158, + [SMALL_STATE(1906)] = 94215, + [SMALL_STATE(1907)] = 94272, + [SMALL_STATE(1908)] = 94329, + [SMALL_STATE(1909)] = 94386, + [SMALL_STATE(1910)] = 94443, + [SMALL_STATE(1911)] = 94500, + [SMALL_STATE(1912)] = 94557, + [SMALL_STATE(1913)] = 94614, + [SMALL_STATE(1914)] = 94701, + [SMALL_STATE(1915)] = 94788, + [SMALL_STATE(1916)] = 94845, + [SMALL_STATE(1917)] = 94902, + [SMALL_STATE(1918)] = 95005, + [SMALL_STATE(1919)] = 95064, + [SMALL_STATE(1920)] = 95167, + [SMALL_STATE(1921)] = 95228, + [SMALL_STATE(1922)] = 95285, + [SMALL_STATE(1923)] = 95342, + [SMALL_STATE(1924)] = 95399, + [SMALL_STATE(1925)] = 95456, + [SMALL_STATE(1926)] = 95513, + [SMALL_STATE(1927)] = 95570, + [SMALL_STATE(1928)] = 95627, + [SMALL_STATE(1929)] = 95684, + [SMALL_STATE(1930)] = 95787, + [SMALL_STATE(1931)] = 95844, + [SMALL_STATE(1932)] = 95901, + [SMALL_STATE(1933)] = 95990, + [SMALL_STATE(1934)] = 96047, + [SMALL_STATE(1935)] = 96104, + [SMALL_STATE(1936)] = 96175, + [SMALL_STATE(1937)] = 96238, + [SMALL_STATE(1938)] = 96313, + [SMALL_STATE(1939)] = 96394, + [SMALL_STATE(1940)] = 96473, + [SMALL_STATE(1941)] = 96556, + [SMALL_STATE(1942)] = 96633, + [SMALL_STATE(1943)] = 96696, + [SMALL_STATE(1944)] = 96763, + [SMALL_STATE(1945)] = 96852, + [SMALL_STATE(1946)] = 96955, + [SMALL_STATE(1947)] = 97044, + [SMALL_STATE(1948)] = 97133, + [SMALL_STATE(1949)] = 97236, + [SMALL_STATE(1950)] = 97339, + [SMALL_STATE(1951)] = 97396, + [SMALL_STATE(1952)] = 97499, + [SMALL_STATE(1953)] = 97556, + [SMALL_STATE(1954)] = 97613, + [SMALL_STATE(1955)] = 97670, + [SMALL_STATE(1956)] = 97727, + [SMALL_STATE(1957)] = 97784, + [SMALL_STATE(1958)] = 97841, + [SMALL_STATE(1959)] = 97898, + [SMALL_STATE(1960)] = 97955, + [SMALL_STATE(1961)] = 98012, + [SMALL_STATE(1962)] = 98069, + [SMALL_STATE(1963)] = 98126, + [SMALL_STATE(1964)] = 98183, + [SMALL_STATE(1965)] = 98240, + [SMALL_STATE(1966)] = 98297, + [SMALL_STATE(1967)] = 98400, + [SMALL_STATE(1968)] = 98457, + [SMALL_STATE(1969)] = 98514, + [SMALL_STATE(1970)] = 98571, + [SMALL_STATE(1971)] = 98638, + [SMALL_STATE(1972)] = 98695, + [SMALL_STATE(1973)] = 98752, + [SMALL_STATE(1974)] = 98855, + [SMALL_STATE(1975)] = 98958, + [SMALL_STATE(1976)] = 99015, + [SMALL_STATE(1977)] = 99072, + [SMALL_STATE(1978)] = 99129, + [SMALL_STATE(1979)] = 99188, + [SMALL_STATE(1980)] = 99259, + [SMALL_STATE(1981)] = 99322, + [SMALL_STATE(1982)] = 99397, + [SMALL_STATE(1983)] = 99478, + [SMALL_STATE(1984)] = 99557, + [SMALL_STATE(1985)] = 99640, + [SMALL_STATE(1986)] = 99717, + [SMALL_STATE(1987)] = 99780, + [SMALL_STATE(1988)] = 99847, + [SMALL_STATE(1989)] = 99950, + [SMALL_STATE(1990)] = 100053, + [SMALL_STATE(1991)] = 100112, + [SMALL_STATE(1992)] = 100169, + [SMALL_STATE(1993)] = 100226, + [SMALL_STATE(1994)] = 100329, + [SMALL_STATE(1995)] = 100432, + [SMALL_STATE(1996)] = 100535, + [SMALL_STATE(1997)] = 100638, + [SMALL_STATE(1998)] = 100725, + [SMALL_STATE(1999)] = 100812, + [SMALL_STATE(2000)] = 100877, + [SMALL_STATE(2001)] = 100980, + [SMALL_STATE(2002)] = 101039, + [SMALL_STATE(2003)] = 101096, + [SMALL_STATE(2004)] = 101153, + [SMALL_STATE(2005)] = 101210, + [SMALL_STATE(2006)] = 101313, + [SMALL_STATE(2007)] = 101416, + [SMALL_STATE(2008)] = 101475, + [SMALL_STATE(2009)] = 101562, + [SMALL_STATE(2010)] = 101665, + [SMALL_STATE(2011)] = 101722, + [SMALL_STATE(2012)] = 101825, + [SMALL_STATE(2013)] = 101882, + [SMALL_STATE(2014)] = 101939, + [SMALL_STATE(2015)] = 102000, + [SMALL_STATE(2016)] = 102061, + [SMALL_STATE(2017)] = 102132, + [SMALL_STATE(2018)] = 102195, + [SMALL_STATE(2019)] = 102270, + [SMALL_STATE(2020)] = 102351, + [SMALL_STATE(2021)] = 102430, + [SMALL_STATE(2022)] = 102513, + [SMALL_STATE(2023)] = 102590, + [SMALL_STATE(2024)] = 102653, + [SMALL_STATE(2025)] = 102720, + [SMALL_STATE(2026)] = 102807, + [SMALL_STATE(2027)] = 102864, + [SMALL_STATE(2028)] = 102967, + [SMALL_STATE(2029)] = 103052, + [SMALL_STATE(2030)] = 103155, + [SMALL_STATE(2031)] = 103212, + [SMALL_STATE(2032)] = 103271, + [SMALL_STATE(2033)] = 103330, + [SMALL_STATE(2034)] = 103387, + [SMALL_STATE(2035)] = 103444, + [SMALL_STATE(2036)] = 103501, + [SMALL_STATE(2037)] = 103558, + [SMALL_STATE(2038)] = 103661, + [SMALL_STATE(2039)] = 103732, + [SMALL_STATE(2040)] = 103795, + [SMALL_STATE(2041)] = 103870, + [SMALL_STATE(2042)] = 103951, + [SMALL_STATE(2043)] = 104030, + [SMALL_STATE(2044)] = 104113, + [SMALL_STATE(2045)] = 104190, + [SMALL_STATE(2046)] = 104253, + [SMALL_STATE(2047)] = 104320, + [SMALL_STATE(2048)] = 104409, + [SMALL_STATE(2049)] = 104496, + [SMALL_STATE(2050)] = 104553, + [SMALL_STATE(2051)] = 104610, + [SMALL_STATE(2052)] = 104667, + [SMALL_STATE(2053)] = 104724, + [SMALL_STATE(2054)] = 104781, + [SMALL_STATE(2055)] = 104838, + [SMALL_STATE(2056)] = 104941, + [SMALL_STATE(2057)] = 104998, + [SMALL_STATE(2058)] = 105055, + [SMALL_STATE(2059)] = 105112, + [SMALL_STATE(2060)] = 105215, + [SMALL_STATE(2061)] = 105272, + [SMALL_STATE(2062)] = 105375, + [SMALL_STATE(2063)] = 105464, + [SMALL_STATE(2064)] = 105551, + [SMALL_STATE(2065)] = 105654, + [SMALL_STATE(2066)] = 105757, + [SMALL_STATE(2067)] = 105816, + [SMALL_STATE(2068)] = 105919, + [SMALL_STATE(2069)] = 105982, + [SMALL_STATE(2070)] = 106085, + [SMALL_STATE(2071)] = 106188, + [SMALL_STATE(2072)] = 106277, + [SMALL_STATE(2073)] = 106334, + [SMALL_STATE(2074)] = 106421, + [SMALL_STATE(2075)] = 106478, + [SMALL_STATE(2076)] = 106567, + [SMALL_STATE(2077)] = 106670, + [SMALL_STATE(2078)] = 106773, + [SMALL_STATE(2079)] = 106876, + [SMALL_STATE(2080)] = 106933, + [SMALL_STATE(2081)] = 106990, + [SMALL_STATE(2082)] = 107048, + [SMALL_STATE(2083)] = 107110, + [SMALL_STATE(2084)] = 107184, + [SMALL_STATE(2085)] = 107264, + [SMALL_STATE(2086)] = 107342, + [SMALL_STATE(2087)] = 107424, + [SMALL_STATE(2088)] = 107500, + [SMALL_STATE(2089)] = 107562, + [SMALL_STATE(2090)] = 107628, + [SMALL_STATE(2091)] = 107716, + [SMALL_STATE(2092)] = 107802, + [SMALL_STATE(2093)] = 107860, + [SMALL_STATE(2094)] = 107918, + [SMALL_STATE(2095)] = 107978, + [SMALL_STATE(2096)] = 108038, + [SMALL_STATE(2097)] = 108096, + [SMALL_STATE(2098)] = 108156, + [SMALL_STATE(2099)] = 108216, + [SMALL_STATE(2100)] = 108274, + [SMALL_STATE(2101)] = 108334, + [SMALL_STATE(2102)] = 108404, + [SMALL_STATE(2103)] = 108492, + [SMALL_STATE(2104)] = 108552, + [SMALL_STATE(2105)] = 108618, + [SMALL_STATE(2106)] = 108676, + [SMALL_STATE(2107)] = 108734, + [SMALL_STATE(2108)] = 108822, + [SMALL_STATE(2109)] = 108880, + [SMALL_STATE(2110)] = 108940, + [SMALL_STATE(2111)] = 109000, + [SMALL_STATE(2112)] = 109058, + [SMALL_STATE(2113)] = 109146, + [SMALL_STATE(2114)] = 109204, + [SMALL_STATE(2115)] = 109292, + [SMALL_STATE(2116)] = 109352, + [SMALL_STATE(2117)] = 109412, + [SMALL_STATE(2118)] = 109470, + [SMALL_STATE(2119)] = 109528, + [SMALL_STATE(2120)] = 109586, + [SMALL_STATE(2121)] = 109644, + [SMALL_STATE(2122)] = 109710, + [SMALL_STATE(2123)] = 109789, + [SMALL_STATE(2124)] = 109846, + [SMALL_STATE(2125)] = 109925, + [SMALL_STATE(2126)] = 110002, + [SMALL_STATE(2127)] = 110083, + [SMALL_STATE(2128)] = 110158, + [SMALL_STATE(2129)] = 110217, + [SMALL_STATE(2130)] = 110276, + [SMALL_STATE(2131)] = 110341, + [SMALL_STATE(2132)] = 110398, + [SMALL_STATE(2133)] = 110455, + [SMALL_STATE(2134)] = 110512, + [SMALL_STATE(2135)] = 110581, + [SMALL_STATE(2136)] = 110642, + [SMALL_STATE(2137)] = 110715, + [SMALL_STATE(2138)] = 110792, + [SMALL_STATE(2139)] = 110873, + [SMALL_STATE(2140)] = 110948, + [SMALL_STATE(2141)] = 111009, + [SMALL_STATE(2142)] = 111074, + [SMALL_STATE(2143)] = 111159, + [SMALL_STATE(2144)] = 111232, + [SMALL_STATE(2145)] = 111315, + [SMALL_STATE(2146)] = 111374, + [SMALL_STATE(2147)] = 111431, + [SMALL_STATE(2148)] = 111490, + [SMALL_STATE(2149)] = 111551, + [SMALL_STATE(2150)] = 111608, + [SMALL_STATE(2151)] = 111673, + [SMALL_STATE(2152)] = 111732, + [SMALL_STATE(2153)] = 111797, + [SMALL_STATE(2154)] = 111882, + [SMALL_STATE(2155)] = 111951, + [SMALL_STATE(2156)] = 112036, + [SMALL_STATE(2157)] = 112121, + [SMALL_STATE(2158)] = 112206, + [SMALL_STATE(2159)] = 112263, + [SMALL_STATE(2160)] = 112320, + [SMALL_STATE(2161)] = 112405, + [SMALL_STATE(2162)] = 112488, + [SMALL_STATE(2163)] = 112549, + [SMALL_STATE(2164)] = 112606, + [SMALL_STATE(2165)] = 112691, + [SMALL_STATE(2166)] = 112776, + [SMALL_STATE(2167)] = 112861, + [SMALL_STATE(2168)] = 112946, + [SMALL_STATE(2169)] = 113005, + [SMALL_STATE(2170)] = 113089, + [SMALL_STATE(2171)] = 113149, + [SMALL_STATE(2172)] = 113231, + [SMALL_STATE(2173)] = 113303, + [SMALL_STATE(2174)] = 113381, + [SMALL_STATE(2175)] = 113457, + [SMALL_STATE(2176)] = 113525, + [SMALL_STATE(2177)] = 113585, + [SMALL_STATE(2178)] = 113665, + [SMALL_STATE(2179)] = 113737, + [SMALL_STATE(2180)] = 113811, + [SMALL_STATE(2181)] = 113895, + [SMALL_STATE(2182)] = 113979, + [SMALL_STATE(2183)] = 114063, + [SMALL_STATE(2184)] = 114147, + [SMALL_STATE(2185)] = 114231, + [SMALL_STATE(2186)] = 114315, + [SMALL_STATE(2187)] = 114375, + [SMALL_STATE(2188)] = 114453, + [SMALL_STATE(2189)] = 114517, + [SMALL_STATE(2190)] = 114573, + [SMALL_STATE(2191)] = 114657, + [SMALL_STATE(2192)] = 114731, + [SMALL_STATE(2193)] = 114813, + [SMALL_STATE(2194)] = 114897, + [SMALL_STATE(2195)] = 114957, + [SMALL_STATE(2196)] = 115025, + [SMALL_STATE(2197)] = 115089, + [SMALL_STATE(2198)] = 115145, + [SMALL_STATE(2199)] = 115221, + [SMALL_STATE(2200)] = 115275, + [SMALL_STATE(2201)] = 115359, + [SMALL_STATE(2202)] = 115439, + [SMALL_STATE(2203)] = 115512, + [SMALL_STATE(2204)] = 115595, + [SMALL_STATE(2205)] = 115674, + [SMALL_STATE(2206)] = 115757, + [SMALL_STATE(2207)] = 115840, + [SMALL_STATE(2208)] = 115931, + [SMALL_STATE(2209)] = 116022, + [SMALL_STATE(2210)] = 116107, + [SMALL_STATE(2211)] = 116166, + [SMALL_STATE(2212)] = 116233, + [SMALL_STATE(2213)] = 116300, + [SMALL_STATE(2214)] = 116387, + [SMALL_STATE(2215)] = 116446, + [SMALL_STATE(2216)] = 116509, + [SMALL_STATE(2217)] = 116600, + [SMALL_STATE(2218)] = 116685, + [SMALL_STATE(2219)] = 116776, + [SMALL_STATE(2220)] = 116867, + [SMALL_STATE(2221)] = 116938, + [SMALL_STATE(2222)] = 117021, + [SMALL_STATE(2223)] = 117098, + [SMALL_STATE(2224)] = 117185, + [SMALL_STATE(2225)] = 117260, + [SMALL_STATE(2226)] = 117341, + [SMALL_STATE(2227)] = 117426, + [SMALL_STATE(2228)] = 117493, + [SMALL_STATE(2229)] = 117552, + [SMALL_STATE(2230)] = 117623, + [SMALL_STATE(2231)] = 117700, + [SMALL_STATE(2232)] = 117775, + [SMALL_STATE(2233)] = 117854, + [SMALL_STATE(2234)] = 117927, + [SMALL_STATE(2235)] = 117986, + [SMALL_STATE(2236)] = 118049, + [SMALL_STATE(2237)] = 118132, + [SMALL_STATE(2238)] = 118219, + [SMALL_STATE(2239)] = 118310, + [SMALL_STATE(2240)] = 118380, + [SMALL_STATE(2241)] = 118442, + [SMALL_STATE(2242)] = 118524, + [SMALL_STATE(2243)] = 118610, + [SMALL_STATE(2244)] = 118686, + [SMALL_STATE(2245)] = 118760, + [SMALL_STATE(2246)] = 118842, + [SMALL_STATE(2247)] = 118930, + [SMALL_STATE(2248)] = 119008, + [SMALL_STATE(2249)] = 119080, + [SMALL_STATE(2250)] = 119154, + [SMALL_STATE(2251)] = 119242, + [SMALL_STATE(2252)] = 119300, + [SMALL_STATE(2253)] = 119362, + [SMALL_STATE(2254)] = 119450, + [SMALL_STATE(2255)] = 119534, + [SMALL_STATE(2256)] = 119592, + [SMALL_STATE(2257)] = 119674, + [SMALL_STATE(2258)] = 119750, + [SMALL_STATE(2259)] = 119828, + [SMALL_STATE(2260)] = 119908, + [SMALL_STATE(2261)] = 119978, + [SMALL_STATE(2262)] = 120044, + [SMALL_STATE(2263)] = 120110, + [SMALL_STATE(2264)] = 120180, + [SMALL_STATE(2265)] = 120268, + [SMALL_STATE(2266)] = 120352, + [SMALL_STATE(2267)] = 120432, + [SMALL_STATE(2268)] = 120516, + [SMALL_STATE(2269)] = 120586, + [SMALL_STATE(2270)] = 120662, + [SMALL_STATE(2271)] = 120736, + [SMALL_STATE(2272)] = 120814, + [SMALL_STATE(2273)] = 120888, + [SMALL_STATE(2274)] = 120960, + [SMALL_STATE(2275)] = 121026, + [SMALL_STATE(2276)] = 121084, + [SMALL_STATE(2277)] = 121172, + [SMALL_STATE(2278)] = 121260, + [SMALL_STATE(2279)] = 121326, + [SMALL_STATE(2280)] = 121384, + [SMALL_STATE(2281)] = 121442, + [SMALL_STATE(2282)] = 121504, + [SMALL_STATE(2283)] = 121592, + [SMALL_STATE(2284)] = 121680, + [SMALL_STATE(2285)] = 121758, + [SMALL_STATE(2286)] = 121840, + [SMALL_STATE(2287)] = 121912, + [SMALL_STATE(2288)] = 121974, + [SMALL_STATE(2289)] = 122046, + [SMALL_STATE(2290)] = 122134, + [SMALL_STATE(2291)] = 122192, + [SMALL_STATE(2292)] = 122274, + [SMALL_STATE(2293)] = 122350, + [SMALL_STATE(2294)] = 122408, + [SMALL_STATE(2295)] = 122466, + [SMALL_STATE(2296)] = 122527, + [SMALL_STATE(2297)] = 122596, + [SMALL_STATE(2298)] = 122677, + [SMALL_STATE(2299)] = 122760, + [SMALL_STATE(2300)] = 122845, + [SMALL_STATE(2301)] = 122930, + [SMALL_STATE(2302)] = 123001, + [SMALL_STATE(2303)] = 123084, + [SMALL_STATE(2304)] = 123161, + [SMALL_STATE(2305)] = 123246, + [SMALL_STATE(2306)] = 123331, + [SMALL_STATE(2307)] = 123416, + [SMALL_STATE(2308)] = 123497, + [SMALL_STATE(2309)] = 123582, + [SMALL_STATE(2310)] = 123667, + [SMALL_STATE(2311)] = 123732, + [SMALL_STATE(2312)] = 123789, + [SMALL_STATE(2313)] = 123874, + [SMALL_STATE(2314)] = 123947, + [SMALL_STATE(2315)] = 124004, + [SMALL_STATE(2316)] = 124089, + [SMALL_STATE(2317)] = 124164, + [SMALL_STATE(2318)] = 124249, + [SMALL_STATE(2319)] = 124334, + [SMALL_STATE(2320)] = 124414, + [SMALL_STATE(2321)] = 124496, + [SMALL_STATE(2322)] = 124578, + [SMALL_STATE(2323)] = 124660, + [SMALL_STATE(2324)] = 124742, + [SMALL_STATE(2325)] = 124824, + [SMALL_STATE(2326)] = 124906, + [SMALL_STATE(2327)] = 124986, + [SMALL_STATE(2328)] = 125068, + [SMALL_STATE(2329)] = 125150, + [SMALL_STATE(2330)] = 125230, + [SMALL_STATE(2331)] = 125310, + [SMALL_STATE(2332)] = 125390, + [SMALL_STATE(2333)] = 125470, + [SMALL_STATE(2334)] = 125550, + [SMALL_STATE(2335)] = 125632, + [SMALL_STATE(2336)] = 125714, + [SMALL_STATE(2337)] = 125796, + [SMALL_STATE(2338)] = 125878, + [SMALL_STATE(2339)] = 125958, + [SMALL_STATE(2340)] = 126040, + [SMALL_STATE(2341)] = 126122, + [SMALL_STATE(2342)] = 126186, + [SMALL_STATE(2343)] = 126242, + [SMALL_STATE(2344)] = 126310, + [SMALL_STATE(2345)] = 126384, + [SMALL_STATE(2346)] = 126460, + [SMALL_STATE(2347)] = 126530, + [SMALL_STATE(2348)] = 126586, + [SMALL_STATE(2349)] = 126646, + [SMALL_STATE(2350)] = 126726, + [SMALL_STATE(2351)] = 126804, + [SMALL_STATE(2352)] = 126884, + [SMALL_STATE(2353)] = 126964, + [SMALL_STATE(2354)] = 127046, + [SMALL_STATE(2355)] = 127128, + [SMALL_STATE(2356)] = 127210, + [SMALL_STATE(2357)] = 127292, + [SMALL_STATE(2358)] = 127372, + [SMALL_STATE(2359)] = 127452, + [SMALL_STATE(2360)] = 127516, + [SMALL_STATE(2361)] = 127572, + [SMALL_STATE(2362)] = 127640, + [SMALL_STATE(2363)] = 127714, + [SMALL_STATE(2364)] = 127786, + [SMALL_STATE(2365)] = 127862, + [SMALL_STATE(2366)] = 127932, + [SMALL_STATE(2367)] = 127988, + [SMALL_STATE(2368)] = 128048, + [SMALL_STATE(2369)] = 128128, + [SMALL_STATE(2370)] = 128206, + [SMALL_STATE(2371)] = 128278, + [SMALL_STATE(2372)] = 128353, + [SMALL_STATE(2373)] = 128424, + [SMALL_STATE(2374)] = 128499, + [SMALL_STATE(2375)] = 128568, + [SMALL_STATE(2376)] = 128647, + [SMALL_STATE(2377)] = 128702, + [SMALL_STATE(2378)] = 128761, + [SMALL_STATE(2379)] = 128840, + [SMALL_STATE(2380)] = 128917, + [SMALL_STATE(2381)] = 128996, + [SMALL_STATE(2382)] = 129075, + [SMALL_STATE(2383)] = 129154, + [SMALL_STATE(2384)] = 129233, + [SMALL_STATE(2385)] = 129312, + [SMALL_STATE(2386)] = 129369, + [SMALL_STATE(2387)] = 129448, + [SMALL_STATE(2388)] = 129527, + [SMALL_STATE(2389)] = 129606, + [SMALL_STATE(2390)] = 129685, + [SMALL_STATE(2391)] = 129764, + [SMALL_STATE(2392)] = 129843, + [SMALL_STATE(2393)] = 129922, + [SMALL_STATE(2394)] = 130001, + [SMALL_STATE(2395)] = 130080, + [SMALL_STATE(2396)] = 130159, + [SMALL_STATE(2397)] = 130238, + [SMALL_STATE(2398)] = 130287, + [SMALL_STATE(2399)] = 130336, + [SMALL_STATE(2400)] = 130415, + [SMALL_STATE(2401)] = 130494, + [SMALL_STATE(2402)] = 130557, + [SMALL_STATE(2403)] = 130612, + [SMALL_STATE(2404)] = 130679, + [SMALL_STATE(2405)] = 130752, + [SMALL_STATE(2406)] = 130823, + [SMALL_STATE(2407)] = 130890, + [SMALL_STATE(2408)] = 130963, + [SMALL_STATE(2409)] = 131018, + [SMALL_STATE(2410)] = 131077, + [SMALL_STATE(2411)] = 131156, + [SMALL_STATE(2412)] = 131233, + [SMALL_STATE(2413)] = 131312, + [SMALL_STATE(2414)] = 131391, + [SMALL_STATE(2415)] = 131470, + [SMALL_STATE(2416)] = 131549, + [SMALL_STATE(2417)] = 131628, + [SMALL_STATE(2418)] = 131707, + [SMALL_STATE(2419)] = 131786, + [SMALL_STATE(2420)] = 131865, + [SMALL_STATE(2421)] = 131944, + [SMALL_STATE(2422)] = 132023, + [SMALL_STATE(2423)] = 132102, + [SMALL_STATE(2424)] = 132181, + [SMALL_STATE(2425)] = 132260, + [SMALL_STATE(2426)] = 132339, + [SMALL_STATE(2427)] = 132418, + [SMALL_STATE(2428)] = 132497, + [SMALL_STATE(2429)] = 132576, + [SMALL_STATE(2430)] = 132639, + [SMALL_STATE(2431)] = 132694, + [SMALL_STATE(2432)] = 132773, + [SMALL_STATE(2433)] = 132852, + [SMALL_STATE(2434)] = 132931, + [SMALL_STATE(2435)] = 133010, + [SMALL_STATE(2436)] = 133089, + [SMALL_STATE(2437)] = 133168, + [SMALL_STATE(2438)] = 133237, + [SMALL_STATE(2439)] = 133285, + [SMALL_STATE(2440)] = 133333, + [SMALL_STATE(2441)] = 133381, + [SMALL_STATE(2442)] = 133429, + [SMALL_STATE(2443)] = 133477, + [SMALL_STATE(2444)] = 133525, + [SMALL_STATE(2445)] = 133573, + [SMALL_STATE(2446)] = 133621, + [SMALL_STATE(2447)] = 133669, + [SMALL_STATE(2448)] = 133717, + [SMALL_STATE(2449)] = 133765, + [SMALL_STATE(2450)] = 133813, + [SMALL_STATE(2451)] = 133867, + [SMALL_STATE(2452)] = 133915, + [SMALL_STATE(2453)] = 133963, + [SMALL_STATE(2454)] = 134011, + [SMALL_STATE(2455)] = 134059, + [SMALL_STATE(2456)] = 134107, + [SMALL_STATE(2457)] = 134154, + [SMALL_STATE(2458)] = 134203, + [SMALL_STATE(2459)] = 134250, + [SMALL_STATE(2460)] = 134295, + [SMALL_STATE(2461)] = 134340, + [SMALL_STATE(2462)] = 134385, + [SMALL_STATE(2463)] = 134430, + [SMALL_STATE(2464)] = 134475, + [SMALL_STATE(2465)] = 134520, + [SMALL_STATE(2466)] = 134592, + [SMALL_STATE(2467)] = 134664, + [SMALL_STATE(2468)] = 134736, + [SMALL_STATE(2469)] = 134808, + [SMALL_STATE(2470)] = 134880, + [SMALL_STATE(2471)] = 134952, + [SMALL_STATE(2472)] = 135024, + [SMALL_STATE(2473)] = 135096, + [SMALL_STATE(2474)] = 135168, + [SMALL_STATE(2475)] = 135240, + [SMALL_STATE(2476)] = 135312, + [SMALL_STATE(2477)] = 135381, + [SMALL_STATE(2478)] = 135448, + [SMALL_STATE(2479)] = 135515, + [SMALL_STATE(2480)] = 135584, + [SMALL_STATE(2481)] = 135651, + [SMALL_STATE(2482)] = 135718, + [SMALL_STATE(2483)] = 135787, + [SMALL_STATE(2484)] = 135854, + [SMALL_STATE(2485)] = 135923, + [SMALL_STATE(2486)] = 135990, + [SMALL_STATE(2487)] = 136057, + [SMALL_STATE(2488)] = 136126, + [SMALL_STATE(2489)] = 136195, + [SMALL_STATE(2490)] = 136261, + [SMALL_STATE(2491)] = 136305, + [SMALL_STATE(2492)] = 136371, + [SMALL_STATE(2493)] = 136411, + [SMALL_STATE(2494)] = 136477, + [SMALL_STATE(2495)] = 136543, + [SMALL_STATE(2496)] = 136606, + [SMALL_STATE(2497)] = 136669, + [SMALL_STATE(2498)] = 136732, + [SMALL_STATE(2499)] = 136795, + [SMALL_STATE(2500)] = 136858, + [SMALL_STATE(2501)] = 136921, + [SMALL_STATE(2502)] = 136984, + [SMALL_STATE(2503)] = 137047, + [SMALL_STATE(2504)] = 137110, + [SMALL_STATE(2505)] = 137173, + [SMALL_STATE(2506)] = 137236, + [SMALL_STATE(2507)] = 137299, + [SMALL_STATE(2508)] = 137362, + [SMALL_STATE(2509)] = 137425, + [SMALL_STATE(2510)] = 137488, + [SMALL_STATE(2511)] = 137551, + [SMALL_STATE(2512)] = 137588, + [SMALL_STATE(2513)] = 137641, + [SMALL_STATE(2514)] = 137686, + [SMALL_STATE(2515)] = 137751, + [SMALL_STATE(2516)] = 137816, + [SMALL_STATE(2517)] = 137853, + [SMALL_STATE(2518)] = 137890, + [SMALL_STATE(2519)] = 137927, + [SMALL_STATE(2520)] = 137992, + [SMALL_STATE(2521)] = 138057, + [SMALL_STATE(2522)] = 138122, + [SMALL_STATE(2523)] = 138187, + [SMALL_STATE(2524)] = 138245, + [SMALL_STATE(2525)] = 138303, + [SMALL_STATE(2526)] = 138361, + [SMALL_STATE(2527)] = 138405, + [SMALL_STATE(2528)] = 138463, + [SMALL_STATE(2529)] = 138521, + [SMALL_STATE(2530)] = 138577, + [SMALL_STATE(2531)] = 138621, + [SMALL_STATE(2532)] = 138679, + [SMALL_STATE(2533)] = 138719, + [SMALL_STATE(2534)] = 138777, + [SMALL_STATE(2535)] = 138835, + [SMALL_STATE(2536)] = 138893, + [SMALL_STATE(2537)] = 138949, + [SMALL_STATE(2538)] = 138989, + [SMALL_STATE(2539)] = 139047, + [SMALL_STATE(2540)] = 139105, + [SMALL_STATE(2541)] = 139141, + [SMALL_STATE(2542)] = 139196, + [SMALL_STATE(2543)] = 139249, + [SMALL_STATE(2544)] = 139302, + [SMALL_STATE(2545)] = 139357, + [SMALL_STATE(2546)] = 139412, + [SMALL_STATE(2547)] = 139467, + [SMALL_STATE(2548)] = 139504, + [SMALL_STATE(2549)] = 139541, + [SMALL_STATE(2550)] = 139596, + [SMALL_STATE(2551)] = 139635, + [SMALL_STATE(2552)] = 139688, + [SMALL_STATE(2553)] = 139731, + [SMALL_STATE(2554)] = 139770, + [SMALL_STATE(2555)] = 139825, + [SMALL_STATE(2556)] = 139864, + [SMALL_STATE(2557)] = 139903, + [SMALL_STATE(2558)] = 139958, + [SMALL_STATE(2559)] = 139995, + [SMALL_STATE(2560)] = 140032, + [SMALL_STATE(2561)] = 140071, + [SMALL_STATE(2562)] = 140110, + [SMALL_STATE(2563)] = 140165, + [SMALL_STATE(2564)] = 140202, + [SMALL_STATE(2565)] = 140257, + [SMALL_STATE(2566)] = 140310, + [SMALL_STATE(2567)] = 140365, + [SMALL_STATE(2568)] = 140420, + [SMALL_STATE(2569)] = 140475, + [SMALL_STATE(2570)] = 140528, + [SMALL_STATE(2571)] = 140583, + [SMALL_STATE(2572)] = 140638, + [SMALL_STATE(2573)] = 140672, + [SMALL_STATE(2574)] = 140724, + [SMALL_STATE(2575)] = 140774, + [SMALL_STATE(2576)] = 140824, + [SMALL_STATE(2577)] = 140876, + [SMALL_STATE(2578)] = 140926, + [SMALL_STATE(2579)] = 140978, + [SMALL_STATE(2580)] = 141028, + [SMALL_STATE(2581)] = 141078, + [SMALL_STATE(2582)] = 141128, + [SMALL_STATE(2583)] = 141180, + [SMALL_STATE(2584)] = 141236, + [SMALL_STATE(2585)] = 141274, + [SMALL_STATE(2586)] = 141330, + [SMALL_STATE(2587)] = 141386, + [SMALL_STATE(2588)] = 141436, + [SMALL_STATE(2589)] = 141486, + [SMALL_STATE(2590)] = 141542, + [SMALL_STATE(2591)] = 141598, + [SMALL_STATE(2592)] = 141634, + [SMALL_STATE(2593)] = 141686, + [SMALL_STATE(2594)] = 141738, + [SMALL_STATE(2595)] = 141794, + [SMALL_STATE(2596)] = 141844, + [SMALL_STATE(2597)] = 141894, + [SMALL_STATE(2598)] = 141950, + [SMALL_STATE(2599)] = 142006, + [SMALL_STATE(2600)] = 142056, + [SMALL_STATE(2601)] = 142112, + [SMALL_STATE(2602)] = 142164, + [SMALL_STATE(2603)] = 142220, + [SMALL_STATE(2604)] = 142276, + [SMALL_STATE(2605)] = 142328, + [SMALL_STATE(2606)] = 142378, + [SMALL_STATE(2607)] = 142434, + [SMALL_STATE(2608)] = 142484, + [SMALL_STATE(2609)] = 142534, + [SMALL_STATE(2610)] = 142584, + [SMALL_STATE(2611)] = 142634, + [SMALL_STATE(2612)] = 142684, + [SMALL_STATE(2613)] = 142738, + [SMALL_STATE(2614)] = 142778, + [SMALL_STATE(2615)] = 142811, + [SMALL_STATE(2616)] = 142844, + [SMALL_STATE(2617)] = 142879, + [SMALL_STATE(2618)] = 142920, + [SMALL_STATE(2619)] = 142953, + [SMALL_STATE(2620)] = 142990, + [SMALL_STATE(2621)] = 143025, + [SMALL_STATE(2622)] = 143062, + [SMALL_STATE(2623)] = 143095, + [SMALL_STATE(2624)] = 143132, + [SMALL_STATE(2625)] = 143175, + [SMALL_STATE(2626)] = 143212, + [SMALL_STATE(2627)] = 143261, + [SMALL_STATE(2628)] = 143294, + [SMALL_STATE(2629)] = 143327, + [SMALL_STATE(2630)] = 143376, + [SMALL_STATE(2631)] = 143413, + [SMALL_STATE(2632)] = 143461, + [SMALL_STATE(2633)] = 143497, + [SMALL_STATE(2634)] = 143529, + [SMALL_STATE(2635)] = 143561, + [SMALL_STATE(2636)] = 143597, + [SMALL_STATE(2637)] = 143635, + [SMALL_STATE(2638)] = 143669, + [SMALL_STATE(2639)] = 143715, + [SMALL_STATE(2640)] = 143747, + [SMALL_STATE(2641)] = 143779, + [SMALL_STATE(2642)] = 143811, + [SMALL_STATE(2643)] = 143843, + [SMALL_STATE(2644)] = 143875, + [SMALL_STATE(2645)] = 143907, + [SMALL_STATE(2646)] = 143939, + [SMALL_STATE(2647)] = 143971, + [SMALL_STATE(2648)] = 144003, + [SMALL_STATE(2649)] = 144035, + [SMALL_STATE(2650)] = 144067, + [SMALL_STATE(2651)] = 144099, + [SMALL_STATE(2652)] = 144133, + [SMALL_STATE(2653)] = 144165, + [SMALL_STATE(2654)] = 144197, + [SMALL_STATE(2655)] = 144229, + [SMALL_STATE(2656)] = 144261, + [SMALL_STATE(2657)] = 144293, + [SMALL_STATE(2658)] = 144325, + [SMALL_STATE(2659)] = 144357, + [SMALL_STATE(2660)] = 144389, + [SMALL_STATE(2661)] = 144421, + [SMALL_STATE(2662)] = 144453, + [SMALL_STATE(2663)] = 144485, + [SMALL_STATE(2664)] = 144521, + [SMALL_STATE(2665)] = 144553, + [SMALL_STATE(2666)] = 144585, + [SMALL_STATE(2667)] = 144633, + [SMALL_STATE(2668)] = 144665, + [SMALL_STATE(2669)] = 144713, + [SMALL_STATE(2670)] = 144745, + [SMALL_STATE(2671)] = 144777, + [SMALL_STATE(2672)] = 144809, + [SMALL_STATE(2673)] = 144841, + [SMALL_STATE(2674)] = 144873, + [SMALL_STATE(2675)] = 144905, + [SMALL_STATE(2676)] = 144937, + [SMALL_STATE(2677)] = 144985, + [SMALL_STATE(2678)] = 145017, + [SMALL_STATE(2679)] = 145051, + [SMALL_STATE(2680)] = 145085, + [SMALL_STATE(2681)] = 145117, + [SMALL_STATE(2682)] = 145149, + [SMALL_STATE(2683)] = 145181, + [SMALL_STATE(2684)] = 145213, + [SMALL_STATE(2685)] = 145249, + [SMALL_STATE(2686)] = 145297, + [SMALL_STATE(2687)] = 145333, + [SMALL_STATE(2688)] = 145365, + [SMALL_STATE(2689)] = 145397, + [SMALL_STATE(2690)] = 145445, + [SMALL_STATE(2691)] = 145477, + [SMALL_STATE(2692)] = 145509, + [SMALL_STATE(2693)] = 145541, + [SMALL_STATE(2694)] = 145589, + [SMALL_STATE(2695)] = 145621, + [SMALL_STATE(2696)] = 145667, + [SMALL_STATE(2697)] = 145703, + [SMALL_STATE(2698)] = 145735, + [SMALL_STATE(2699)] = 145767, + [SMALL_STATE(2700)] = 145799, + [SMALL_STATE(2701)] = 145831, + [SMALL_STATE(2702)] = 145863, + [SMALL_STATE(2703)] = 145911, + [SMALL_STATE(2704)] = 145947, + [SMALL_STATE(2705)] = 145979, + [SMALL_STATE(2706)] = 146015, + [SMALL_STATE(2707)] = 146047, + [SMALL_STATE(2708)] = 146079, + [SMALL_STATE(2709)] = 146111, + [SMALL_STATE(2710)] = 146147, + [SMALL_STATE(2711)] = 146181, + [SMALL_STATE(2712)] = 146229, + [SMALL_STATE(2713)] = 146267, + [SMALL_STATE(2714)] = 146299, + [SMALL_STATE(2715)] = 146331, + [SMALL_STATE(2716)] = 146363, + [SMALL_STATE(2717)] = 146395, + [SMALL_STATE(2718)] = 146427, + [SMALL_STATE(2719)] = 146459, + [SMALL_STATE(2720)] = 146505, + [SMALL_STATE(2721)] = 146539, + [SMALL_STATE(2722)] = 146573, + [SMALL_STATE(2723)] = 146609, + [SMALL_STATE(2724)] = 146643, + [SMALL_STATE(2725)] = 146689, + [SMALL_STATE(2726)] = 146735, + [SMALL_STATE(2727)] = 146771, + [SMALL_STATE(2728)] = 146805, + [SMALL_STATE(2729)] = 146853, + [SMALL_STATE(2730)] = 146887, + [SMALL_STATE(2731)] = 146933, + [SMALL_STATE(2732)] = 146981, + [SMALL_STATE(2733)] = 147015, + [SMALL_STATE(2734)] = 147047, + [SMALL_STATE(2735)] = 147083, + [SMALL_STATE(2736)] = 147117, + [SMALL_STATE(2737)] = 147149, + [SMALL_STATE(2738)] = 147181, + [SMALL_STATE(2739)] = 147213, + [SMALL_STATE(2740)] = 147261, + [SMALL_STATE(2741)] = 147309, + [SMALL_STATE(2742)] = 147341, + [SMALL_STATE(2743)] = 147373, + [SMALL_STATE(2744)] = 147421, + [SMALL_STATE(2745)] = 147469, + [SMALL_STATE(2746)] = 147501, + [SMALL_STATE(2747)] = 147533, + [SMALL_STATE(2748)] = 147565, + [SMALL_STATE(2749)] = 147597, + [SMALL_STATE(2750)] = 147629, + [SMALL_STATE(2751)] = 147661, + [SMALL_STATE(2752)] = 147693, + [SMALL_STATE(2753)] = 147725, + [SMALL_STATE(2754)] = 147773, + [SMALL_STATE(2755)] = 147816, + [SMALL_STATE(2756)] = 147863, + [SMALL_STATE(2757)] = 147906, + [SMALL_STATE(2758)] = 147939, + [SMALL_STATE(2759)] = 147986, + [SMALL_STATE(2760)] = 148029, + [SMALL_STATE(2761)] = 148072, + [SMALL_STATE(2762)] = 148119, + [SMALL_STATE(2763)] = 148166, + [SMALL_STATE(2764)] = 148213, + [SMALL_STATE(2765)] = 148246, + [SMALL_STATE(2766)] = 148289, + [SMALL_STATE(2767)] = 148336, + [SMALL_STATE(2768)] = 148383, + [SMALL_STATE(2769)] = 148428, + [SMALL_STATE(2770)] = 148475, + [SMALL_STATE(2771)] = 148522, + [SMALL_STATE(2772)] = 148565, + [SMALL_STATE(2773)] = 148600, + [SMALL_STATE(2774)] = 148645, + [SMALL_STATE(2775)] = 148688, + [SMALL_STATE(2776)] = 148733, + [SMALL_STATE(2777)] = 148778, + [SMALL_STATE(2778)] = 148823, + [SMALL_STATE(2779)] = 148870, + [SMALL_STATE(2780)] = 148917, + [SMALL_STATE(2781)] = 148960, + [SMALL_STATE(2782)] = 148991, + [SMALL_STATE(2783)] = 149024, + [SMALL_STATE(2784)] = 149071, + [SMALL_STATE(2785)] = 149101, + [SMALL_STATE(2786)] = 149143, + [SMALL_STATE(2787)] = 149183, + [SMALL_STATE(2788)] = 149213, + [SMALL_STATE(2789)] = 149243, + [SMALL_STATE(2790)] = 149273, + [SMALL_STATE(2791)] = 149303, + [SMALL_STATE(2792)] = 149333, + [SMALL_STATE(2793)] = 149361, + [SMALL_STATE(2794)] = 149403, + [SMALL_STATE(2795)] = 149433, + [SMALL_STATE(2796)] = 149467, + [SMALL_STATE(2797)] = 149497, + [SMALL_STATE(2798)] = 149527, + [SMALL_STATE(2799)] = 149557, + [SMALL_STATE(2800)] = 149587, + [SMALL_STATE(2801)] = 149617, + [SMALL_STATE(2802)] = 149659, + [SMALL_STATE(2803)] = 149701, + [SMALL_STATE(2804)] = 149731, + [SMALL_STATE(2805)] = 149761, + [SMALL_STATE(2806)] = 149791, + [SMALL_STATE(2807)] = 149833, + [SMALL_STATE(2808)] = 149863, + [SMALL_STATE(2809)] = 149893, + [SMALL_STATE(2810)] = 149923, + [SMALL_STATE(2811)] = 149965, + [SMALL_STATE(2812)] = 150007, + [SMALL_STATE(2813)] = 150049, + [SMALL_STATE(2814)] = 150081, + [SMALL_STATE(2815)] = 150111, + [SMALL_STATE(2816)] = 150141, + [SMALL_STATE(2817)] = 150171, + [SMALL_STATE(2818)] = 150213, + [SMALL_STATE(2819)] = 150243, + [SMALL_STATE(2820)] = 150273, + [SMALL_STATE(2821)] = 150303, + [SMALL_STATE(2822)] = 150333, + [SMALL_STATE(2823)] = 150375, + [SMALL_STATE(2824)] = 150405, + [SMALL_STATE(2825)] = 150439, + [SMALL_STATE(2826)] = 150469, + [SMALL_STATE(2827)] = 150499, + [SMALL_STATE(2828)] = 150533, + [SMALL_STATE(2829)] = 150563, + [SMALL_STATE(2830)] = 150593, + [SMALL_STATE(2831)] = 150623, + [SMALL_STATE(2832)] = 150663, + [SMALL_STATE(2833)] = 150693, + [SMALL_STATE(2834)] = 150723, + [SMALL_STATE(2835)] = 150753, + [SMALL_STATE(2836)] = 150783, + [SMALL_STATE(2837)] = 150813, + [SMALL_STATE(2838)] = 150843, + [SMALL_STATE(2839)] = 150873, + [SMALL_STATE(2840)] = 150903, + [SMALL_STATE(2841)] = 150945, + [SMALL_STATE(2842)] = 150979, + [SMALL_STATE(2843)] = 151011, + [SMALL_STATE(2844)] = 151055, + [SMALL_STATE(2845)] = 151085, + [SMALL_STATE(2846)] = 151114, + [SMALL_STATE(2847)] = 151155, + [SMALL_STATE(2848)] = 151198, + [SMALL_STATE(2849)] = 151227, + [SMALL_STATE(2850)] = 151258, + [SMALL_STATE(2851)] = 151287, + [SMALL_STATE(2852)] = 151318, + [SMALL_STATE(2853)] = 151347, + [SMALL_STATE(2854)] = 151376, + [SMALL_STATE(2855)] = 151407, + [SMALL_STATE(2856)] = 151434, + [SMALL_STATE(2857)] = 151465, + [SMALL_STATE(2858)] = 151494, + [SMALL_STATE(2859)] = 151533, + [SMALL_STATE(2860)] = 151566, + [SMALL_STATE(2861)] = 151593, + [SMALL_STATE(2862)] = 151622, + [SMALL_STATE(2863)] = 151653, + [SMALL_STATE(2864)] = 151684, + [SMALL_STATE(2865)] = 151711, + [SMALL_STATE(2866)] = 151740, + [SMALL_STATE(2867)] = 151769, + [SMALL_STATE(2868)] = 151812, + [SMALL_STATE(2869)] = 151841, + [SMALL_STATE(2870)] = 151870, + [SMALL_STATE(2871)] = 151899, + [SMALL_STATE(2872)] = 151928, + [SMALL_STATE(2873)] = 151959, + [SMALL_STATE(2874)] = 152002, + [SMALL_STATE(2875)] = 152031, + [SMALL_STATE(2876)] = 152060, + [SMALL_STATE(2877)] = 152089, + [SMALL_STATE(2878)] = 152118, + [SMALL_STATE(2879)] = 152155, + [SMALL_STATE(2880)] = 152182, + [SMALL_STATE(2881)] = 152209, + [SMALL_STATE(2882)] = 152250, + [SMALL_STATE(2883)] = 152293, + [SMALL_STATE(2884)] = 152322, + [SMALL_STATE(2885)] = 152359, + [SMALL_STATE(2886)] = 152386, + [SMALL_STATE(2887)] = 152429, + [SMALL_STATE(2888)] = 152458, + [SMALL_STATE(2889)] = 152485, + [SMALL_STATE(2890)] = 152512, + [SMALL_STATE(2891)] = 152539, + [SMALL_STATE(2892)] = 152568, + [SMALL_STATE(2893)] = 152599, + [SMALL_STATE(2894)] = 152626, + [SMALL_STATE(2895)] = 152669, + [SMALL_STATE(2896)] = 152700, + [SMALL_STATE(2897)] = 152729, + [SMALL_STATE(2898)] = 152756, + [SMALL_STATE(2899)] = 152787, + [SMALL_STATE(2900)] = 152818, + [SMALL_STATE(2901)] = 152861, + [SMALL_STATE(2902)] = 152888, + [SMALL_STATE(2903)] = 152923, + [SMALL_STATE(2904)] = 152956, + [SMALL_STATE(2905)] = 152985, + [SMALL_STATE(2906)] = 153015, + [SMALL_STATE(2907)] = 153055, + [SMALL_STATE(2908)] = 153083, + [SMALL_STATE(2909)] = 153123, + [SMALL_STATE(2910)] = 153149, + [SMALL_STATE(2911)] = 153183, + [SMALL_STATE(2912)] = 153217, + [SMALL_STATE(2913)] = 153249, + [SMALL_STATE(2914)] = 153283, + [SMALL_STATE(2915)] = 153311, + [SMALL_STATE(2916)] = 153345, + [SMALL_STATE(2917)] = 153385, + [SMALL_STATE(2918)] = 153421, + [SMALL_STATE(2919)] = 153455, + [SMALL_STATE(2920)] = 153495, + [SMALL_STATE(2921)] = 153523, + [SMALL_STATE(2922)] = 153563, + [SMALL_STATE(2923)] = 153597, + [SMALL_STATE(2924)] = 153633, + [SMALL_STATE(2925)] = 153659, + [SMALL_STATE(2926)] = 153699, + [SMALL_STATE(2927)] = 153739, + [SMALL_STATE(2928)] = 153767, + [SMALL_STATE(2929)] = 153801, + [SMALL_STATE(2930)] = 153831, + [SMALL_STATE(2931)] = 153867, + [SMALL_STATE(2932)] = 153905, + [SMALL_STATE(2933)] = 153939, + [SMALL_STATE(2934)] = 153979, + [SMALL_STATE(2935)] = 154013, + [SMALL_STATE(2936)] = 154047, + [SMALL_STATE(2937)] = 154073, + [SMALL_STATE(2938)] = 154103, + [SMALL_STATE(2939)] = 154141, + [SMALL_STATE(2940)] = 154181, + [SMALL_STATE(2941)] = 154221, + [SMALL_STATE(2942)] = 154261, + [SMALL_STATE(2943)] = 154287, + [SMALL_STATE(2944)] = 154313, + [SMALL_STATE(2945)] = 154347, + [SMALL_STATE(2946)] = 154377, + [SMALL_STATE(2947)] = 154407, + [SMALL_STATE(2948)] = 154435, + [SMALL_STATE(2949)] = 154469, + [SMALL_STATE(2950)] = 154499, + [SMALL_STATE(2951)] = 154529, + [SMALL_STATE(2952)] = 154559, + [SMALL_STATE(2953)] = 154599, + [SMALL_STATE(2954)] = 154639, + [SMALL_STATE(2955)] = 154675, + [SMALL_STATE(2956)] = 154709, + [SMALL_STATE(2957)] = 154749, + [SMALL_STATE(2958)] = 154789, + [SMALL_STATE(2959)] = 154823, + [SMALL_STATE(2960)] = 154863, + [SMALL_STATE(2961)] = 154894, + [SMALL_STATE(2962)] = 154925, + [SMALL_STATE(2963)] = 154950, + [SMALL_STATE(2964)] = 154977, + [SMALL_STATE(2965)] = 155008, + [SMALL_STATE(2966)] = 155035, + [SMALL_STATE(2967)] = 155066, + [SMALL_STATE(2968)] = 155097, + [SMALL_STATE(2969)] = 155128, + [SMALL_STATE(2970)] = 155159, + [SMALL_STATE(2971)] = 155186, + [SMALL_STATE(2972)] = 155217, + [SMALL_STATE(2973)] = 155244, + [SMALL_STATE(2974)] = 155275, + [SMALL_STATE(2975)] = 155302, + [SMALL_STATE(2976)] = 155327, + [SMALL_STATE(2977)] = 155360, + [SMALL_STATE(2978)] = 155385, + [SMALL_STATE(2979)] = 155412, + [SMALL_STATE(2980)] = 155443, + [SMALL_STATE(2981)] = 155478, + [SMALL_STATE(2982)] = 155509, + [SMALL_STATE(2983)] = 155538, + [SMALL_STATE(2984)] = 155565, + [SMALL_STATE(2985)] = 155596, + [SMALL_STATE(2986)] = 155627, + [SMALL_STATE(2987)] = 155664, + [SMALL_STATE(2988)] = 155693, + [SMALL_STATE(2989)] = 155722, + [SMALL_STATE(2990)] = 155753, + [SMALL_STATE(2991)] = 155778, + [SMALL_STATE(2992)] = 155805, + [SMALL_STATE(2993)] = 155830, + [SMALL_STATE(2994)] = 155857, + [SMALL_STATE(2995)] = 155888, + [SMALL_STATE(2996)] = 155917, + [SMALL_STATE(2997)] = 155948, + [SMALL_STATE(2998)] = 155977, + [SMALL_STATE(2999)] = 156008, + [SMALL_STATE(3000)] = 156037, + [SMALL_STATE(3001)] = 156068, + [SMALL_STATE(3002)] = 156105, + [SMALL_STATE(3003)] = 156134, + [SMALL_STATE(3004)] = 156161, + [SMALL_STATE(3005)] = 156188, + [SMALL_STATE(3006)] = 156217, + [SMALL_STATE(3007)] = 156246, + [SMALL_STATE(3008)] = 156275, + [SMALL_STATE(3009)] = 156304, + [SMALL_STATE(3010)] = 156329, + [SMALL_STATE(3011)] = 156358, + [SMALL_STATE(3012)] = 156389, + [SMALL_STATE(3013)] = 156424, + [SMALL_STATE(3014)] = 156453, + [SMALL_STATE(3015)] = 156484, + [SMALL_STATE(3016)] = 156515, + [SMALL_STATE(3017)] = 156540, + [SMALL_STATE(3018)] = 156571, + [SMALL_STATE(3019)] = 156598, + [SMALL_STATE(3020)] = 156629, + [SMALL_STATE(3021)] = 156654, + [SMALL_STATE(3022)] = 156685, + [SMALL_STATE(3023)] = 156712, + [SMALL_STATE(3024)] = 156741, + [SMALL_STATE(3025)] = 156772, + [SMALL_STATE(3026)] = 156803, + [SMALL_STATE(3027)] = 156834, + [SMALL_STATE(3028)] = 156863, + [SMALL_STATE(3029)] = 156897, + [SMALL_STATE(3030)] = 156931, + [SMALL_STATE(3031)] = 156955, + [SMALL_STATE(3032)] = 156989, + [SMALL_STATE(3033)] = 157023, + [SMALL_STATE(3034)] = 157057, + [SMALL_STATE(3035)] = 157091, + [SMALL_STATE(3036)] = 157125, + [SMALL_STATE(3037)] = 157151, + [SMALL_STATE(3038)] = 157185, + [SMALL_STATE(3039)] = 157219, + [SMALL_STATE(3040)] = 157253, + [SMALL_STATE(3041)] = 157283, + [SMALL_STATE(3042)] = 157313, + [SMALL_STATE(3043)] = 157347, + [SMALL_STATE(3044)] = 157381, + [SMALL_STATE(3045)] = 157415, + [SMALL_STATE(3046)] = 157441, + [SMALL_STATE(3047)] = 157475, + [SMALL_STATE(3048)] = 157505, + [SMALL_STATE(3049)] = 157529, + [SMALL_STATE(3050)] = 157557, + [SMALL_STATE(3051)] = 157591, + [SMALL_STATE(3052)] = 157621, + [SMALL_STATE(3053)] = 157649, + [SMALL_STATE(3054)] = 157683, + [SMALL_STATE(3055)] = 157713, + [SMALL_STATE(3056)] = 157747, + [SMALL_STATE(3057)] = 157781, + [SMALL_STATE(3058)] = 157809, + [SMALL_STATE(3059)] = 157837, + [SMALL_STATE(3060)] = 157861, + [SMALL_STATE(3061)] = 157895, + [SMALL_STATE(3062)] = 157929, + [SMALL_STATE(3063)] = 157953, + [SMALL_STATE(3064)] = 157977, + [SMALL_STATE(3065)] = 158003, + [SMALL_STATE(3066)] = 158027, + [SMALL_STATE(3067)] = 158051, + [SMALL_STATE(3068)] = 158085, + [SMALL_STATE(3069)] = 158113, + [SMALL_STATE(3070)] = 158143, + [SMALL_STATE(3071)] = 158167, + [SMALL_STATE(3072)] = 158191, + [SMALL_STATE(3073)] = 158215, + [SMALL_STATE(3074)] = 158239, + [SMALL_STATE(3075)] = 158267, + [SMALL_STATE(3076)] = 158291, + [SMALL_STATE(3077)] = 158315, + [SMALL_STATE(3078)] = 158339, + [SMALL_STATE(3079)] = 158363, + [SMALL_STATE(3080)] = 158387, + [SMALL_STATE(3081)] = 158411, + [SMALL_STATE(3082)] = 158435, + [SMALL_STATE(3083)] = 158469, + [SMALL_STATE(3084)] = 158497, + [SMALL_STATE(3085)] = 158527, + [SMALL_STATE(3086)] = 158561, + [SMALL_STATE(3087)] = 158589, + [SMALL_STATE(3088)] = 158613, + [SMALL_STATE(3089)] = 158637, + [SMALL_STATE(3090)] = 158671, + [SMALL_STATE(3091)] = 158695, + [SMALL_STATE(3092)] = 158719, + [SMALL_STATE(3093)] = 158743, + [SMALL_STATE(3094)] = 158777, + [SMALL_STATE(3095)] = 158801, + [SMALL_STATE(3096)] = 158825, + [SMALL_STATE(3097)] = 158849, + [SMALL_STATE(3098)] = 158873, + [SMALL_STATE(3099)] = 158897, + [SMALL_STATE(3100)] = 158921, + [SMALL_STATE(3101)] = 158945, + [SMALL_STATE(3102)] = 158973, + [SMALL_STATE(3103)] = 159003, + [SMALL_STATE(3104)] = 159037, + [SMALL_STATE(3105)] = 159071, + [SMALL_STATE(3106)] = 159099, + [SMALL_STATE(3107)] = 159133, + [SMALL_STATE(3108)] = 159167, + [SMALL_STATE(3109)] = 159195, + [SMALL_STATE(3110)] = 159223, + [SMALL_STATE(3111)] = 159257, + [SMALL_STATE(3112)] = 159285, + [SMALL_STATE(3113)] = 159319, + [SMALL_STATE(3114)] = 159353, + [SMALL_STATE(3115)] = 159383, + [SMALL_STATE(3116)] = 159417, + [SMALL_STATE(3117)] = 159445, + [SMALL_STATE(3118)] = 159477, + [SMALL_STATE(3119)] = 159505, + [SMALL_STATE(3120)] = 159531, + [SMALL_STATE(3121)] = 159557, + [SMALL_STATE(3122)] = 159585, + [SMALL_STATE(3123)] = 159613, + [SMALL_STATE(3124)] = 159639, + [SMALL_STATE(3125)] = 159663, + [SMALL_STATE(3126)] = 159697, + [SMALL_STATE(3127)] = 159731, + [SMALL_STATE(3128)] = 159757, + [SMALL_STATE(3129)] = 159783, + [SMALL_STATE(3130)] = 159811, + [SMALL_STATE(3131)] = 159839, + [SMALL_STATE(3132)] = 159865, + [SMALL_STATE(3133)] = 159893, + [SMALL_STATE(3134)] = 159917, + [SMALL_STATE(3135)] = 159945, + [SMALL_STATE(3136)] = 159973, + [SMALL_STATE(3137)] = 160001, + [SMALL_STATE(3138)] = 160035, + [SMALL_STATE(3139)] = 160061, + [SMALL_STATE(3140)] = 160087, + [SMALL_STATE(3141)] = 160121, + [SMALL_STATE(3142)] = 160149, + [SMALL_STATE(3143)] = 160177, + [SMALL_STATE(3144)] = 160205, + [SMALL_STATE(3145)] = 160233, + [SMALL_STATE(3146)] = 160261, + [SMALL_STATE(3147)] = 160289, + [SMALL_STATE(3148)] = 160317, + [SMALL_STATE(3149)] = 160345, + [SMALL_STATE(3150)] = 160379, + [SMALL_STATE(3151)] = 160407, + [SMALL_STATE(3152)] = 160435, + [SMALL_STATE(3153)] = 160463, + [SMALL_STATE(3154)] = 160497, + [SMALL_STATE(3155)] = 160525, + [SMALL_STATE(3156)] = 160555, + [SMALL_STATE(3157)] = 160585, + [SMALL_STATE(3158)] = 160615, + [SMALL_STATE(3159)] = 160639, + [SMALL_STATE(3160)] = 160670, + [SMALL_STATE(3161)] = 160699, + [SMALL_STATE(3162)] = 160724, + [SMALL_STATE(3163)] = 160749, + [SMALL_STATE(3164)] = 160776, + [SMALL_STATE(3165)] = 160803, + [SMALL_STATE(3166)] = 160830, + [SMALL_STATE(3167)] = 160857, + [SMALL_STATE(3168)] = 160884, + [SMALL_STATE(3169)] = 160907, + [SMALL_STATE(3170)] = 160932, + [SMALL_STATE(3171)] = 160959, + [SMALL_STATE(3172)] = 160986, + [SMALL_STATE(3173)] = 161013, + [SMALL_STATE(3174)] = 161038, + [SMALL_STATE(3175)] = 161067, + [SMALL_STATE(3176)] = 161096, + [SMALL_STATE(3177)] = 161125, + [SMALL_STATE(3178)] = 161152, + [SMALL_STATE(3179)] = 161179, + [SMALL_STATE(3180)] = 161206, + [SMALL_STATE(3181)] = 161229, + [SMALL_STATE(3182)] = 161260, + [SMALL_STATE(3183)] = 161285, + [SMALL_STATE(3184)] = 161310, + [SMALL_STATE(3185)] = 161333, + [SMALL_STATE(3186)] = 161360, + [SMALL_STATE(3187)] = 161385, + [SMALL_STATE(3188)] = 161414, + [SMALL_STATE(3189)] = 161443, + [SMALL_STATE(3190)] = 161470, + [SMALL_STATE(3191)] = 161499, + [SMALL_STATE(3192)] = 161526, + [SMALL_STATE(3193)] = 161549, + [SMALL_STATE(3194)] = 161574, + [SMALL_STATE(3195)] = 161601, + [SMALL_STATE(3196)] = 161628, + [SMALL_STATE(3197)] = 161657, + [SMALL_STATE(3198)] = 161686, + [SMALL_STATE(3199)] = 161717, + [SMALL_STATE(3200)] = 161746, + [SMALL_STATE(3201)] = 161773, + [SMALL_STATE(3202)] = 161802, + [SMALL_STATE(3203)] = 161829, + [SMALL_STATE(3204)] = 161856, + [SMALL_STATE(3205)] = 161883, + [SMALL_STATE(3206)] = 161910, + [SMALL_STATE(3207)] = 161935, + [SMALL_STATE(3208)] = 161962, + [SMALL_STATE(3209)] = 161991, + [SMALL_STATE(3210)] = 162018, + [SMALL_STATE(3211)] = 162043, + [SMALL_STATE(3212)] = 162070, + [SMALL_STATE(3213)] = 162093, + [SMALL_STATE(3214)] = 162120, + [SMALL_STATE(3215)] = 162147, + [SMALL_STATE(3216)] = 162170, + [SMALL_STATE(3217)] = 162197, + [SMALL_STATE(3218)] = 162222, + [SMALL_STATE(3219)] = 162247, + [SMALL_STATE(3220)] = 162274, + [SMALL_STATE(3221)] = 162301, + [SMALL_STATE(3222)] = 162328, + [SMALL_STATE(3223)] = 162359, + [SMALL_STATE(3224)] = 162388, + [SMALL_STATE(3225)] = 162419, + [SMALL_STATE(3226)] = 162446, + [SMALL_STATE(3227)] = 162475, + [SMALL_STATE(3228)] = 162502, + [SMALL_STATE(3229)] = 162527, + [SMALL_STATE(3230)] = 162552, + [SMALL_STATE(3231)] = 162583, + [SMALL_STATE(3232)] = 162606, + [SMALL_STATE(3233)] = 162635, + [SMALL_STATE(3234)] = 162666, + [SMALL_STATE(3235)] = 162693, + [SMALL_STATE(3236)] = 162718, + [SMALL_STATE(3237)] = 162747, + [SMALL_STATE(3238)] = 162770, + [SMALL_STATE(3239)] = 162797, + [SMALL_STATE(3240)] = 162826, + [SMALL_STATE(3241)] = 162855, + [SMALL_STATE(3242)] = 162880, + [SMALL_STATE(3243)] = 162909, + [SMALL_STATE(3244)] = 162932, + [SMALL_STATE(3245)] = 162961, + [SMALL_STATE(3246)] = 162988, + [SMALL_STATE(3247)] = 163015, + [SMALL_STATE(3248)] = 163046, + [SMALL_STATE(3249)] = 163071, + [SMALL_STATE(3250)] = 163094, + [SMALL_STATE(3251)] = 163119, + [SMALL_STATE(3252)] = 163148, + [SMALL_STATE(3253)] = 163177, + [SMALL_STATE(3254)] = 163206, + [SMALL_STATE(3255)] = 163235, + [SMALL_STATE(3256)] = 163264, + [SMALL_STATE(3257)] = 163293, + [SMALL_STATE(3258)] = 163322, + [SMALL_STATE(3259)] = 163349, + [SMALL_STATE(3260)] = 163376, + [SMALL_STATE(3261)] = 163403, + [SMALL_STATE(3262)] = 163432, + [SMALL_STATE(3263)] = 163457, + [SMALL_STATE(3264)] = 163482, + [SMALL_STATE(3265)] = 163513, + [SMALL_STATE(3266)] = 163542, + [SMALL_STATE(3267)] = 163571, + [SMALL_STATE(3268)] = 163596, + [SMALL_STATE(3269)] = 163625, + [SMALL_STATE(3270)] = 163654, + [SMALL_STATE(3271)] = 163683, + [SMALL_STATE(3272)] = 163712, + [SMALL_STATE(3273)] = 163739, + [SMALL_STATE(3274)] = 163768, + [SMALL_STATE(3275)] = 163791, + [SMALL_STATE(3276)] = 163820, + [SMALL_STATE(3277)] = 163849, + [SMALL_STATE(3278)] = 163876, + [SMALL_STATE(3279)] = 163903, + [SMALL_STATE(3280)] = 163930, + [SMALL_STATE(3281)] = 163959, + [SMALL_STATE(3282)] = 163986, + [SMALL_STATE(3283)] = 164015, + [SMALL_STATE(3284)] = 164042, + [SMALL_STATE(3285)] = 164069, + [SMALL_STATE(3286)] = 164094, + [SMALL_STATE(3287)] = 164125, + [SMALL_STATE(3288)] = 164154, + [SMALL_STATE(3289)] = 164183, + [SMALL_STATE(3290)] = 164210, + [SMALL_STATE(3291)] = 164239, + [SMALL_STATE(3292)] = 164266, + [SMALL_STATE(3293)] = 164295, + [SMALL_STATE(3294)] = 164326, + [SMALL_STATE(3295)] = 164351, + [SMALL_STATE(3296)] = 164378, + [SMALL_STATE(3297)] = 164409, + [SMALL_STATE(3298)] = 164436, + [SMALL_STATE(3299)] = 164463, + [SMALL_STATE(3300)] = 164490, + [SMALL_STATE(3301)] = 164517, + [SMALL_STATE(3302)] = 164544, + [SMALL_STATE(3303)] = 164575, + [SMALL_STATE(3304)] = 164602, + [SMALL_STATE(3305)] = 164627, + [SMALL_STATE(3306)] = 164650, + [SMALL_STATE(3307)] = 164677, + [SMALL_STATE(3308)] = 164704, + [SMALL_STATE(3309)] = 164731, + [SMALL_STATE(3310)] = 164756, + [SMALL_STATE(3311)] = 164781, + [SMALL_STATE(3312)] = 164808, + [SMALL_STATE(3313)] = 164835, + [SMALL_STATE(3314)] = 164862, + [SMALL_STATE(3315)] = 164890, + [SMALL_STATE(3316)] = 164920, + [SMALL_STATE(3317)] = 164948, + [SMALL_STATE(3318)] = 164976, + [SMALL_STATE(3319)] = 165004, + [SMALL_STATE(3320)] = 165032, + [SMALL_STATE(3321)] = 165062, + [SMALL_STATE(3322)] = 165090, + [SMALL_STATE(3323)] = 165118, + [SMALL_STATE(3324)] = 165144, + [SMALL_STATE(3325)] = 165174, + [SMALL_STATE(3326)] = 165202, + [SMALL_STATE(3327)] = 165232, + [SMALL_STATE(3328)] = 165260, + [SMALL_STATE(3329)] = 165288, + [SMALL_STATE(3330)] = 165316, + [SMALL_STATE(3331)] = 165344, + [SMALL_STATE(3332)] = 165368, + [SMALL_STATE(3333)] = 165396, + [SMALL_STATE(3334)] = 165426, + [SMALL_STATE(3335)] = 165456, + [SMALL_STATE(3336)] = 165484, + [SMALL_STATE(3337)] = 165512, + [SMALL_STATE(3338)] = 165542, + [SMALL_STATE(3339)] = 165564, + [SMALL_STATE(3340)] = 165586, + [SMALL_STATE(3341)] = 165614, + [SMALL_STATE(3342)] = 165644, + [SMALL_STATE(3343)] = 165674, + [SMALL_STATE(3344)] = 165700, + [SMALL_STATE(3345)] = 165728, + [SMALL_STATE(3346)] = 165750, + [SMALL_STATE(3347)] = 165778, + [SMALL_STATE(3348)] = 165808, + [SMALL_STATE(3349)] = 165834, + [SMALL_STATE(3350)] = 165864, + [SMALL_STATE(3351)] = 165894, + [SMALL_STATE(3352)] = 165924, + [SMALL_STATE(3353)] = 165954, + [SMALL_STATE(3354)] = 165982, + [SMALL_STATE(3355)] = 166008, + [SMALL_STATE(3356)] = 166036, + [SMALL_STATE(3357)] = 166064, + [SMALL_STATE(3358)] = 166092, + [SMALL_STATE(3359)] = 166122, + [SMALL_STATE(3360)] = 166152, + [SMALL_STATE(3361)] = 166182, + [SMALL_STATE(3362)] = 166210, + [SMALL_STATE(3363)] = 166232, + [SMALL_STATE(3364)] = 166260, + [SMALL_STATE(3365)] = 166290, + [SMALL_STATE(3366)] = 166318, + [SMALL_STATE(3367)] = 166340, + [SMALL_STATE(3368)] = 166368, + [SMALL_STATE(3369)] = 166396, + [SMALL_STATE(3370)] = 166424, + [SMALL_STATE(3371)] = 166452, + [SMALL_STATE(3372)] = 166480, + [SMALL_STATE(3373)] = 166508, + [SMALL_STATE(3374)] = 166538, + [SMALL_STATE(3375)] = 166566, + [SMALL_STATE(3376)] = 166592, + [SMALL_STATE(3377)] = 166614, + [SMALL_STATE(3378)] = 166644, + [SMALL_STATE(3379)] = 166672, + [SMALL_STATE(3380)] = 166700, + [SMALL_STATE(3381)] = 166728, + [SMALL_STATE(3382)] = 166756, + [SMALL_STATE(3383)] = 166778, + [SMALL_STATE(3384)] = 166806, + [SMALL_STATE(3385)] = 166828, + [SMALL_STATE(3386)] = 166856, + [SMALL_STATE(3387)] = 166884, + [SMALL_STATE(3388)] = 166912, + [SMALL_STATE(3389)] = 166942, + [SMALL_STATE(3390)] = 166964, + [SMALL_STATE(3391)] = 166992, + [SMALL_STATE(3392)] = 167020, + [SMALL_STATE(3393)] = 167046, + [SMALL_STATE(3394)] = 167076, + [SMALL_STATE(3395)] = 167102, + [SMALL_STATE(3396)] = 167132, + [SMALL_STATE(3397)] = 167162, + [SMALL_STATE(3398)] = 167190, + [SMALL_STATE(3399)] = 167218, + [SMALL_STATE(3400)] = 167246, + [SMALL_STATE(3401)] = 167274, + [SMALL_STATE(3402)] = 167302, + [SMALL_STATE(3403)] = 167326, + [SMALL_STATE(3404)] = 167350, + [SMALL_STATE(3405)] = 167380, + [SMALL_STATE(3406)] = 167406, + [SMALL_STATE(3407)] = 167434, + [SMALL_STATE(3408)] = 167464, + [SMALL_STATE(3409)] = 167492, + [SMALL_STATE(3410)] = 167516, + [SMALL_STATE(3411)] = 167540, + [SMALL_STATE(3412)] = 167568, + [SMALL_STATE(3413)] = 167596, + [SMALL_STATE(3414)] = 167624, + [SMALL_STATE(3415)] = 167650, + [SMALL_STATE(3416)] = 167678, + [SMALL_STATE(3417)] = 167708, + [SMALL_STATE(3418)] = 167736, + [SMALL_STATE(3419)] = 167764, + [SMALL_STATE(3420)] = 167794, + [SMALL_STATE(3421)] = 167822, + [SMALL_STATE(3422)] = 167844, + [SMALL_STATE(3423)] = 167874, + [SMALL_STATE(3424)] = 167900, + [SMALL_STATE(3425)] = 167930, + [SMALL_STATE(3426)] = 167958, + [SMALL_STATE(3427)] = 167986, + [SMALL_STATE(3428)] = 168014, + [SMALL_STATE(3429)] = 168044, + [SMALL_STATE(3430)] = 168072, + [SMALL_STATE(3431)] = 168102, + [SMALL_STATE(3432)] = 168132, + [SMALL_STATE(3433)] = 168160, + [SMALL_STATE(3434)] = 168188, + [SMALL_STATE(3435)] = 168210, + [SMALL_STATE(3436)] = 168240, + [SMALL_STATE(3437)] = 168268, + [SMALL_STATE(3438)] = 168296, + [SMALL_STATE(3439)] = 168324, + [SMALL_STATE(3440)] = 168354, + [SMALL_STATE(3441)] = 168382, + [SMALL_STATE(3442)] = 168410, + [SMALL_STATE(3443)] = 168438, + [SMALL_STATE(3444)] = 168468, + [SMALL_STATE(3445)] = 168496, + [SMALL_STATE(3446)] = 168524, + [SMALL_STATE(3447)] = 168554, + [SMALL_STATE(3448)] = 168582, + [SMALL_STATE(3449)] = 168612, + [SMALL_STATE(3450)] = 168634, + [SMALL_STATE(3451)] = 168656, + [SMALL_STATE(3452)] = 168686, + [SMALL_STATE(3453)] = 168710, + [SMALL_STATE(3454)] = 168740, + [SMALL_STATE(3455)] = 168766, + [SMALL_STATE(3456)] = 168794, + [SMALL_STATE(3457)] = 168822, + [SMALL_STATE(3458)] = 168852, + [SMALL_STATE(3459)] = 168880, + [SMALL_STATE(3460)] = 168908, + [SMALL_STATE(3461)] = 168936, + [SMALL_STATE(3462)] = 168966, + [SMALL_STATE(3463)] = 168996, + [SMALL_STATE(3464)] = 169024, + [SMALL_STATE(3465)] = 169054, + [SMALL_STATE(3466)] = 169082, + [SMALL_STATE(3467)] = 169106, + [SMALL_STATE(3468)] = 169136, + [SMALL_STATE(3469)] = 169164, + [SMALL_STATE(3470)] = 169194, + [SMALL_STATE(3471)] = 169222, + [SMALL_STATE(3472)] = 169250, + [SMALL_STATE(3473)] = 169280, + [SMALL_STATE(3474)] = 169308, + [SMALL_STATE(3475)] = 169336, + [SMALL_STATE(3476)] = 169366, + [SMALL_STATE(3477)] = 169396, + [SMALL_STATE(3478)] = 169426, + [SMALL_STATE(3479)] = 169454, + [SMALL_STATE(3480)] = 169482, + [SMALL_STATE(3481)] = 169510, + [SMALL_STATE(3482)] = 169536, + [SMALL_STATE(3483)] = 169564, + [SMALL_STATE(3484)] = 169592, + [SMALL_STATE(3485)] = 169618, + [SMALL_STATE(3486)] = 169648, + [SMALL_STATE(3487)] = 169671, + [SMALL_STATE(3488)] = 169694, + [SMALL_STATE(3489)] = 169717, + [SMALL_STATE(3490)] = 169742, + [SMALL_STATE(3491)] = 169769, + [SMALL_STATE(3492)] = 169796, + [SMALL_STATE(3493)] = 169823, + [SMALL_STATE(3494)] = 169848, + [SMALL_STATE(3495)] = 169875, + [SMALL_STATE(3496)] = 169898, + [SMALL_STATE(3497)] = 169925, + [SMALL_STATE(3498)] = 169952, + [SMALL_STATE(3499)] = 169977, + [SMALL_STATE(3500)] = 170006, + [SMALL_STATE(3501)] = 170033, + [SMALL_STATE(3502)] = 170060, + [SMALL_STATE(3503)] = 170087, + [SMALL_STATE(3504)] = 170114, + [SMALL_STATE(3505)] = 170141, + [SMALL_STATE(3506)] = 170168, + [SMALL_STATE(3507)] = 170193, + [SMALL_STATE(3508)] = 170214, + [SMALL_STATE(3509)] = 170243, + [SMALL_STATE(3510)] = 170270, + [SMALL_STATE(3511)] = 170297, + [SMALL_STATE(3512)] = 170322, + [SMALL_STATE(3513)] = 170345, + [SMALL_STATE(3514)] = 170372, + [SMALL_STATE(3515)] = 170395, + [SMALL_STATE(3516)] = 170422, + [SMALL_STATE(3517)] = 170445, + [SMALL_STATE(3518)] = 170472, + [SMALL_STATE(3519)] = 170495, + [SMALL_STATE(3520)] = 170524, + [SMALL_STATE(3521)] = 170551, + [SMALL_STATE(3522)] = 170578, + [SMALL_STATE(3523)] = 170605, + [SMALL_STATE(3524)] = 170628, + [SMALL_STATE(3525)] = 170655, + [SMALL_STATE(3526)] = 170682, + [SMALL_STATE(3527)] = 170709, + [SMALL_STATE(3528)] = 170734, + [SMALL_STATE(3529)] = 170761, + [SMALL_STATE(3530)] = 170790, + [SMALL_STATE(3531)] = 170815, + [SMALL_STATE(3532)] = 170842, + [SMALL_STATE(3533)] = 170869, + [SMALL_STATE(3534)] = 170896, + [SMALL_STATE(3535)] = 170923, + [SMALL_STATE(3536)] = 170946, + [SMALL_STATE(3537)] = 170969, + [SMALL_STATE(3538)] = 170998, + [SMALL_STATE(3539)] = 171025, + [SMALL_STATE(3540)] = 171052, + [SMALL_STATE(3541)] = 171077, + [SMALL_STATE(3542)] = 171104, + [SMALL_STATE(3543)] = 171131, + [SMALL_STATE(3544)] = 171160, + [SMALL_STATE(3545)] = 171187, + [SMALL_STATE(3546)] = 171214, + [SMALL_STATE(3547)] = 171241, + [SMALL_STATE(3548)] = 171264, + [SMALL_STATE(3549)] = 171287, + [SMALL_STATE(3550)] = 171314, + [SMALL_STATE(3551)] = 171341, + [SMALL_STATE(3552)] = 171370, + [SMALL_STATE(3553)] = 171399, + [SMALL_STATE(3554)] = 171426, + [SMALL_STATE(3555)] = 171451, + [SMALL_STATE(3556)] = 171478, + [SMALL_STATE(3557)] = 171499, + [SMALL_STATE(3558)] = 171526, + [SMALL_STATE(3559)] = 171551, + [SMALL_STATE(3560)] = 171578, + [SMALL_STATE(3561)] = 171605, + [SMALL_STATE(3562)] = 171632, + [SMALL_STATE(3563)] = 171659, + [SMALL_STATE(3564)] = 171686, + [SMALL_STATE(3565)] = 171713, + [SMALL_STATE(3566)] = 171740, + [SMALL_STATE(3567)] = 171767, + [SMALL_STATE(3568)] = 171788, + [SMALL_STATE(3569)] = 171815, + [SMALL_STATE(3570)] = 171842, + [SMALL_STATE(3571)] = 171869, + [SMALL_STATE(3572)] = 171894, + [SMALL_STATE(3573)] = 171919, + [SMALL_STATE(3574)] = 171946, + [SMALL_STATE(3575)] = 171973, + [SMALL_STATE(3576)] = 171998, + [SMALL_STATE(3577)] = 172021, + [SMALL_STATE(3578)] = 172044, + [SMALL_STATE(3579)] = 172071, + [SMALL_STATE(3580)] = 172094, + [SMALL_STATE(3581)] = 172121, + [SMALL_STATE(3582)] = 172146, + [SMALL_STATE(3583)] = 172173, + [SMALL_STATE(3584)] = 172200, + [SMALL_STATE(3585)] = 172225, + [SMALL_STATE(3586)] = 172252, + [SMALL_STATE(3587)] = 172277, + [SMALL_STATE(3588)] = 172304, + [SMALL_STATE(3589)] = 172331, + [SMALL_STATE(3590)] = 172360, + [SMALL_STATE(3591)] = 172383, + [SMALL_STATE(3592)] = 172410, + [SMALL_STATE(3593)] = 172433, + [SMALL_STATE(3594)] = 172460, + [SMALL_STATE(3595)] = 172485, + [SMALL_STATE(3596)] = 172510, + [SMALL_STATE(3597)] = 172533, + [SMALL_STATE(3598)] = 172562, + [SMALL_STATE(3599)] = 172589, + [SMALL_STATE(3600)] = 172612, + [SMALL_STATE(3601)] = 172635, + [SMALL_STATE(3602)] = 172658, + [SMALL_STATE(3603)] = 172683, + [SMALL_STATE(3604)] = 172710, + [SMALL_STATE(3605)] = 172737, + [SMALL_STATE(3606)] = 172766, + [SMALL_STATE(3607)] = 172793, + [SMALL_STATE(3608)] = 172820, + [SMALL_STATE(3609)] = 172847, + [SMALL_STATE(3610)] = 172872, + [SMALL_STATE(3611)] = 172897, + [SMALL_STATE(3612)] = 172922, + [SMALL_STATE(3613)] = 172949, + [SMALL_STATE(3614)] = 172974, + [SMALL_STATE(3615)] = 173003, + [SMALL_STATE(3616)] = 173030, + [SMALL_STATE(3617)] = 173057, + [SMALL_STATE(3618)] = 173082, + [SMALL_STATE(3619)] = 173109, + [SMALL_STATE(3620)] = 173134, + [SMALL_STATE(3621)] = 173157, + [SMALL_STATE(3622)] = 173184, + [SMALL_STATE(3623)] = 173209, + [SMALL_STATE(3624)] = 173236, + [SMALL_STATE(3625)] = 173263, + [SMALL_STATE(3626)] = 173290, + [SMALL_STATE(3627)] = 173319, + [SMALL_STATE(3628)] = 173346, + [SMALL_STATE(3629)] = 173373, + [SMALL_STATE(3630)] = 173400, + [SMALL_STATE(3631)] = 173427, + [SMALL_STATE(3632)] = 173452, + [SMALL_STATE(3633)] = 173479, + [SMALL_STATE(3634)] = 173506, + [SMALL_STATE(3635)] = 173529, + [SMALL_STATE(3636)] = 173556, + [SMALL_STATE(3637)] = 173579, + [SMALL_STATE(3638)] = 173606, + [SMALL_STATE(3639)] = 173629, + [SMALL_STATE(3640)] = 173652, + [SMALL_STATE(3641)] = 173679, + [SMALL_STATE(3642)] = 173706, + [SMALL_STATE(3643)] = 173733, + [SMALL_STATE(3644)] = 173760, + [SMALL_STATE(3645)] = 173787, + [SMALL_STATE(3646)] = 173810, + [SMALL_STATE(3647)] = 173831, + [SMALL_STATE(3648)] = 173858, + [SMALL_STATE(3649)] = 173885, + [SMALL_STATE(3650)] = 173912, + [SMALL_STATE(3651)] = 173935, + [SMALL_STATE(3652)] = 173964, + [SMALL_STATE(3653)] = 173988, + [SMALL_STATE(3654)] = 174012, + [SMALL_STATE(3655)] = 174036, + [SMALL_STATE(3656)] = 174060, + [SMALL_STATE(3657)] = 174084, + [SMALL_STATE(3658)] = 174108, + [SMALL_STATE(3659)] = 174132, + [SMALL_STATE(3660)] = 174156, + [SMALL_STATE(3661)] = 174180, + [SMALL_STATE(3662)] = 174202, + [SMALL_STATE(3663)] = 174226, + [SMALL_STATE(3664)] = 174250, + [SMALL_STATE(3665)] = 174272, + [SMALL_STATE(3666)] = 174294, + [SMALL_STATE(3667)] = 174318, + [SMALL_STATE(3668)] = 174342, + [SMALL_STATE(3669)] = 174366, + [SMALL_STATE(3670)] = 174390, + [SMALL_STATE(3671)] = 174412, + [SMALL_STATE(3672)] = 174436, + [SMALL_STATE(3673)] = 174460, + [SMALL_STATE(3674)] = 174484, + [SMALL_STATE(3675)] = 174508, + [SMALL_STATE(3676)] = 174532, + [SMALL_STATE(3677)] = 174556, + [SMALL_STATE(3678)] = 174576, + [SMALL_STATE(3679)] = 174600, + [SMALL_STATE(3680)] = 174624, + [SMALL_STATE(3681)] = 174648, + [SMALL_STATE(3682)] = 174670, + [SMALL_STATE(3683)] = 174694, + [SMALL_STATE(3684)] = 174718, + [SMALL_STATE(3685)] = 174738, + [SMALL_STATE(3686)] = 174762, + [SMALL_STATE(3687)] = 174786, + [SMALL_STATE(3688)] = 174810, + [SMALL_STATE(3689)] = 174830, + [SMALL_STATE(3690)] = 174854, + [SMALL_STATE(3691)] = 174878, + [SMALL_STATE(3692)] = 174902, + [SMALL_STATE(3693)] = 174926, + [SMALL_STATE(3694)] = 174946, + [SMALL_STATE(3695)] = 174970, + [SMALL_STATE(3696)] = 174994, + [SMALL_STATE(3697)] = 175018, + [SMALL_STATE(3698)] = 175042, + [SMALL_STATE(3699)] = 175066, + [SMALL_STATE(3700)] = 175090, + [SMALL_STATE(3701)] = 175112, + [SMALL_STATE(3702)] = 175136, + [SMALL_STATE(3703)] = 175160, + [SMALL_STATE(3704)] = 175184, + [SMALL_STATE(3705)] = 175206, + [SMALL_STATE(3706)] = 175230, + [SMALL_STATE(3707)] = 175250, + [SMALL_STATE(3708)] = 175274, + [SMALL_STATE(3709)] = 175298, + [SMALL_STATE(3710)] = 175322, + [SMALL_STATE(3711)] = 175346, + [SMALL_STATE(3712)] = 175370, + [SMALL_STATE(3713)] = 175394, + [SMALL_STATE(3714)] = 175418, + [SMALL_STATE(3715)] = 175442, + [SMALL_STATE(3716)] = 175466, + [SMALL_STATE(3717)] = 175488, + [SMALL_STATE(3718)] = 175512, + [SMALL_STATE(3719)] = 175536, + [SMALL_STATE(3720)] = 175560, + [SMALL_STATE(3721)] = 175580, + [SMALL_STATE(3722)] = 175604, + [SMALL_STATE(3723)] = 175628, + [SMALL_STATE(3724)] = 175652, + [SMALL_STATE(3725)] = 175676, + [SMALL_STATE(3726)] = 175700, + [SMALL_STATE(3727)] = 175724, + [SMALL_STATE(3728)] = 175748, + [SMALL_STATE(3729)] = 175772, + [SMALL_STATE(3730)] = 175794, + [SMALL_STATE(3731)] = 175818, + [SMALL_STATE(3732)] = 175842, + [SMALL_STATE(3733)] = 175866, + [SMALL_STATE(3734)] = 175890, + [SMALL_STATE(3735)] = 175914, + [SMALL_STATE(3736)] = 175938, + [SMALL_STATE(3737)] = 175962, + [SMALL_STATE(3738)] = 175986, + [SMALL_STATE(3739)] = 176008, + [SMALL_STATE(3740)] = 176030, + [SMALL_STATE(3741)] = 176054, + [SMALL_STATE(3742)] = 176078, + [SMALL_STATE(3743)] = 176102, + [SMALL_STATE(3744)] = 176126, + [SMALL_STATE(3745)] = 176150, + [SMALL_STATE(3746)] = 176174, + [SMALL_STATE(3747)] = 176198, + [SMALL_STATE(3748)] = 176222, + [SMALL_STATE(3749)] = 176246, + [SMALL_STATE(3750)] = 176270, + [SMALL_STATE(3751)] = 176294, + [SMALL_STATE(3752)] = 176316, + [SMALL_STATE(3753)] = 176340, + [SMALL_STATE(3754)] = 176364, + [SMALL_STATE(3755)] = 176388, + [SMALL_STATE(3756)] = 176408, + [SMALL_STATE(3757)] = 176432, + [SMALL_STATE(3758)] = 176454, + [SMALL_STATE(3759)] = 176476, + [SMALL_STATE(3760)] = 176500, + [SMALL_STATE(3761)] = 176524, + [SMALL_STATE(3762)] = 176548, + [SMALL_STATE(3763)] = 176572, + [SMALL_STATE(3764)] = 176596, + [SMALL_STATE(3765)] = 176620, + [SMALL_STATE(3766)] = 176644, + [SMALL_STATE(3767)] = 176668, + [SMALL_STATE(3768)] = 176692, + [SMALL_STATE(3769)] = 176716, + [SMALL_STATE(3770)] = 176740, + [SMALL_STATE(3771)] = 176764, + [SMALL_STATE(3772)] = 176788, + [SMALL_STATE(3773)] = 176812, + [SMALL_STATE(3774)] = 176836, + [SMALL_STATE(3775)] = 176860, + [SMALL_STATE(3776)] = 176884, + [SMALL_STATE(3777)] = 176908, + [SMALL_STATE(3778)] = 176932, + [SMALL_STATE(3779)] = 176954, + [SMALL_STATE(3780)] = 176974, + [SMALL_STATE(3781)] = 176998, + [SMALL_STATE(3782)] = 177022, + [SMALL_STATE(3783)] = 177046, + [SMALL_STATE(3784)] = 177070, + [SMALL_STATE(3785)] = 177094, + [SMALL_STATE(3786)] = 177118, + [SMALL_STATE(3787)] = 177142, + [SMALL_STATE(3788)] = 177166, + [SMALL_STATE(3789)] = 177190, + [SMALL_STATE(3790)] = 177214, + [SMALL_STATE(3791)] = 177238, + [SMALL_STATE(3792)] = 177262, + [SMALL_STATE(3793)] = 177286, + [SMALL_STATE(3794)] = 177308, + [SMALL_STATE(3795)] = 177332, + [SMALL_STATE(3796)] = 177356, + [SMALL_STATE(3797)] = 177378, + [SMALL_STATE(3798)] = 177402, + [SMALL_STATE(3799)] = 177424, + [SMALL_STATE(3800)] = 177448, + [SMALL_STATE(3801)] = 177472, + [SMALL_STATE(3802)] = 177496, + [SMALL_STATE(3803)] = 177518, + [SMALL_STATE(3804)] = 177542, + [SMALL_STATE(3805)] = 177566, + [SMALL_STATE(3806)] = 177588, + [SMALL_STATE(3807)] = 177612, + [SMALL_STATE(3808)] = 177636, + [SMALL_STATE(3809)] = 177658, + [SMALL_STATE(3810)] = 177682, + [SMALL_STATE(3811)] = 177706, + [SMALL_STATE(3812)] = 177730, + [SMALL_STATE(3813)] = 177754, + [SMALL_STATE(3814)] = 177778, + [SMALL_STATE(3815)] = 177798, + [SMALL_STATE(3816)] = 177820, + [SMALL_STATE(3817)] = 177842, + [SMALL_STATE(3818)] = 177866, + [SMALL_STATE(3819)] = 177890, + [SMALL_STATE(3820)] = 177912, + [SMALL_STATE(3821)] = 177936, + [SMALL_STATE(3822)] = 177960, + [SMALL_STATE(3823)] = 177984, + [SMALL_STATE(3824)] = 178008, + [SMALL_STATE(3825)] = 178030, + [SMALL_STATE(3826)] = 178052, + [SMALL_STATE(3827)] = 178076, + [SMALL_STATE(3828)] = 178100, + [SMALL_STATE(3829)] = 178124, + [SMALL_STATE(3830)] = 178144, + [SMALL_STATE(3831)] = 178168, + [SMALL_STATE(3832)] = 178192, + [SMALL_STATE(3833)] = 178216, + [SMALL_STATE(3834)] = 178240, + [SMALL_STATE(3835)] = 178262, + [SMALL_STATE(3836)] = 178286, + [SMALL_STATE(3837)] = 178310, + [SMALL_STATE(3838)] = 178334, + [SMALL_STATE(3839)] = 178356, + [SMALL_STATE(3840)] = 178380, + [SMALL_STATE(3841)] = 178404, + [SMALL_STATE(3842)] = 178428, + [SMALL_STATE(3843)] = 178452, + [SMALL_STATE(3844)] = 178476, + [SMALL_STATE(3845)] = 178500, + [SMALL_STATE(3846)] = 178524, + [SMALL_STATE(3847)] = 178548, + [SMALL_STATE(3848)] = 178572, + [SMALL_STATE(3849)] = 178596, + [SMALL_STATE(3850)] = 178620, + [SMALL_STATE(3851)] = 178644, + [SMALL_STATE(3852)] = 178668, + [SMALL_STATE(3853)] = 178690, + [SMALL_STATE(3854)] = 178714, + [SMALL_STATE(3855)] = 178738, + [SMALL_STATE(3856)] = 178762, + [SMALL_STATE(3857)] = 178786, + [SMALL_STATE(3858)] = 178810, + [SMALL_STATE(3859)] = 178834, + [SMALL_STATE(3860)] = 178858, + [SMALL_STATE(3861)] = 178878, + [SMALL_STATE(3862)] = 178902, + [SMALL_STATE(3863)] = 178926, + [SMALL_STATE(3864)] = 178950, + [SMALL_STATE(3865)] = 178974, + [SMALL_STATE(3866)] = 178998, + [SMALL_STATE(3867)] = 179022, + [SMALL_STATE(3868)] = 179046, + [SMALL_STATE(3869)] = 179070, + [SMALL_STATE(3870)] = 179094, + [SMALL_STATE(3871)] = 179118, + [SMALL_STATE(3872)] = 179142, + [SMALL_STATE(3873)] = 179166, + [SMALL_STATE(3874)] = 179188, + [SMALL_STATE(3875)] = 179212, + [SMALL_STATE(3876)] = 179236, + [SMALL_STATE(3877)] = 179260, + [SMALL_STATE(3878)] = 179284, + [SMALL_STATE(3879)] = 179308, + [SMALL_STATE(3880)] = 179332, + [SMALL_STATE(3881)] = 179356, + [SMALL_STATE(3882)] = 179380, + [SMALL_STATE(3883)] = 179404, + [SMALL_STATE(3884)] = 179428, + [SMALL_STATE(3885)] = 179450, + [SMALL_STATE(3886)] = 179474, + [SMALL_STATE(3887)] = 179498, + [SMALL_STATE(3888)] = 179520, + [SMALL_STATE(3889)] = 179544, + [SMALL_STATE(3890)] = 179568, + [SMALL_STATE(3891)] = 179592, + [SMALL_STATE(3892)] = 179616, + [SMALL_STATE(3893)] = 179638, + [SMALL_STATE(3894)] = 179662, + [SMALL_STATE(3895)] = 179686, + [SMALL_STATE(3896)] = 179710, + [SMALL_STATE(3897)] = 179734, + [SMALL_STATE(3898)] = 179758, + [SMALL_STATE(3899)] = 179778, + [SMALL_STATE(3900)] = 179802, + [SMALL_STATE(3901)] = 179826, + [SMALL_STATE(3902)] = 179850, + [SMALL_STATE(3903)] = 179874, + [SMALL_STATE(3904)] = 179898, + [SMALL_STATE(3905)] = 179922, + [SMALL_STATE(3906)] = 179946, + [SMALL_STATE(3907)] = 179970, + [SMALL_STATE(3908)] = 179994, + [SMALL_STATE(3909)] = 180018, + [SMALL_STATE(3910)] = 180042, + [SMALL_STATE(3911)] = 180064, + [SMALL_STATE(3912)] = 180088, + [SMALL_STATE(3913)] = 180112, + [SMALL_STATE(3914)] = 180136, + [SMALL_STATE(3915)] = 180160, + [SMALL_STATE(3916)] = 180184, + [SMALL_STATE(3917)] = 180208, + [SMALL_STATE(3918)] = 180232, + [SMALL_STATE(3919)] = 180256, + [SMALL_STATE(3920)] = 180280, + [SMALL_STATE(3921)] = 180304, + [SMALL_STATE(3922)] = 180326, + [SMALL_STATE(3923)] = 180350, + [SMALL_STATE(3924)] = 180374, + [SMALL_STATE(3925)] = 180398, + [SMALL_STATE(3926)] = 180422, + [SMALL_STATE(3927)] = 180446, + [SMALL_STATE(3928)] = 180470, + [SMALL_STATE(3929)] = 180492, + [SMALL_STATE(3930)] = 180514, + [SMALL_STATE(3931)] = 180538, + [SMALL_STATE(3932)] = 180562, + [SMALL_STATE(3933)] = 180584, + [SMALL_STATE(3934)] = 180608, + [SMALL_STATE(3935)] = 180632, + [SMALL_STATE(3936)] = 180652, + [SMALL_STATE(3937)] = 180676, + [SMALL_STATE(3938)] = 180700, + [SMALL_STATE(3939)] = 180724, + [SMALL_STATE(3940)] = 180748, + [SMALL_STATE(3941)] = 180772, + [SMALL_STATE(3942)] = 180794, + [SMALL_STATE(3943)] = 180816, + [SMALL_STATE(3944)] = 180840, + [SMALL_STATE(3945)] = 180862, + [SMALL_STATE(3946)] = 180886, + [SMALL_STATE(3947)] = 180910, + [SMALL_STATE(3948)] = 180934, + [SMALL_STATE(3949)] = 180956, + [SMALL_STATE(3950)] = 180975, + [SMALL_STATE(3951)] = 180994, + [SMALL_STATE(3952)] = 181015, + [SMALL_STATE(3953)] = 181036, + [SMALL_STATE(3954)] = 181057, + [SMALL_STATE(3955)] = 181076, + [SMALL_STATE(3956)] = 181095, + [SMALL_STATE(3957)] = 181116, + [SMALL_STATE(3958)] = 181135, + [SMALL_STATE(3959)] = 181154, + [SMALL_STATE(3960)] = 181173, + [SMALL_STATE(3961)] = 181194, + [SMALL_STATE(3962)] = 181215, + [SMALL_STATE(3963)] = 181236, + [SMALL_STATE(3964)] = 181257, + [SMALL_STATE(3965)] = 181276, + [SMALL_STATE(3966)] = 181295, + [SMALL_STATE(3967)] = 181316, + [SMALL_STATE(3968)] = 181337, + [SMALL_STATE(3969)] = 181356, + [SMALL_STATE(3970)] = 181375, + [SMALL_STATE(3971)] = 181394, + [SMALL_STATE(3972)] = 181413, + [SMALL_STATE(3973)] = 181432, + [SMALL_STATE(3974)] = 181451, + [SMALL_STATE(3975)] = 181472, + [SMALL_STATE(3976)] = 181491, + [SMALL_STATE(3977)] = 181510, + [SMALL_STATE(3978)] = 181529, + [SMALL_STATE(3979)] = 181548, + [SMALL_STATE(3980)] = 181567, + [SMALL_STATE(3981)] = 181586, + [SMALL_STATE(3982)] = 181605, + [SMALL_STATE(3983)] = 181624, + [SMALL_STATE(3984)] = 181645, + [SMALL_STATE(3985)] = 181664, + [SMALL_STATE(3986)] = 181683, + [SMALL_STATE(3987)] = 181702, + [SMALL_STATE(3988)] = 181721, + [SMALL_STATE(3989)] = 181740, + [SMALL_STATE(3990)] = 181759, + [SMALL_STATE(3991)] = 181778, + [SMALL_STATE(3992)] = 181797, + [SMALL_STATE(3993)] = 181816, + [SMALL_STATE(3994)] = 181835, + [SMALL_STATE(3995)] = 181854, + [SMALL_STATE(3996)] = 181873, + [SMALL_STATE(3997)] = 181892, + [SMALL_STATE(3998)] = 181911, + [SMALL_STATE(3999)] = 181930, + [SMALL_STATE(4000)] = 181951, + [SMALL_STATE(4001)] = 181972, + [SMALL_STATE(4002)] = 181993, + [SMALL_STATE(4003)] = 182012, + [SMALL_STATE(4004)] = 182031, + [SMALL_STATE(4005)] = 182050, + [SMALL_STATE(4006)] = 182069, + [SMALL_STATE(4007)] = 182090, + [SMALL_STATE(4008)] = 182111, + [SMALL_STATE(4009)] = 182130, + [SMALL_STATE(4010)] = 182149, + [SMALL_STATE(4011)] = 182168, + [SMALL_STATE(4012)] = 182187, + [SMALL_STATE(4013)] = 182206, + [SMALL_STATE(4014)] = 182225, + [SMALL_STATE(4015)] = 182244, + [SMALL_STATE(4016)] = 182263, + [SMALL_STATE(4017)] = 182282, + [SMALL_STATE(4018)] = 182301, + [SMALL_STATE(4019)] = 182320, + [SMALL_STATE(4020)] = 182341, + [SMALL_STATE(4021)] = 182362, + [SMALL_STATE(4022)] = 182383, + [SMALL_STATE(4023)] = 182402, + [SMALL_STATE(4024)] = 182421, + [SMALL_STATE(4025)] = 182440, + [SMALL_STATE(4026)] = 182459, + [SMALL_STATE(4027)] = 182478, + [SMALL_STATE(4028)] = 182497, + [SMALL_STATE(4029)] = 182516, + [SMALL_STATE(4030)] = 182535, + [SMALL_STATE(4031)] = 182556, + [SMALL_STATE(4032)] = 182575, + [SMALL_STATE(4033)] = 182594, + [SMALL_STATE(4034)] = 182615, + [SMALL_STATE(4035)] = 182634, + [SMALL_STATE(4036)] = 182655, + [SMALL_STATE(4037)] = 182674, + [SMALL_STATE(4038)] = 182693, + [SMALL_STATE(4039)] = 182712, + [SMALL_STATE(4040)] = 182731, + [SMALL_STATE(4041)] = 182752, + [SMALL_STATE(4042)] = 182771, + [SMALL_STATE(4043)] = 182790, + [SMALL_STATE(4044)] = 182809, + [SMALL_STATE(4045)] = 182830, + [SMALL_STATE(4046)] = 182851, + [SMALL_STATE(4047)] = 182870, + [SMALL_STATE(4048)] = 182889, + [SMALL_STATE(4049)] = 182908, + [SMALL_STATE(4050)] = 182927, + [SMALL_STATE(4051)] = 182946, + [SMALL_STATE(4052)] = 182965, + [SMALL_STATE(4053)] = 182984, + [SMALL_STATE(4054)] = 183005, + [SMALL_STATE(4055)] = 183024, + [SMALL_STATE(4056)] = 183045, + [SMALL_STATE(4057)] = 183066, + [SMALL_STATE(4058)] = 183087, + [SMALL_STATE(4059)] = 183106, + [SMALL_STATE(4060)] = 183127, + [SMALL_STATE(4061)] = 183146, + [SMALL_STATE(4062)] = 183165, + [SMALL_STATE(4063)] = 183184, + [SMALL_STATE(4064)] = 183203, + [SMALL_STATE(4065)] = 183224, + [SMALL_STATE(4066)] = 183243, + [SMALL_STATE(4067)] = 183264, + [SMALL_STATE(4068)] = 183283, + [SMALL_STATE(4069)] = 183302, + [SMALL_STATE(4070)] = 183321, + [SMALL_STATE(4071)] = 183339, + [SMALL_STATE(4072)] = 183357, + [SMALL_STATE(4073)] = 183375, + [SMALL_STATE(4074)] = 183393, + [SMALL_STATE(4075)] = 183411, + [SMALL_STATE(4076)] = 183429, + [SMALL_STATE(4077)] = 183449, + [SMALL_STATE(4078)] = 183467, + [SMALL_STATE(4079)] = 183485, + [SMALL_STATE(4080)] = 183503, + [SMALL_STATE(4081)] = 183521, + [SMALL_STATE(4082)] = 183539, + [SMALL_STATE(4083)] = 183557, + [SMALL_STATE(4084)] = 183575, + [SMALL_STATE(4085)] = 183593, + [SMALL_STATE(4086)] = 183611, + [SMALL_STATE(4087)] = 183629, + [SMALL_STATE(4088)] = 183647, + [SMALL_STATE(4089)] = 183665, + [SMALL_STATE(4090)] = 183685, + [SMALL_STATE(4091)] = 183703, + [SMALL_STATE(4092)] = 183721, + [SMALL_STATE(4093)] = 183739, + [SMALL_STATE(4094)] = 183759, + [SMALL_STATE(4095)] = 183777, + [SMALL_STATE(4096)] = 183795, + [SMALL_STATE(4097)] = 183813, + [SMALL_STATE(4098)] = 183831, + [SMALL_STATE(4099)] = 183849, + [SMALL_STATE(4100)] = 183867, + [SMALL_STATE(4101)] = 183885, + [SMALL_STATE(4102)] = 183903, + [SMALL_STATE(4103)] = 183921, + [SMALL_STATE(4104)] = 183941, + [SMALL_STATE(4105)] = 183959, + [SMALL_STATE(4106)] = 183979, + [SMALL_STATE(4107)] = 183997, + [SMALL_STATE(4108)] = 184015, + [SMALL_STATE(4109)] = 184033, + [SMALL_STATE(4110)] = 184051, + [SMALL_STATE(4111)] = 184069, + [SMALL_STATE(4112)] = 184087, + [SMALL_STATE(4113)] = 184105, + [SMALL_STATE(4114)] = 184123, + [SMALL_STATE(4115)] = 184141, + [SMALL_STATE(4116)] = 184159, + [SMALL_STATE(4117)] = 184177, + [SMALL_STATE(4118)] = 184195, + [SMALL_STATE(4119)] = 184213, + [SMALL_STATE(4120)] = 184231, + [SMALL_STATE(4121)] = 184249, + [SMALL_STATE(4122)] = 184269, + [SMALL_STATE(4123)] = 184287, + [SMALL_STATE(4124)] = 184305, + [SMALL_STATE(4125)] = 184323, + [SMALL_STATE(4126)] = 184341, + [SMALL_STATE(4127)] = 184359, + [SMALL_STATE(4128)] = 184377, + [SMALL_STATE(4129)] = 184397, + [SMALL_STATE(4130)] = 184415, + [SMALL_STATE(4131)] = 184433, + [SMALL_STATE(4132)] = 184451, + [SMALL_STATE(4133)] = 184469, + [SMALL_STATE(4134)] = 184487, + [SMALL_STATE(4135)] = 184505, + [SMALL_STATE(4136)] = 184523, + [SMALL_STATE(4137)] = 184541, + [SMALL_STATE(4138)] = 184561, + [SMALL_STATE(4139)] = 184579, + [SMALL_STATE(4140)] = 184597, + [SMALL_STATE(4141)] = 184615, + [SMALL_STATE(4142)] = 184633, + [SMALL_STATE(4143)] = 184651, + [SMALL_STATE(4144)] = 184669, + [SMALL_STATE(4145)] = 184687, + [SMALL_STATE(4146)] = 184705, + [SMALL_STATE(4147)] = 184723, + [SMALL_STATE(4148)] = 184741, + [SMALL_STATE(4149)] = 184759, + [SMALL_STATE(4150)] = 184777, + [SMALL_STATE(4151)] = 184797, + [SMALL_STATE(4152)] = 184815, + [SMALL_STATE(4153)] = 184833, + [SMALL_STATE(4154)] = 184851, + [SMALL_STATE(4155)] = 184869, + [SMALL_STATE(4156)] = 184887, + [SMALL_STATE(4157)] = 184905, + [SMALL_STATE(4158)] = 184923, + [SMALL_STATE(4159)] = 184941, + [SMALL_STATE(4160)] = 184959, + [SMALL_STATE(4161)] = 184977, + [SMALL_STATE(4162)] = 184995, + [SMALL_STATE(4163)] = 185013, + [SMALL_STATE(4164)] = 185031, + [SMALL_STATE(4165)] = 185049, + [SMALL_STATE(4166)] = 185067, + [SMALL_STATE(4167)] = 185085, + [SMALL_STATE(4168)] = 185103, + [SMALL_STATE(4169)] = 185121, + [SMALL_STATE(4170)] = 185139, + [SMALL_STATE(4171)] = 185157, + [SMALL_STATE(4172)] = 185175, + [SMALL_STATE(4173)] = 185193, + [SMALL_STATE(4174)] = 185211, + [SMALL_STATE(4175)] = 185229, + [SMALL_STATE(4176)] = 185247, + [SMALL_STATE(4177)] = 185267, + [SMALL_STATE(4178)] = 185285, + [SMALL_STATE(4179)] = 185303, + [SMALL_STATE(4180)] = 185321, + [SMALL_STATE(4181)] = 185341, + [SMALL_STATE(4182)] = 185359, + [SMALL_STATE(4183)] = 185377, + [SMALL_STATE(4184)] = 185397, + [SMALL_STATE(4185)] = 185415, + [SMALL_STATE(4186)] = 185433, + [SMALL_STATE(4187)] = 185451, + [SMALL_STATE(4188)] = 185469, + [SMALL_STATE(4189)] = 185487, + [SMALL_STATE(4190)] = 185505, + [SMALL_STATE(4191)] = 185523, + [SMALL_STATE(4192)] = 185541, + [SMALL_STATE(4193)] = 185559, + [SMALL_STATE(4194)] = 185577, + [SMALL_STATE(4195)] = 185595, + [SMALL_STATE(4196)] = 185613, + [SMALL_STATE(4197)] = 185631, + [SMALL_STATE(4198)] = 185651, + [SMALL_STATE(4199)] = 185669, + [SMALL_STATE(4200)] = 185689, + [SMALL_STATE(4201)] = 185707, + [SMALL_STATE(4202)] = 185725, + [SMALL_STATE(4203)] = 185743, + [SMALL_STATE(4204)] = 185761, + [SMALL_STATE(4205)] = 185779, + [SMALL_STATE(4206)] = 185797, + [SMALL_STATE(4207)] = 185815, + [SMALL_STATE(4208)] = 185833, + [SMALL_STATE(4209)] = 185851, + [SMALL_STATE(4210)] = 185869, + [SMALL_STATE(4211)] = 185887, + [SMALL_STATE(4212)] = 185905, + [SMALL_STATE(4213)] = 185923, + [SMALL_STATE(4214)] = 185941, + [SMALL_STATE(4215)] = 185959, + [SMALL_STATE(4216)] = 185977, + [SMALL_STATE(4217)] = 185995, + [SMALL_STATE(4218)] = 186013, + [SMALL_STATE(4219)] = 186031, + [SMALL_STATE(4220)] = 186049, + [SMALL_STATE(4221)] = 186067, + [SMALL_STATE(4222)] = 186085, + [SMALL_STATE(4223)] = 186103, + [SMALL_STATE(4224)] = 186121, + [SMALL_STATE(4225)] = 186139, + [SMALL_STATE(4226)] = 186157, + [SMALL_STATE(4227)] = 186175, + [SMALL_STATE(4228)] = 186193, + [SMALL_STATE(4229)] = 186211, + [SMALL_STATE(4230)] = 186229, + [SMALL_STATE(4231)] = 186247, + [SMALL_STATE(4232)] = 186265, + [SMALL_STATE(4233)] = 186283, + [SMALL_STATE(4234)] = 186301, + [SMALL_STATE(4235)] = 186321, + [SMALL_STATE(4236)] = 186339, + [SMALL_STATE(4237)] = 186357, + [SMALL_STATE(4238)] = 186375, + [SMALL_STATE(4239)] = 186393, + [SMALL_STATE(4240)] = 186411, + [SMALL_STATE(4241)] = 186429, + [SMALL_STATE(4242)] = 186447, + [SMALL_STATE(4243)] = 186465, + [SMALL_STATE(4244)] = 186483, + [SMALL_STATE(4245)] = 186501, + [SMALL_STATE(4246)] = 186519, + [SMALL_STATE(4247)] = 186537, + [SMALL_STATE(4248)] = 186555, + [SMALL_STATE(4249)] = 186573, + [SMALL_STATE(4250)] = 186591, + [SMALL_STATE(4251)] = 186609, + [SMALL_STATE(4252)] = 186627, + [SMALL_STATE(4253)] = 186645, + [SMALL_STATE(4254)] = 186663, + [SMALL_STATE(4255)] = 186681, + [SMALL_STATE(4256)] = 186699, + [SMALL_STATE(4257)] = 186717, + [SMALL_STATE(4258)] = 186735, + [SMALL_STATE(4259)] = 186753, + [SMALL_STATE(4260)] = 186771, + [SMALL_STATE(4261)] = 186789, + [SMALL_STATE(4262)] = 186807, + [SMALL_STATE(4263)] = 186825, + [SMALL_STATE(4264)] = 186845, + [SMALL_STATE(4265)] = 186863, + [SMALL_STATE(4266)] = 186881, + [SMALL_STATE(4267)] = 186899, + [SMALL_STATE(4268)] = 186917, + [SMALL_STATE(4269)] = 186935, + [SMALL_STATE(4270)] = 186953, + [SMALL_STATE(4271)] = 186971, + [SMALL_STATE(4272)] = 186989, + [SMALL_STATE(4273)] = 187007, + [SMALL_STATE(4274)] = 187025, + [SMALL_STATE(4275)] = 187043, + [SMALL_STATE(4276)] = 187061, + [SMALL_STATE(4277)] = 187079, + [SMALL_STATE(4278)] = 187097, + [SMALL_STATE(4279)] = 187115, + [SMALL_STATE(4280)] = 187133, + [SMALL_STATE(4281)] = 187151, + [SMALL_STATE(4282)] = 187169, + [SMALL_STATE(4283)] = 187187, + [SMALL_STATE(4284)] = 187205, + [SMALL_STATE(4285)] = 187223, + [SMALL_STATE(4286)] = 187241, + [SMALL_STATE(4287)] = 187259, + [SMALL_STATE(4288)] = 187277, + [SMALL_STATE(4289)] = 187295, + [SMALL_STATE(4290)] = 187313, + [SMALL_STATE(4291)] = 187331, + [SMALL_STATE(4292)] = 187349, + [SMALL_STATE(4293)] = 187367, + [SMALL_STATE(4294)] = 187387, + [SMALL_STATE(4295)] = 187407, + [SMALL_STATE(4296)] = 187425, + [SMALL_STATE(4297)] = 187443, + [SMALL_STATE(4298)] = 187461, + [SMALL_STATE(4299)] = 187479, + [SMALL_STATE(4300)] = 187497, + [SMALL_STATE(4301)] = 187515, + [SMALL_STATE(4302)] = 187535, + [SMALL_STATE(4303)] = 187553, + [SMALL_STATE(4304)] = 187571, + [SMALL_STATE(4305)] = 187589, + [SMALL_STATE(4306)] = 187607, + [SMALL_STATE(4307)] = 187625, + [SMALL_STATE(4308)] = 187643, + [SMALL_STATE(4309)] = 187661, + [SMALL_STATE(4310)] = 187681, + [SMALL_STATE(4311)] = 187699, + [SMALL_STATE(4312)] = 187717, + [SMALL_STATE(4313)] = 187735, + [SMALL_STATE(4314)] = 187753, + [SMALL_STATE(4315)] = 187771, + [SMALL_STATE(4316)] = 187789, + [SMALL_STATE(4317)] = 187807, + [SMALL_STATE(4318)] = 187825, + [SMALL_STATE(4319)] = 187843, + [SMALL_STATE(4320)] = 187861, + [SMALL_STATE(4321)] = 187879, + [SMALL_STATE(4322)] = 187897, + [SMALL_STATE(4323)] = 187915, + [SMALL_STATE(4324)] = 187933, + [SMALL_STATE(4325)] = 187951, + [SMALL_STATE(4326)] = 187971, + [SMALL_STATE(4327)] = 187989, + [SMALL_STATE(4328)] = 188007, + [SMALL_STATE(4329)] = 188025, + [SMALL_STATE(4330)] = 188043, + [SMALL_STATE(4331)] = 188061, + [SMALL_STATE(4332)] = 188079, + [SMALL_STATE(4333)] = 188097, + [SMALL_STATE(4334)] = 188115, + [SMALL_STATE(4335)] = 188133, + [SMALL_STATE(4336)] = 188151, + [SMALL_STATE(4337)] = 188169, + [SMALL_STATE(4338)] = 188187, + [SMALL_STATE(4339)] = 188205, + [SMALL_STATE(4340)] = 188223, + [SMALL_STATE(4341)] = 188241, + [SMALL_STATE(4342)] = 188259, + [SMALL_STATE(4343)] = 188277, + [SMALL_STATE(4344)] = 188295, + [SMALL_STATE(4345)] = 188313, + [SMALL_STATE(4346)] = 188331, + [SMALL_STATE(4347)] = 188349, + [SMALL_STATE(4348)] = 188369, + [SMALL_STATE(4349)] = 188387, + [SMALL_STATE(4350)] = 188405, + [SMALL_STATE(4351)] = 188423, + [SMALL_STATE(4352)] = 188441, + [SMALL_STATE(4353)] = 188459, + [SMALL_STATE(4354)] = 188477, + [SMALL_STATE(4355)] = 188495, + [SMALL_STATE(4356)] = 188513, + [SMALL_STATE(4357)] = 188531, + [SMALL_STATE(4358)] = 188549, + [SMALL_STATE(4359)] = 188567, + [SMALL_STATE(4360)] = 188585, + [SMALL_STATE(4361)] = 188603, + [SMALL_STATE(4362)] = 188621, + [SMALL_STATE(4363)] = 188639, + [SMALL_STATE(4364)] = 188657, + [SMALL_STATE(4365)] = 188675, + [SMALL_STATE(4366)] = 188693, + [SMALL_STATE(4367)] = 188711, + [SMALL_STATE(4368)] = 188729, + [SMALL_STATE(4369)] = 188747, + [SMALL_STATE(4370)] = 188765, + [SMALL_STATE(4371)] = 188783, + [SMALL_STATE(4372)] = 188801, + [SMALL_STATE(4373)] = 188819, + [SMALL_STATE(4374)] = 188837, + [SMALL_STATE(4375)] = 188855, + [SMALL_STATE(4376)] = 188873, + [SMALL_STATE(4377)] = 188891, + [SMALL_STATE(4378)] = 188909, + [SMALL_STATE(4379)] = 188927, + [SMALL_STATE(4380)] = 188945, + [SMALL_STATE(4381)] = 188963, + [SMALL_STATE(4382)] = 188981, + [SMALL_STATE(4383)] = 188999, + [SMALL_STATE(4384)] = 189017, + [SMALL_STATE(4385)] = 189035, + [SMALL_STATE(4386)] = 189053, + [SMALL_STATE(4387)] = 189071, + [SMALL_STATE(4388)] = 189089, + [SMALL_STATE(4389)] = 189107, + [SMALL_STATE(4390)] = 189125, + [SMALL_STATE(4391)] = 189143, + [SMALL_STATE(4392)] = 189161, + [SMALL_STATE(4393)] = 189179, + [SMALL_STATE(4394)] = 189197, + [SMALL_STATE(4395)] = 189215, + [SMALL_STATE(4396)] = 189233, + [SMALL_STATE(4397)] = 189251, + [SMALL_STATE(4398)] = 189269, + [SMALL_STATE(4399)] = 189287, + [SMALL_STATE(4400)] = 189305, + [SMALL_STATE(4401)] = 189309, + [SMALL_STATE(4402)] = 189313, + [SMALL_STATE(4403)] = 189317, + [SMALL_STATE(4404)] = 189321, + [SMALL_STATE(4405)] = 189325, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -279015,3561 +243475,3235 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), [11] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2998), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(428), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2885), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3369), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2962), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4662), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(791), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3172), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(428), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(105), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(510), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4089), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(278), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4714), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3637), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4654), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1538), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4138), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3294), - [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4091), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4955), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4794), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(15), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4822), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3147), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(279), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(115), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(2555), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4080), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(692), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4857), - [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4654), - [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(2796), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(2826), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4126), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4127), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4711), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4727), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(751), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(1088), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(1091), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_declaration, 1, 0, 0), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_declaration, 1, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_declaration, 2, 0, 0), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_declaration, 2, 0, 0), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type, 2, 0, 0), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type, 2, 0, 0), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_identifier, 1, 0, 0), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_identifier, 1, 0, 0), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_identifier, 1, 0, 0), REDUCE(aux_sym_polymorphic_type_repeat1, 1, 0, 0), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_polymorphic_type_repeat1, 1, 0, 0), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 0), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 0), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_parameters, 3, 0, 0), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_parameters, 3, 0, 0), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_parameters, 4, 0, 0), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_parameters, 4, 0, 0), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_parameters, 5, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_parameters, 5, 0, 0), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_identifier, 1, 0, 0), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_identifier, 1, 0, 0), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), SHIFT(1372), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 0), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 0), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type, 1, 0, 0), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type, 1, 0, 0), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type, 3, 0, 0), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type, 3, 0, 0), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), - [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1, 0, 0), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1, 0, 0), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variant_identifier, 1, 0, 0), REDUCE(sym_module_identifier, 1, 0, 0), - [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variant_identifier, 1, 0, 0), REDUCE(sym_module_identifier, 1, 0, 0), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, -1, 0), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, -1, 0), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_type, 1, 0, 0), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_type, 1, 0, 0), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_type, 1, 0, 0), REDUCE(sym_function_type_parameters, 1, 0, 0), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_pack, 4, 0, 0), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_pack, 4, 0, 0), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4049), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 0), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 0), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_identifier, 1, 0, 0), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_identifier, 1, 0, 0), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier_path, 3, 0, 0), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier_path, 3, 0, 0), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 2, 0, 0), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 2, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit, 2, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit, 2, 0, 0), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_parameter_list, 2, 0, 0), REDUCE(sym_unit, 2, 0, 0), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__mutation_lvalue, 1, 0, 0), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutation_lvalue, 1, 0, 0), - [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__non_function_inline_type, 1, 0, 0), - [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__non_function_inline_type, 1, 0, 0), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 3, 0, 0), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 3, 0, 0), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 1, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, -1, 0), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, -1, 0), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 5, 0, 0), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 5, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_type, 3, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_type, 3, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_type, 5, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_type, 5, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_aliasing_non_function_inline_type, 3, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__as_aliasing_non_function_inline_type, 3, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type_spread, 2, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type_spread, 2, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), - [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4882), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_type, 4, 0, 0), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_type, 4, 0, 0), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_aliasing_type, 3, 0, 0), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_aliasing_type, 3, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 4, 0, 0), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 4, 0, 0), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_declaration, 3, 0, 0), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_declaration, 3, 0, 0), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, -1, 0), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, -1, 0), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_type, 3, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_type, 3, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 16), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 16), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 5, 0, 39), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 5, 0, 39), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 6, 0, 47), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 6, 0, 47), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 32), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 32), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_identifier, 1, 0, 0), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_expression, 3, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_expression, 3, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coercion_expression, 3, 0, 15), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coercion_expression, 3, 0, 15), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 1, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant, 1, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar, 1, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar, 1, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 1, 0, 0), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 1, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 4, 0, 0), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 4, 0, 0), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 14), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 14), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3808), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 9), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 9), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 18), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 18), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_identifier_path, 3, 0, 0), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_identifier_path, 3, 0, 0), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 11), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 11), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 30), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 30), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, 0, 26), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, 0, 26), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, 0, 40), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, 0, 40), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character, 2, 0, 0), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character, 2, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character, 3, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character, 3, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 17), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, 0, 17), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 19), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, 0, 19), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 28), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, 0, 28), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 29), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, 0, 29), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4047), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 15), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 15), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutation_expression, 3, 0, 0), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutation_expression, 3, 0, 0), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 38), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 38), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 3), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 3), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_expression, 2, 0, 0), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_expression, 2, 0, 0), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 0), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coercion_expression, 6, 0, 42), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coercion_expression, 6, 0, 42), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 0), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 0), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_identifier, 2, 0, 0), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_identifier, 2, 0, 0), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_identifier, 2, 0, 6), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_identifier, 2, 0, 6), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 7), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 7), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 2, 0, 0), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant, 2, 0, 0), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar, 2, 0, 0), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar, 2, 0, 0), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict, 3, 0, 0), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict, 3, 0, 0), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 3, 0, 0), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 3, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_identifier, 3, 0, 13), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_identifier, 3, 0, 13), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 2, 0, 0), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 2, 0, 0), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_arguments, 2, 0, 0), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_arguments, 2, 0, 0), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_variant_identifier, 3, 0, 0), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_variant_identifier, 3, 0, 0), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 3, 0, 0), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 3, 0, 0), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4, 0, 0), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict, 4, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict, 4, 0, 0), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 4, 0, 0), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 4, 0, 0), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 3, 0, 0), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 3, 0, 0), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_arguments, 3, 0, 0), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_arguments, 3, 0, 0), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, 0, 0), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, 0, 0), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict, 5, 0, 0), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict, 5, 0, 0), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 5, 0, 0), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 5, 0, 0), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 5, 0, 0), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 5, 0, 0), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5, 0, 0), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5, 0, 0), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5, 0, 0), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5, 0, 0), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, 0, 0), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 5, 0, 0), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 5, 0, 0), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 5, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 5, 0, 0), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 4, 0, 0), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 4, 0, 0), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_arguments, 4, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_arguments, 4, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extension_expression_payload, 3, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extension_expression_payload, 3, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, 0, 0), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, 0, 0), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict, 6, 0, 0), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict, 6, 0, 0), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 6, 0, 0), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 6, 0, 0), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 6, 0, 0), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 6, 0, 0), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6, 0, 0), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6, 0, 0), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6, 0, 0), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6, 0, 0), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 6, 0, 0), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 6, 0, 0), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 5, 0, 0), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 5, 0, 0), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_arguments, 5, 0, 0), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_arguments, 5, 0, 0), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 7, 0, 0), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 7, 0, 0), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 7, 0, 0), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 7, 0, 0), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 6, 0, 0), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 6, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_arguments, 6, 0, 0), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_arguments, 6, 0, 0), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 7, 0, 0), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 7, 0, 0), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_element, 1, 0, 0), - [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_element, 1, 0, 0), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_expression, 2, 0, 0), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_expression, 2, 0, 0), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_element, 2, 0, 0), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_identifier, 1, 0, 0), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), SHIFT(1352), - [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(1091), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_identifier, 1, 0, 0), REDUCE(aux_sym_polymorphic_type_repeat1, 1, 0, 0), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_polymorphic_type_repeat1, 1, 0, 0), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_more_statements, 2, 0, 0), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3876), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_more_statements, 3, 0, 0), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4732), - [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(3177), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__record_field_name, 1, 0, 2), SHIFT(952), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__record_field_name, 1, 0, 2), SHIFT(2912), - [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__pattern, 1, -1, 0), - [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__pattern, 1, -1, 0), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, -1, 0), - [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, -1, 0), SHIFT(924), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variant_pattern, 1, 0, 0), REDUCE(sym_variant, 1, 0, 0), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variant_pattern, 1, 0, 0), REDUCE(sym_variant, 1, 0, 0), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_pattern, 1, 0, 0), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_pattern, 1, 0, 0), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3800), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), SHIFT(1384), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), SHIFT(1374), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4007), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4053), - [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_polyvar_pattern, 1, 0, 0), REDUCE(sym_polyvar, 1, 0, 0), - [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_polyvar_pattern, 1, 0, 0), REDUCE(sym_polyvar, 1, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_pattern, 1, 0, 0), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_pattern, 1, 0, 0), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, -1, 0), SHIFT(936), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4921), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__record_field_name, 1, 0, 2), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_field_name, 1, 0, 2), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), SHIFT(1368), - [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3897), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__literal_pattern, 1, 0, 0), - [2675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__literal_pattern, 1, 0, 0), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3971), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3988), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3915), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), REDUCE(sym_list_pattern, 3, 0, 0), - [2721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), REDUCE(sym_list_pattern, 3, 0, 0), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, 0, 0), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_dict, 3, 0, 0), REDUCE(sym_dict_pattern, 3, 0, 0), - [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_dict, 3, 0, 0), REDUCE(sym_dict_pattern, 3, 0, 0), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_spread_pattern, 2, 0, 0), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_pattern, 2, 0, 0), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3920), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__variant_pattern_parameters, 2, 0, 0), REDUCE(sym_variant_arguments, 2, 0, 0), - [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__variant_pattern_parameters, 2, 0, 0), REDUCE(sym_variant_arguments, 2, 0, 0), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variant_pattern_parameters, 2, 0, 0), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variant_pattern_parameters, 2, 0, 0), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4969), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_formal_parameters, 2, 0, 0), REDUCE(sym_unit, 2, 0, 0), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3885), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2839] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_parameter, 1, 0, 0), REDUCE(sym__pattern, 1, -1, 0), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3860), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3866), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3878), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3822), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3882), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uncurry, 1, 0, 0), - [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uncurry, 1, 0, 0), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3997), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [3179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3951), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [3191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4022), - [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), REDUCE(sym_unit, 2, 0, 0), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3841), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3879), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 4, 0, 46), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 3, 0, 25), - [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 3, 0, 25), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 5, 0, 51), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 4, 0, 37), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 4, 0, 37), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_argument, 1, 0, 0), - [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3844), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_arguments_repeat1, 2, 0, 0), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_parameter_default_value, 2, 0, 0), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__labeled_parameter_default_value, 2, 0, 0), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2, 0, 0), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_element, 1, 0, 0), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_entry, 3, 0, 0), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 4, 0, 0), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 3, 0, 0), - [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_field, 3, 0, 2), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 0), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_child, 1, 0, 0), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__jsx_child, 1, 0, 0), - [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_child, 1, 0, 0), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 11), - [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 11), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 1, 0, 0), - [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 1, 0, 0), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 26), - [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 26), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [4108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4712), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), - [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), SHIFT_REPEAT(31), - [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), SHIFT_REPEAT(3001), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), - [4165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), SHIFT_REPEAT(3505), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), - [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), SHIFT_REPEAT(2950), - [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), SHIFT_REPEAT(2950), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_attribute_value, 1, 0, 0), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_attribute_value, 1, 0, 0), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_pattern, 2, 0, 0), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_pattern, 2, 0, 0), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_type, 1, 0, 0), REDUCE(sym_type_binding, 4, 0, 4), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_type, 1, 0, 0), SHIFT(1268), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [4324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_type, 1, 0, 0), SHIFT(1388), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3969), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [4334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3862), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_type, 1, 0, 0), REDUCE(sym_type_binding, 3, 0, 4), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 1, 0, 4), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_aliasing, 2, 0, 0), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_aliasing, 2, 0, 0), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3, 0, 0), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3, 0, 0), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 4, 0, 0), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variant_pattern_parameters, 5, 0, 0), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variant_pattern_parameters, 5, 0, 0), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 0), - [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_pattern, 5, 0, 0), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 5, 0, 0), - [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 5, 0, 0), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 5, 0, 0), - [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 5, 0, 0), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 6, 0, 0), - [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_pattern, 6, 0, 0), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 8, 0, 0), - [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 8, 0, 0), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_expression, 1, 0, 0), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 4, 0, 0), - [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 4, 0, 0), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, 0, 0), - [4448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 6, 0, 0), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4004), - [4459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4042), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variant_pattern_parameters, 4, 0, 0), - [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variant_pattern_parameters, 4, 0, 0), - [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), - [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 4, 0, 0), - [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 4, 0, 0), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 2, -1, 0), - [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 2, -1, 0), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3, 0, 0), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, 0, 0), - [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, 0, 0), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, -1, 0), - [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 3, -1, 0), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_type_pattern, 3, 0, 0), - [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_type_pattern, 3, 0, 0), - [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, 0, 0), - [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 6, 0, 0), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 6, 0, 0), - [4506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 6, 0, 0), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), - [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_pattern, 2, 0, 0), - [4514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_pattern, 2, 0, 0), - [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variant_pattern_parameters, 3, 0, 0), - [4518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variant_pattern_parameters, 3, 0, 0), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_aliasing, 3, 0, 0), - [4522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_aliasing, 3, 0, 0), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_pattern, 2, 0, 0), - [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_pattern, 2, 0, 0), - [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 7, 0, 0), - [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 7, 0, 0), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 7, 0, 0), - [4534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 7, 0, 0), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_module, 4, 0, 0), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, 0, 0), - [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, 0, 0), - [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_pattern, 3, 0, 0), - [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_pattern, 3, 0, 0), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, -1, 0), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_module_expression, 4, 0, 0), - [4566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_module_expression, 4, 0, 0), - [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_arguments, 3, 0, 0), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_unpack, 5, 0, 0), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_arguments, 2, 0, 0), - [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_arguments, 2, 0, 0), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_identifier_path, 3, 0, 0), - [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_identifier_path, 3, 0, 0), - [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_unpack, 5, 0, 0), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_arguments, 4, 0, 0), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_arguments, 4, 0, 0), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_unpack, 4, 0, 0), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_unpack, 4, 0, 0), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_module_expression, 3, 0, 0), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_arguments, 5, 0, 0), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 2, 0, 4), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [4612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3994), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_primary_expression, 1, 0, 0), - [4630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_primary_expression, 1, 0, 0), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [4638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_arguments, 5, 0, 0), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_use, 2, 0, 0), - [4642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_use, 2, 0, 0), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_module_expression, 3, 0, 0), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_arguments, 3, 0, 0), - [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, 0, 49), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [4674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string_content, 1, 0, 0), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3949), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 24), - [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 2, -1, 0), SHIFT(924), - [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3615), - [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_template_string_content_repeat1, 2, 0, 0), - [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3615), - [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3642), - [4697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(404), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_attribute_name, 1, 0, 2), - [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_attribute_name, 1, 0, 2), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 7, 0, 53), - [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, 0, 44), - [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3873), - [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_jsx_identifier, 3, 0, 0), - [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_jsx_identifier, 3, 0, 0), - [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 2, 0, 0), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 2, 0, 0), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3912), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 36), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_element_name, 1, 0, 0), - [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_element_name, 1, 0, 0), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_identifier, 1, 0, 5), - [4793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_identifier, 1, 0, 5), - [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_type, 4, 0, 0), - [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_of, 4, 0, 0), - [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, 0, 4), - [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 4, 0, 0), - [4803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 4, 0, 0), - [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 8, 0, 53), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_pattern, 2, 0, 0), - [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_exception_pattern, 2, 0, 0), SHIFT(919), - [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3853), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 4), - [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2, 0, 0), - [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_constraint, 2, 0, 0), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_type_constraint_with, 3, 0, 0), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 24), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 4), - [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), - [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, 0, 36), - [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_constraint, 5, 0, 0), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, 0, 44), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 7, 0, 49), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, -1, 0), SHIFT(1009), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 5, 0, 0), - [4854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 5, 0, 0), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4, 0, 0), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 2, 0, 0), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 12), - [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 12), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [4868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 2, 0, 0), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), SHIFT_REPEAT(4069), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_type_constraint_with, 2, 0, 0), - [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor, 3, 0, 20), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor, 4, 0, 33), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2, 0, 0), SHIFT_REPEAT(1268), - [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 3, 0, 22), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_attribute, 1, 0, 0), - [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_attribute, 1, 0, 0), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 0), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_polymorphic_type_repeat1, 2, 0, 0), - [4922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_polymorphic_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3436), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 4, 0, 35), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 1, 0, 4), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_substitution, 2, 0, 0), - [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 2, 0, 0), - [4945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), SHIFT_REPEAT(4179), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3881), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_functor_parameter, 1, 0, 0), REDUCE(sym_module_primary_expression, 1, 0, 0), - [4970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_module_primary_expression, 1, 0, 0), SHIFT(2964), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_parameter, 1, 0, 0), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 3, 0, 23), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 5, 0, 43), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 6, 0, 48), - [4985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 2, -1, 0), SHIFT(1009), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_substitution, 3, 0, 0), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, -1, 0), SHIFT(949), - [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 0), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3936), - [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 1, 0, 0), - [5020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), SHIFT_REPEAT(4118), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_template_string_content_repeat1, 1, 0, 0), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_content_repeat1, 1, 0, 0), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 0), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_element_pattern, 1, 0, 0), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 0), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3, 0, 0), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 0), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2, 0, 0), - [5083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2978), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [5088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, -1, 0), REDUCE(sym_parameter, 2, 0, 0), - [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 2, -1, 0), SHIFT(936), - [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), SHIFT_REPEAT(4081), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4044), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 0), - [5106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 2, -1, 0), SHIFT(949), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3803), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 2, 0, 0), - [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 2, 0, 0), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 3, 0, 0), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 3, 0, 0), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 0), - [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_declaration_repeat1, 2, 0, 0), - [5130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [5135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extensible_type, 1, 0, 0), - [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 2, 0, 0), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 0), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 2, 0, 10), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 0), - [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_declaration_repeat1, 2, 0, 0), - [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(879), - [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 2, 0, 0), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 0), - [5176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), REDUCE(sym__pattern, 1, -1, 0), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [5181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_exception_pattern, 2, 0, 0), SHIFT(1024), - [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 3, 0, 0), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3752), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_item_pattern, 1, 0, 0), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), SHIFT(3212), - [5258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), REDUCE(sym_tuple_item_pattern, 1, 0, 0), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [5267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__module_structure, 1, 0, 0), SHIFT(3276), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variant_pattern_parameter, 1, 0, 0), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_declaration, 5, 0, 0), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5, 0, 0), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [5328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3818), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4, 0, 0), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_spread_pattern, 1, 0, 0), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 0), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_structure, 1, 0, 0), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 4, 0, 0), - [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_exception_pattern, 2, 0, 0), SHIFT(988), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_exception_pattern, 2, 0, 0), SHIFT(1018), - [5443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 2, 0, 31), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_expression_repeat1, 1, 0, 0), - [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_expression_repeat1, 2, 0, 0), - [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type_pattern, 2, 0, 0), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 4, 0, 34), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(3588), - [5525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1139), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_more_statements, 1, 0, 0), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [5608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1740), - [5611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1147), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__switch_body, 2, 0, 0), SHIFT(1569), - [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_body, 2, 0, 0), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [5629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1621), - [5632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1170), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_match, 4, -1, 50), - [5643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__switch_body, 1, 0, 0), SHIFT(1569), - [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_body, 1, 0, 0), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_match, 5, -1, 54), - [5670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__record_field_name, 1, 0, 2), SHIFT(3194), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__record_field_name, 1, 0, 2), SHIFT(2917), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [5700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [5702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4391), - [5705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1206), - [5708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1209), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(819), - [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1161), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_declaration, 1, 0, 0), - [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [5737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_annotation, 2, 0, 0), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [5756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), SHIFT_REPEAT(4130), - [5759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_character_repeat1, 2, 0, 0), SHIFT_REPEAT(4224), - [5762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_character_repeat1, 2, 0, 0), - [5764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_character_repeat1, 2, 0, 0), SHIFT_REPEAT(4224), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 3, 0, 21), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__functor_argument, 1, 0, 0), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 4, 0, 0), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [5843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1075), - [5846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1216), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 0), - [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(122), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variant_pattern_parameters_repeat1, 2, 0, 0), - [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variant_pattern_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [5879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [5888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), - [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [5895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_character_repeat1, 1, 0, 0), - [5904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_character_repeat1, 1, 0, 0), - [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_spread_pattern, 2, 0, 0), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_type_repeat1, 2, 0, 0), - [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3236), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type_field, 3, 0, 2), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), - [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_parameter_list_repeat1, 2, 0, 0), - [5948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1098), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameter, 3, 0, 0), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_polyvar_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), - [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_polyvar_type_repeat1, 2, 0, 0), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [5992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2934), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spread, 2, 0, 0), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(4067), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameter, 2, 0, 0), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 4, 0, 0), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(863), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, 0, 0), - [6114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extension_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4654), - [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extension_expression_repeat1, 2, 0, 0), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 3, 0, 31), - [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_pun_field, 1, 0, 0), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [6255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(450), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 5, 0, 52), - [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_repeat1, 2, 0, 0), - [6292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_repeat1, 2, 0, 0), SHIFT_REPEAT(4505), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [6297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 5, 0, 0), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_functor_parameters_repeat1, 2, 0, 0), - [6358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_functor_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4523), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_functor_arguments_repeat1, 2, 0, 0), - [6389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_functor_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(2925), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 6, 0, 55), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_repeat1, 2, 0, 0), - [6474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_repeat1, 2, 0, 0), SHIFT_REPEAT(2871), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_argument, 2, 0, 0), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_element_pattern, 2, 0, 0), - [6489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definition_signature, 1, 0, 1), - [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [6504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4314), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern_entry, 3, 0, 0), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 3, 0, 0), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_parameters, 3, 0, 0), - [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 4, 0, 21), - [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_parameter, 2, 0, 0), - [6547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_field, 4, 0, 45), - [6555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variant_pattern_parameter, 2, 0, 0), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [6565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_parameters, 4, 0, 0), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type_annotation, 2, 0, 0), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_element, 1, 0, 0), - [6581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_parameters, 3, 0, 0), - [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 5, 0, 41), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_parameters, 2, 0, 0), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_single_field, 1, 0, 0), - [6597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__record_element, 1, 0, 0), SHIFT(4984), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_item_pattern, 2, 0, 0), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_type_member, 1, 0, 0), - [6620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_field, 2, 0, 2), - [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 5, 0, 34), - [6624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__record_type_member, 1, 0, 0), REDUCE(sym__object_type_member, 1, 0, 0), - [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_field, 3, 0, 45), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_arguments_repeat1, 3, 0, 0), - [6635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_field, 1, 0, 0), - [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_parameters, 4, 0, 0), - [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_field, 3, 0, 2), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_type_member, 1, 0, 0), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [6649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_parameters, 5, 0, 0), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_single_pun_field, 2, 0, 0), - [6663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__record_pun_field, 2, 0, 0), SHIFT(4717), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_declaration, 2, 0, 0), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [6672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_pun_field, 2, 0, 0), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [6676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 0), SHIFT(3213), - [6679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 0), REDUCE(sym_tuple_item_pattern, 2, 0, 0), - [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extension_expression_repeat1, 1, 0, 0), - [6684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_parameters, 5, 0, 0), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 0), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [6720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_partial_application_spread, 1, 0, 0), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [6734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_parameter_list, 4, 0, 0), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_parameter_list, 5, 0, 0), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [6770] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [6782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_single_pun_field, 3, 0, 0), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__module_structure, 2, 0, 0), SHIFT(3300), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_parameter_list, 3, 0, 0), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [7045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definition_signature, 2, 0, 8), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_single_field, 2, 0, 0), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_structure, 2, 0, 0), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [7357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_arguments, 4, 0, 0), - [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_arguments, 3, 0, 0), - [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_arguments, 2, 0, 0), - [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_arguments, 5, 0, 0), - [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 1, 0, 0), - [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2626), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(323), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2505), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(13), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2881), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2565), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2776), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(323), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(108), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3603), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4301), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3286), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(255), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1468), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), + [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2847), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4388), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(2398), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(18), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4339), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(2397), + [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(259), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(92), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(515), + [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(647), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(281), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4293), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), + [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(2450), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1138), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), + [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(2900), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3552), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4312), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4324), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(1053), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(714), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(1052), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_declaration, 1, 0, 0), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_declaration, 1, 0, 0), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_declaration, 2, 0, 0), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_declaration, 2, 0, 0), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 0), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 0), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_identifier, 1, 0, 0), REDUCE(aux_sym_polymorphic_type_repeat1, 1, 0, 0), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_identifier, 1, 0, 0), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_identifier, 1, 0, 0), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_polymorphic_type_repeat1, 1, 0, 0), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_identifier, 1, 0, 0), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_identifier, 1, 0, 0), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type, 2, 0, 0), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type, 2, 0, 0), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type, 3, 0, 0), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type, 3, 0, 0), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 0), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 0), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_parameters, 3, 0, 0), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_parameters, 3, 0, 0), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_parameters, 4, 0, 0), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_parameters, 4, 0, 0), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_parameters, 5, 0, 0), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_parameters, 5, 0, 0), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1, 0, 0), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1, 0, 0), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), SHIFT(1310), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type, 1, 0, 0), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type, 1, 0, 0), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variant_identifier, 1, 0, 0), REDUCE(sym_module_identifier, 1, 0, 0), + [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variant_identifier, 1, 0, 0), REDUCE(sym_module_identifier, 1, 0, 0), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_type, 3, 0, 0), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_type, 3, 0, 0), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3316), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__non_function_inline_type, 1, 0, 0), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__non_function_inline_type, 1, 0, 0), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 4, 0, 0), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 4, 0, 0), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, -1, 0), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, -1, 0), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_type, 4, 0, 0), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_type, 4, 0, 0), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_pack, 4, 0, 0), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_pack, 4, 0, 0), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier_path, 3, 0, 0), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier_path, 3, 0, 0), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 5, 0, 0), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 5, 0, 0), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type_spread, 2, 0, 0), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type_spread, 2, 0, 0), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, -1, 0), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, -1, 0), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_type, 5, 0, 0), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_type, 5, 0, 0), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), + [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4070), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_aliasing_type, 3, 0, 0), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_aliasing_type, 3, 0, 0), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_declaration, 3, 0, 0), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_declaration, 3, 0, 0), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_type, 3, 0, 0), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_type, 3, 0, 0), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__as_aliasing_non_function_inline_type, 3, 0, 0), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_aliasing_non_function_inline_type, 3, 0, 0), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_type, 1, 0, 0), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_type, 1, 0, 0), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 1, 0, 0), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 2, 0, 0), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 2, 0, 0), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit, 2, 0, 0), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit, 2, 0, 0), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_parameter_list, 2, 0, 0), REDUCE(sym_unit, 2, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 0), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__mutation_lvalue, 1, 0, 0), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutation_lvalue, 1, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 3, 0, 0), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 3, 0, 0), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 0), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 0), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_identifier, 1, 0, 0), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_identifier, 1, 0, 0), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, -1, 0), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, -1, 0), + [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_type, 1, 0, 0), REDUCE(sym_function_type_parameters, 1, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 16), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 16), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 32), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 32), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 5, 0, 39), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 5, 0, 39), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 6, 0, 47), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 6, 0, 47), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_identifier, 1, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 1, 0, 0), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 1, 0, 0), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_expression, 3, 0, 0), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_expression, 3, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar, 1, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar, 1, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coercion_expression, 3, 0, 15), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coercion_expression, 3, 0, 15), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 14), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 14), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant, 1, 0, 0), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 1, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3471), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 4, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 4, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_variant_identifier, 3, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_variant_identifier, 3, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_identifier, 2, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_identifier, 2, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_identifier, 2, 0, 6), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_identifier, 2, 0, 6), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 7), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 7), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant, 2, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 2, 0, 0), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar, 2, 0, 0), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar, 2, 0, 0), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict, 3, 0, 0), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict, 3, 0, 0), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 3, 0, 0), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 3, 0, 0), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_identifier, 3, 0, 13), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_identifier, 3, 0, 13), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 3), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 3), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 2, 0, 0), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 2, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_arguments, 2, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_arguments, 2, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 3, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 3, 0, 0), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4, 0, 0), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict, 4, 0, 0), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict, 4, 0, 0), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_expression, 2, 0, 0), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_expression, 2, 0, 0), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 4, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 4, 0, 0), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 3, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 3, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_arguments, 3, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_arguments, 3, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict, 5, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict, 5, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 5, 0, 0), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 5, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 5, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 5, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5, 0, 0), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 5, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 5, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 5, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 5, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 4, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 4, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_arguments, 4, 0, 0), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_arguments, 4, 0, 0), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extension_expression_payload, 3, 0, 0), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extension_expression_payload, 3, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict, 6, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict, 6, 0, 0), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 6, 0, 0), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 6, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 6, 0, 0), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 6, 0, 0), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6, 0, 0), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6, 0, 0), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 6, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 6, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 5, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 5, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_arguments, 5, 0, 0), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_arguments, 5, 0, 0), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 7, 0, 0), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 7, 0, 0), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 7, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 7, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 6, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 6, 0, 0), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments, 7, 0, 0), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments, 7, 0, 0), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_element, 1, 0, 0), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_element, 1, 0, 0), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_expression, 2, 0, 0), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_expression, 2, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 15), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 15), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 9), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 9), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, 0, 17), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 17), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 18), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 18), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_identifier_path, 3, 0, 0), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_identifier_path, 3, 0, 0), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, 0, 19), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 19), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 11), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 11), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, 0, 28), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 28), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, 0, 29), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 29), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 30), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 30), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, 0, 26), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, 0, 26), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, 0, 40), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, 0, 40), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character, 2, 0, 0), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character, 2, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutation_expression, 3, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutation_expression, 3, 0, 0), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 38), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 38), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coercion_expression, 6, 0, 42), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coercion_expression, 6, 0, 42), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character, 3, 0, 0), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character, 3, 0, 0), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 0), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 0), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_arguments, 6, 0, 0), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_arguments, 6, 0, 0), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_element, 2, 0, 0), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4348), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_identifier, 1, 0, 0), REDUCE(aux_sym_polymorphic_type_repeat1, 1, 0, 0), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_polymorphic_type_repeat1, 1, 0, 0), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_identifier, 1, 0, 0), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), SHIFT(1296), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3332), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(1053), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_more_statements, 3, 0, 0), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_more_statements, 2, 0, 0), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_polyvar_pattern, 1, 0, 0), REDUCE(sym_polyvar, 1, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_polyvar_pattern, 1, 0, 0), REDUCE(sym_polyvar, 1, 0, 0), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_pattern, 1, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_pattern, 1, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__pattern, 1, -1, 0), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, -1, 0), + [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, -1, 0), SHIFT(981), + [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), SHIFT(1325), + [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__pattern, 1, -1, 0), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(2818), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__record_field_name, 1, 0, 2), SHIFT(872), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__record_field_name, 1, 0, 2), SHIFT(2538), + [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), SHIFT(1271), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variant_pattern, 1, 0, 0), REDUCE(sym_variant, 1, 0, 0), + [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variant_pattern, 1, 0, 0), REDUCE(sym_variant, 1, 0, 0), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_pattern, 1, 0, 0), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_pattern, 1, 0, 0), + [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3321), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, -1, 0), SHIFT(879), + [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4302), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3429), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__non_function_inline_type, 1, 0, 0), SHIFT(1284), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3378), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__record_field_name, 1, 0, 2), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_field_name, 1, 0, 2), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3322), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__literal_pattern, 1, 0, 0), + [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__literal_pattern, 1, 0, 0), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3442), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4100), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3371), + [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), REDUCE(sym_list_pattern, 3, 0, 0), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), REDUCE(sym_list_pattern, 3, 0, 0), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, 0, 0), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_dict, 3, 0, 0), REDUCE(sym_dict_pattern, 3, 0, 0), + [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_dict, 3, 0, 0), REDUCE(sym_dict_pattern, 3, 0, 0), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_spread_pattern, 2, 0, 0), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_pattern, 2, 0, 0), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uncurry, 1, 0, 0), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uncurry, 1, 0, 0), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__variant_pattern_parameters, 2, 0, 0), REDUCE(sym_variant_arguments, 2, 0, 0), + [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__variant_pattern_parameters, 2, 0, 0), REDUCE(sym_variant_arguments, 2, 0, 0), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variant_pattern_parameters, 2, 0, 0), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variant_pattern_parameters, 2, 0, 0), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2602] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_parameter, 1, 0, 0), REDUCE(sym__pattern, 1, -1, 0), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_formal_parameters, 2, 0, 0), REDUCE(sym_unit, 2, 0, 0), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3427), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3432), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), REDUCE(sym_unit, 2, 0, 0), + [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3357), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 3, 0, 25), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 3, 0, 25), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 5, 0, 51), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 4, 0, 46), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 4, 0, 37), + [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 4, 0, 37), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_argument, 1, 0, 0), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_arguments_repeat1, 2, 0, 0), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_parameter_default_value, 2, 0, 0), + [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__labeled_parameter_default_value, 2, 0, 0), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_element, 1, 0, 0), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2, 0, 0), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_entry, 3, 0, 0), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 4, 0, 0), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 3, 0, 0), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_field, 3, 0, 2), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_child, 1, 0, 0), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_child, 1, 0, 0), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__jsx_child, 1, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 0), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 11), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 11), + [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 26), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 26), + [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 1, 0, 0), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 1, 0, 0), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [3763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4240), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), SHIFT_REPEAT(2572), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), SHIFT_REPEAT(29), + [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), SHIFT_REPEAT(2622), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), SHIFT_REPEAT(3103), + [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), + [3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 27), SHIFT_REPEAT(2572), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_attribute_value, 1, 0, 0), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_attribute_value, 1, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_pattern, 2, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_pattern, 2, 0, 0), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_type, 1, 0, 0), REDUCE(sym_type_binding, 4, 0, 4), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_type, 1, 0, 0), SHIFT(1230), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 1, 0, 4), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_type, 1, 0, 0), SHIFT(1373), + [3959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_type, 1, 0, 0), REDUCE(sym_type_binding, 3, 0, 4), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_aliasing, 2, 0, 0), + [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_aliasing, 2, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 2, -1, 0), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 2, -1, 0), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 5, 0, 0), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 5, 0, 0), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_expression, 1, 0, 0), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variant_pattern_parameters, 4, 0, 0), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variant_pattern_parameters, 4, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 4, 0, 0), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 4, 0, 0), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_pattern, 2, 0, 0), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_pattern, 2, 0, 0), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, 0, 0), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_pattern, 2, 0, 0), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_pattern, 2, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_pattern, 5, 0, 0), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_aliasing, 3, 0, 0), + [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_aliasing, 3, 0, 0), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 7, 0, 0), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 7, 0, 0), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 6, 0, 0), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 7, 0, 0), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 7, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, 0, 0), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 6, 0, 0), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3, 0, 0), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3, 0, 0), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 4, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 4, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 6, 0, 0), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_pattern, 6, 0, 0), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 4, 0, 0), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, 0, 0), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, 0, 0), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_module, 4, 0, 0), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 8, 0, 0), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 8, 0, 0), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variant_pattern_parameters, 3, 0, 0), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variant_pattern_parameters, 3, 0, 0), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3, 0, 0), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_pattern, 3, 0, 0), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_pattern, 3, 0, 0), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, -1, 0), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 3, -1, 0), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_type_pattern, 3, 0, 0), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polyvar_type_pattern, 3, 0, 0), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 6, 0, 0), + [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 6, 0, 0), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variant_pattern_parameters, 5, 0, 0), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variant_pattern_parameters, 5, 0, 0), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 5, 0, 0), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 5, 0, 0), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_arguments, 5, 0, 0), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_arguments, 5, 0, 0), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_arguments, 4, 0, 0), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_arguments, 4, 0, 0), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_module_expression, 4, 0, 0), + [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_module_expression, 4, 0, 0), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3365), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, -1, 0), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_use, 2, 0, 0), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_module_expression, 3, 0, 0), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_arguments, 2, 0, 0), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_arguments, 2, 0, 0), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_identifier_path, 3, 0, 0), + [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_identifier_path, 3, 0, 0), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_arguments, 3, 0, 0), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_arguments, 3, 0, 0), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_use, 2, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_unpack, 4, 0, 0), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_unpack, 4, 0, 0), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 2, 0, 4), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_unpack, 5, 0, 0), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_unpack, 5, 0, 0), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_module_expression, 3, 0, 0), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_primary_expression, 1, 0, 0), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_primary_expression, 1, 0, 0), + [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 2, 0, 0), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 2, 0, 0), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_attribute_name, 1, 0, 2), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_attribute_name, 1, 0, 2), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 7, 0, 53), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 36), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_of, 4, 0, 0), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_type, 4, 0, 0), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, 0, 44), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_jsx_identifier, 3, 0, 0), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_jsx_identifier, 3, 0, 0), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 24), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3116), + [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_template_string_content_repeat1, 2, 0, 0), + [4331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3116), + [4334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), + [4337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_template_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, 0, 49), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_element_name, 1, 0, 0), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_element_name, 1, 0, 0), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_identifier, 1, 0, 5), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_identifier, 1, 0, 5), + [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 2, -1, 0), SHIFT(879), + [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string_content, 1, 0, 0), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 4), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 0), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 8, 0, 53), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_pattern, 2, 0, 0), + [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_exception_pattern, 2, 0, 0), SHIFT(992), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, 0, 44), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 7, 0, 49), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_attribute, 1, 0, 0), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_attribute, 1, 0, 0), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, 0, 36), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), + [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 4, 0, 0), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 4, 0, 0), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, -1, 0), SHIFT(934), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_type_constraint_with, 3, 0, 0), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [4415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), SHIFT_REPEAT(3554), + [4418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_polymorphic_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2492), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_polymorphic_type_repeat1, 2, 0, 0), + [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 12), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 12), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_constraint, 5, 0, 0), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_type_constraint_with, 2, 0, 0), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 24), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor, 4, 0, 33), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 4), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 2, 0, 0), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2, 0, 0), + [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2, 0, 0), SHIFT_REPEAT(1230), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 5, 0, 0), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 5, 0, 0), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4, 0, 0), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor, 3, 0, 20), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 3, 0, 22), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [4474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), + [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_constraint, 2, 0, 0), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, 0, 4), + [4481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2, 0, 0), SHIFT_REPEAT(1373), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 2, 0, 0), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 0), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), SHIFT_REPEAT(3575), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 1, 0, 0), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 5, 0, 43), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 1, 0, 4), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 3, 0, 23), + [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, -1, 0), SHIFT(948), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 6, 0, 48), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_substitution, 2, 0, 0), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 2, 0, 0), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_substitution, 3, 0, 0), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 4, 0, 35), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_template_string_content_repeat1, 1, 0, 0), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_content_repeat1, 1, 0, 0), + [4582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_functor_parameter, 1, 0, 0), REDUCE(sym_module_primary_expression, 1, 0, 0), + [4585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_module_primary_expression, 1, 0, 0), SHIFT(2604), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_parameter, 1, 0, 0), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [4594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3400), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), SHIFT_REPEAT(3506), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 2, -1, 0), SHIFT(934), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), SHIFT_REPEAT(3610), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 0), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 0), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 2, 0, 0), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 2, -1, 0), SHIFT(948), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2, 0, 0), + [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2577), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3458), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 0), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 2, -1, 0), SHIFT(981), + [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 0), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extensible_type, 1, 0, 0), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 3, 0, 0), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3473), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3, 0, 0), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [4679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), REDUCE(sym__pattern, 1, -1, 0), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 2, 0, 0), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 0), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 0), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 2, 0, 10), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 2, 0, 0), + [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, -1, 0), REDUCE(sym_parameter, 2, 0, 0), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_declaration_repeat1, 2, 0, 0), + [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 0), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_declaration_repeat1, 2, 0, 0), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 2, 0, 0), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3041), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_element_pattern, 1, 0, 0), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 3, 0, 0), + [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_exception_pattern, 2, 0, 0), SHIFT(977), + [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 0), + [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 3, 0, 0), + [4805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2587), + [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3156), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_item_pattern, 1, 0, 0), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [4833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3372), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4, 0, 0), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__module_structure, 1, 0, 0), SHIFT(2864), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_declaration, 5, 0, 0), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variant_pattern_parameter, 1, 0, 0), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5, 0, 0), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), SHIFT(2821), + [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), REDUCE(sym_tuple_item_pattern, 1, 0, 0), + [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 0), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_spread_pattern, 1, 0, 0), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 4, 0, 0), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_structure, 1, 0, 0), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_exception_pattern, 2, 0, 0), SHIFT(906), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [4960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_exception_pattern, 2, 0, 0), SHIFT(949), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 2, 0, 31), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_or_more_statements, 1, 0, 0), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_expression_repeat1, 1, 0, 0), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_expression_repeat1, 2, 0, 0), + [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_match, 4, -1, 50), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_declaration, 1, 0, 0), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [5052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__switch_body, 1, 0, 0), SHIFT(1466), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_body, 1, 0, 0), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [5073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(3073), + [5076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1197), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [5085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3782), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__record_field_name, 1, 0, 2), SHIFT(2797), + [5123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__record_field_name, 1, 0, 2), SHIFT(2535), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_character_repeat1, 2, 0, 0), SHIFT_REPEAT(3792), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_character_repeat1, 2, 0, 0), + [5141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_character_repeat1, 2, 0, 0), SHIFT_REPEAT(3792), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type_pattern, 2, 0, 0), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [5192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__functor_argument, 1, 0, 0), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_annotation, 2, 0, 0), + [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1646), + [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1170), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [5231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_type_constraint_with_repeat1, 2, 0, 0), SHIFT_REPEAT(3571), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [5236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1042), + [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1182), + [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 0), + [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1348), + [5262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1212), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 4, 0, 0), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 3, 0, 21), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 4, 0, 34), + [5311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(803), + [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1176), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [5329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1483), + [5332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), SHIFT(1191), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__switch_body, 2, 0, 0), SHIFT(1466), + [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_body, 2, 0, 0), + [5344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_match, 5, -1, 54), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2549), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variant_pattern_parameters_repeat1, 2, 0, 0), + [5424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variant_pattern_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 3, 0, 31), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 5, 0, 52), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 5, 0, 0), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extension_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), + [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extension_expression_repeat1, 2, 0, 0), + [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 6, 0, 55), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(3195), + [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameter, 2, 0, 0), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_spread_pattern, 2, 0, 0), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [5566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1377), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [5609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_character_repeat1, 1, 0, 0), + [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_character_repeat1, 1, 0, 0), + [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_pun_field, 1, 0, 0), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_type_repeat1, 2, 0, 0), + [5639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2843), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [5646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3198), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type_field, 3, 0, 2), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameter, 1, 0, 0), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_argument, 2, 0, 0), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_parameter_list_repeat1, 2, 0, 0), + [5686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1049), + [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [5691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(717), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [5717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(3539), + [5720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_polyvar_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), + [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_polyvar_type_repeat1, 2, 0, 0), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, 0, 0), + [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_functor_arguments_repeat1, 2, 0, 0), + [5750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_functor_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(2546), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_repeat1, 2, 0, 0), + [5781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_repeat1, 2, 0, 0), SHIFT_REPEAT(3862), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spread, 2, 0, 0), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_repeat1, 2, 0, 0), + [5846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_repeat1, 2, 0, 0), SHIFT_REPEAT(2476), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2516), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definition_signature, 1, 0, 1), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_element_pattern, 2, 0, 0), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_functor_parameters_repeat1, 2, 0, 0), + [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_functor_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 4, 0, 0), + [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [5937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern_entry, 3, 0, 0), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 3, 0, 0), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [5966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameter, 3, 0, 0), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_single_field, 1, 0, 0), + [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__record_element, 1, 0, 0), SHIFT(4198), + [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_field, 3, 0, 45), + [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__record_type_member, 1, 0, 0), REDUCE(sym__object_type_member, 1, 0, 0), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_element, 1, 0, 0), + [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type_annotation, 2, 0, 0), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_type_member, 1, 0, 0), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 4, 0, 21), + [6017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_field, 1, 0, 0), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_field, 3, 0, 2), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_declaration, 2, 0, 0), + [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_parameters, 4, 0, 0), + [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_parameters, 5, 0, 0), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_item_pattern, 2, 0, 0), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_arguments_repeat1, 3, 0, 0), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_parameters, 3, 0, 0), + [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_type_member, 1, 0, 0), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_parameter, 2, 0, 0), + [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_parameters, 2, 0, 0), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 5, 0, 41), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_parameter, 5, 0, 34), + [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_pun_field, 2, 0, 0), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variant_pattern_parameter, 2, 0, 0), + [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 0), SHIFT(2819), + [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 0), REDUCE(sym_tuple_item_pattern, 2, 0, 0), + [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extension_expression_repeat1, 1, 0, 0), + [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_field, 4, 0, 45), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 0), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_parameters, 5, 0, 0), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_parameters, 4, 0, 0), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_field, 2, 0, 2), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_single_pun_field, 2, 0, 0), + [6143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__record_pun_field, 2, 0, 0), SHIFT(4319), + [6146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polyvar_parameters, 3, 0, 0), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_partial_application_spread, 1, 0, 0), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_structure, 2, 0, 0), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6278] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [6296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__module_structure, 2, 0, 0), SHIFT(2888), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_parameter_list, 3, 0, 0), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_single_field, 2, 0, 0), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_parameter_list, 4, 0, 0), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_single_pun_field, 3, 0, 0), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definition_signature, 2, 0, 8), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_parameter_list, 5, 0, 0), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_arguments, 3, 0, 0), + [6687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 1, 0, 0), + [6689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_arguments, 5, 0, 0), + [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_arguments, 4, 0, 0), + [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_arguments, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -282717,6 +246851,8 @@ TS_PUBLIC const TSLanguage *tree_sitter_rescript(void) { .alias_sequences = &ts_alias_sequences[0][0], .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym__identifier, .external_scanner = { &ts_external_scanner_states[0][0], ts_external_scanner_symbol_map, @@ -282728,7 +246864,8 @@ TS_PUBLIC const TSLanguage *tree_sitter_rescript(void) { }, .primary_state_ids = ts_primary_state_ids, .name = "rescript", - .max_reserved_word_set_size = 0, + .reserved_words = &ts_reserved_words[0][0], + .max_reserved_word_set_size = 23, .metadata = { .major_version = 5, .minor_version = 0, From 95256bdcf463ea94cdfc95057a8260ce125e3425 Mon Sep 17 00:00:00 2001 From: Pedro Castro Date: Sat, 11 Jul 2026 21:26:41 -0300 Subject: [PATCH 2/2] add assert --- grammar.js | 1 + src/grammar.json | 4 ++++ src/parser.c | 22 ++++++++++++++++++++-- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/grammar.js b/grammar.js index 61388b3..cda7d42 100644 --- a/grammar.js +++ b/grammar.js @@ -32,6 +32,7 @@ export default grammar({ global: ($) => [ "and", "as", + "assert", "constraint", "else", "exception", diff --git a/src/grammar.json b/src/grammar.json index 8ec8e34..c8d6fcf 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -9532,6 +9532,10 @@ "type": "STRING", "value": "as" }, + { + "type": "STRING", + "value": "assert" + }, { "type": "STRING", "value": "constraint" diff --git a/src/parser.c b/src/parser.c index ccaa69a..d712fcc 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,7 +15,7 @@ #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 32 #define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define MAX_RESERVED_WORD_SET_SIZE 23 +#define MAX_RESERVED_WORD_SET_SIZE 24 #define PRODUCTION_ID_COUNT 56 #define SUPERTYPE_COUNT 7 @@ -14149,6 +14149,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_when, anon_sym_try, anon_sym_as, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14229,6 +14230,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_else, anon_sym_when, anon_sym_as, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14250,6 +14252,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_when, anon_sym_try, anon_sym_as, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14268,6 +14271,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_let, anon_sym_else, anon_sym_when, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14287,6 +14291,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_when, anon_sym_try, anon_sym_as, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14307,6 +14312,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_when, anon_sym_try, anon_sym_as, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14325,6 +14331,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_let, anon_sym_when, anon_sym_as, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14346,6 +14353,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_when, anon_sym_try, anon_sym_as, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14370,6 +14378,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_switch, anon_sym_when, anon_sym_try, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14394,6 +14403,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_when, anon_sym_try, anon_sym_as, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14418,6 +14428,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_when, anon_sym_try, anon_sym_as, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14441,6 +14452,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_switch, anon_sym_when, anon_sym_try, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14462,6 +14474,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_else, anon_sym_switch, anon_sym_try, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14484,6 +14497,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_switch, anon_sym_when, anon_sym_try, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14508,6 +14522,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_when, anon_sym_try, anon_sym_as, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14532,6 +14547,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_when, anon_sym_try, anon_sym_as, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14555,6 +14571,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_when, anon_sym_try, anon_sym_as, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -14579,6 +14596,7 @@ static const TSSymbol ts_reserved_words[23][MAX_RESERVED_WORD_SET_SIZE] = { anon_sym_when, anon_sym_try, anon_sym_as, + anon_sym_assert, anon_sym_for, anon_sym_in, anon_sym_while, @@ -246865,7 +246883,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_rescript(void) { .primary_state_ids = ts_primary_state_ids, .name = "rescript", .reserved_words = &ts_reserved_words[0][0], - .max_reserved_word_set_size = 23, + .max_reserved_word_set_size = 24, .metadata = { .major_version = 5, .minor_version = 0,